:root {
  --orange: #ff7a00;
  --orange-2: #ffae2b;
  --black: #090909;
  --ink: #161616;
  --muted: #6f6f6f;
  --line: rgba(9, 9, 9, 0.1);
  --white: #ffffff;
  --soft: #f7f5f1;
  --shadow: 0 24px 70px rgba(12, 12, 12, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--black);
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 122, 0, 0.16), transparent 28rem),
    radial-gradient(circle at 88% 10%, rgba(255, 174, 43, 0.14), transparent 24rem),
    linear-gradient(180deg, #fffaf3 0%, #ffffff 34%, #f8f7f4 100%);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.cursor-orbit {
  position: fixed;
  z-index: 100;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255, 122, 0, 0.65);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 180ms ease, height 180ms ease, border-color 180ms ease;
  mix-blend-mode: multiply;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 16px;
  padding: 10px 12px 10px 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  width: 270px;
  min-width: 210px;
  height: 62px;
  overflow: visible;
}

.brand img {
  width: 350px;
  height: auto;
  display: block;
  margin-left: -44px;
  transform: translateY(8px);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 13px;
  border-radius: 999px;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-links a:hover {
  background: #111;
  color: #fff;
  transform: translateY(-2px);
}

.nav-cta,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta,
.primary-btn {
  color: #fff;
  background: linear-gradient(135deg, var(--black), #2a1807 42%, var(--orange));
  box-shadow: 0 14px 30px rgba(255, 122, 0, 0.26);
}

.secondary-btn {
  color: var(--black);
  background: #fff;
  border: 1px solid var(--line);
}

.nav-cta:hover,
.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

[data-lucide] {
  width: 18px;
  height: 18px;
  stroke-width: 2.4;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--black);
  color: white;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  border-radius: 2px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 42px;
  align-items: center;
  min-height: calc(100vh - 96px);
  padding: 54px 0 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: #38332c;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 30px;
  height: 2px;
  background: var(--orange);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(42px, 5.1vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  max-width: 780px;
  margin-bottom: 16px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.hero-text,
.section-heading p,
.cta-band p,
.service-card p,
.timeline-item p,
.industry-panel p,
.industry-panel li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.hero-text {
  max-width: 650px;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
}

.proof-row div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
}

.proof-row strong,
.proof-row span {
  display: block;
}

.proof-row strong {
  font-size: 30px;
}

.proof-row span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-stage {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.stage-grid {
  position: absolute;
  inset: 0;
  border-radius: 36px;
  background:
    linear-gradient(rgba(9, 9, 9, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 9, 9, 0.07) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle, #000 20%, transparent 72%);
}

.orbit-ring {
  position: absolute;
  border: 1px solid rgba(255, 122, 0, 0.28);
  border-radius: 50%;
  animation: rotate 18s linear infinite;
}

.ring-one {
  width: 420px;
  height: 420px;
}

.ring-two {
  width: 310px;
  height: 310px;
  animation-duration: 12s;
  animation-direction: reverse;
}

.orbit-ring::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 52px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 8px rgba(255, 122, 0, 0.14);
}

.dashboard-card,
.service-card,
.showcase-card,
.timeline-item,
.industry-panel {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.main-dashboard {
  position: relative;
  z-index: 2;
  width: min(390px, 92vw);
  padding: 24px;
  transform-style: preserve-3d;
}

.dashboard-header,
.metric-grid,
.industry-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dashboard-header span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.dashboard-header strong {
  display: block;
  margin-top: 4px;
  font-size: 31px;
}

.dashboard-header button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--black);
}

.metric-grid {
  margin: 26px 0;
}

.metric-grid div {
  flex: 1;
  padding: 16px 12px;
  border-radius: 8px;
  background: #111;
  color: #fff;
}

.metric-grid span,
.metric-grid strong {
  display: block;
}

.metric-grid span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  font-weight: 700;
}

.metric-grid strong {
  margin-top: 8px;
  font-size: 24px;
}

.flow-lines {
  display: grid;
  gap: 12px;
}

.flow-lines span {
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), rgba(255, 122, 0, 0.12));
  transform-origin: left;
  animation: pulseLine 2.4s ease-in-out infinite;
}

.flow-lines span:nth-child(2) {
  width: 78%;
  animation-delay: 0.3s;
}

.flow-lines span:nth-child(3) {
  width: 58%;
  animation-delay: 0.6s;
}

.floating-chip {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
  font-size: 14px;
  font-weight: 900;
  animation: floatY 4s ease-in-out infinite;
}

.floating-chip svg {
  color: var(--orange);
}

.chip-one {
  top: 92px;
  left: 20px;
}

.chip-two {
  right: 8px;
  top: 190px;
  animation-delay: 0.7s;
}

.chip-three {
  bottom: 118px;
  left: 46px;
  animation-delay: 1.2s;
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.logo-strip span {
  padding: 11px 16px;
  border-radius: 999px;
  background: #fff;
  color: #252525;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.section-block {
  padding: 105px 0 20px;
}

.section-heading {
  display: grid;
  gap: 2px;
  margin-bottom: 34px;
}

.section-heading p:last-child {
  max-width: 700px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.client-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.client-strip span {
  padding: 12px 15px;
  border: 1px solid rgba(255, 122, 0, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #2b2b2b;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.showcase-card {
  position: relative;
  min-height: 330px;
  padding: 24px;
  overflow: hidden;
  transition: transform 200ms ease, border-color 200ms ease;
}

.showcase-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(255, 122, 0, 0.1);
}

.showcase-card:hover {
  border-color: rgba(255, 122, 0, 0.42);
}

.showcase-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 38px;
}

.showcase-top svg {
  width: 42px;
  height: 42px;
  padding: 9px;
  border-radius: 8px;
  color: #fff;
  background: var(--black);
}

.showcase-top strong {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--orange);
  background: rgba(255, 122, 0, 0.11);
  font-size: 13px;
}

.showcase-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  line-height: 1.7;
}

.tag-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.tag-row span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 12px;
  font-weight: 900;
}

.service-card {
  min-height: 280px;
  padding: 24px;
  transition: transform 200ms ease, border-color 200ms ease;
}

.service-card > svg {
  width: 40px;
  height: 40px;
  margin-bottom: 28px;
  padding: 8px;
  color: #fff;
  background: var(--orange);
  border-radius: 8px;
}

.service-card:hover {
  border-color: rgba(255, 122, 0, 0.42);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.industry-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 64px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--black);
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.industry-card:hover,
.industry-card.active {
  transform: translateY(-3px);
  background: var(--black);
  color: #fff;
}

.industry-card.active svg {
  color: var(--orange-2);
}

.industry-panel {
  align-items: flex-start;
  padding: 30px;
}

.panel-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.industry-panel ul {
  min-width: 290px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.industry-panel li {
  position: relative;
  padding: 10px 0 10px 28px;
  color: #343434;
  font-weight: 700;
}

.industry-panel li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.timeline-item {
  position: relative;
  min-height: 250px;
  padding: 24px;
  overflow: hidden;
}

.timeline-item::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: rgba(255, 122, 0, 0.11);
}

.timeline-item strong {
  display: block;
  margin-bottom: 38px;
  color: var(--orange);
  font-size: 15px;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.74fr);
  align-items: start;
  justify-content: space-between;
  gap: 28px;
  margin: 100px 0 50px;
  padding: 44px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 122, 0, 0.95), rgba(12, 12, 12, 0.9)),
    url("./assets/WhatsApp Image 2026-05-21 at 5.47.14 PM.jpeg") center/cover;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
}

.cta-band .eyebrow,
.cta-band p {
  color: rgba(255, 255, 255, 0.84);
}

.cta-band h2 {
  max-width: 760px;
  margin-bottom: 12px;
}

.contact-copy {
  display: grid;
  align-content: start;
  gap: 18px;
}

.cta-band .primary-btn {
  background: #fff;
  color: var(--black);
}

.contact-form {
  display: grid;
  gap: 14px;
  width: 100%;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  padding: 12px 13px;
  color: #fff;
  background: rgba(9, 9, 9, 0.28);
  outline: none;
  font: inherit;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 112px;
}

.contact-form select option {
  color: var(--black);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(9, 9, 9, 0.38);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.14);
}

.contact-form button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.5;
}

.form-note.error {
  color: #ffe0d0;
}

.social-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 0 64px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(16px);
}

.social-section h2 {
  margin-bottom: 0;
  font-size: clamp(26px, 3vw, 38px);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(112px, 1fr));
  gap: 10px;
}

.social-card {
  display: grid;
  place-items: center;
  gap: 10px;
  min-height: 112px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--black);
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.social-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 0, 0.38);
  background: linear-gradient(180deg, #fff7ed, #ffffff);
  color: var(--black);
  box-shadow: 0 18px 42px rgba(255, 122, 0, 0.16);
}

.social-card svg {
  width: 26px;
  height: 26px;
  color: var(--orange);
  fill: currentColor;
  transition: transform 180ms ease, color 180ms ease;
}

.social-card:hover svg {
  color: var(--orange);
  transform: scale(1.08);
}

.section-reveal {
  opacity: 0;
  transform: translateY(28px);
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

@keyframes pulseLine {
  0%,
  100% {
    transform: scaleX(0.72);
    opacity: 0.55;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .topbar {
    flex-wrap: wrap;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    order: 2;
  }

  .brand {
    order: 1;
  }

  .brand img {
    width: 318px;
    margin-left: -16px;
  }

  .topbar.menu-open .nav-links,
  .topbar.menu-open .nav-cta {
    display: flex;
    width: 100%;
  }

  .topbar.menu-open .nav-links {
    order: 3;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    margin-top: 10px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
  }

  .topbar.menu-open .nav-links a {
    width: 100%;
    padding: 13px 14px;
  }

  .topbar.menu-open .nav-cta {
    order: 4;
    justify-content: center;
    margin-top: 2px;
    color: #fff;
    background: linear-gradient(135deg, var(--black), #2a1807 42%, var(--orange));
    box-shadow: 0 14px 30px rgba(255, 122, 0, 0.26);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-stage {
    min-height: 500px;
  }

  .service-grid,
  .showcase-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industry-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .industry-panel,
  .cta-band,
  .social-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-band {
    grid-template-columns: 1fr;
  }

  .social-grid {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 22px, 1180px);
  }

  .topbar {
    top: 10px;
    margin-top: 10px;
    border-radius: 22px;
  }

  .brand {
    width: 205px;
    min-width: 178px;
    height: 56px;
  }

  .brand img {
    width: 276px;
    margin-left: -26px;
    transform: translateY(7px);
  }

  h1 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.04;
  }

  .hero {
    padding-top: 34px;
    gap: 22px;
  }

  .proof-row,
  .service-grid,
  .showcase-grid,
  .timeline,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 460px;
    overflow: hidden;
    padding: 26px 0;
  }

  .stage-grid {
    border-radius: 24px;
  }

  .main-dashboard {
    width: min(100%, 360px);
    padding: 18px;
  }

  .dashboard-header {
    gap: 12px;
  }

  .dashboard-header strong {
    font-size: 28px;
  }

  .dashboard-header button {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
  }

  .metric-grid {
    gap: 10px;
    margin: 18px 0;
  }

  .metric-grid div {
    padding: 11px 12px;
  }

  .metric-grid strong {
    margin-top: 5px;
    font-size: 22px;
  }

  .flow-lines {
    gap: 9px;
  }

  .flow-lines span {
    height: 10px;
  }

  .ring-one {
    width: 300px;
    height: 300px;
  }

  .ring-two {
    width: 220px;
    height: 220px;
  }

  .floating-chip {
    gap: 6px;
    max-width: calc(100% - 24px);
    padding: 9px 11px;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
  }

  .floating-chip svg {
    width: 15px;
    height: 15px;
  }

  .chip-one {
    left: 10px;
    top: 20px;
  }

  .chip-two {
    right: 10px;
    top: 92px;
  }

  .chip-three {
    left: 12px;
    bottom: 26px;
  }

  .metric-grid {
    flex-direction: column;
  }

  .metric-grid div {
    width: 100%;
  }

  .industry-panel ul {
    min-width: 0;
  }

  .cta-band {
    padding: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .social-section {
    padding: 22px;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .cursor-orbit {
    display: none;
  }
}

@media (max-width: 420px) {
  .site-shell {
    width: min(100% - 18px, 1180px);
  }

  .topbar {
    gap: 10px;
    padding: 8px 9px 8px 12px;
  }

  .brand {
    width: 174px;
    min-width: 154px;
    height: 50px;
  }

  .brand img {
    width: 238px;
    margin-left: -20px;
    transform: translateY(6px);
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  h1 {
    font-size: clamp(32px, 10.8vw, 39px);
  }

  h2 {
    font-size: clamp(28px, 9vw, 36px);
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-stage {
    min-height: 440px;
    padding: 22px 0;
  }

  .main-dashboard {
    width: min(100%, 326px);
    padding: 16px;
  }

  .dashboard-header span {
    font-size: 12px;
  }

  .dashboard-header strong {
    font-size: 25px;
  }

  .dashboard-header button {
    width: 38px;
    height: 38px;
  }

  .ring-one {
    width: 250px;
    height: 250px;
  }

  .ring-two {
    width: 184px;
    height: 184px;
  }

  .floating-chip {
    padding: 8px 10px;
    font-size: 11px;
  }

  .chip-one {
    left: 6px;
    top: 18px;
  }

  .chip-two {
    right: 6px;
    top: 86px;
  }

  .chip-three {
    left: 8px;
    bottom: 20px;
  }

  .cta-band,
  .social-section {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
