/* Booster Webs — design system */

:root {
  --bg: #f8f9ff;
  --surface: #ffffff;
  --ink: #0b1c30;
  --muted: #3f4852;
  --line: #bec7d4;
  --primary: #00629d;
  --primary-bright: #00a3ff;
  --accent: #fe6b00;
  --accent-deep: #a04100;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Heebo", "Sora", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

.brand-latin {
  font-family: "Sora", "Heebo", sans-serif;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  vertical-align: middle;
}

/* ——— Site header ——— */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  background: rgba(248, 249, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: rgba(190, 199, 212, 0.55);
  background: rgba(255, 255, 255, 0.9);
}

.site-header__brand {
  font-family: "Sora", "Heebo", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.site-header__logo {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
  display: block;
}

.site-nav {
  display: none;
  gap: 2rem;
  align-items: center;
}

.site-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--primary);
}

.site-header__cta {
  display: none;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s var(--ease);
}

.site-header__cta:hover {
  background: #004a77;
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--ink);
  cursor: pointer;
  padding: 0.25rem;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset-inline: 0;
  top: 4.5rem;
  z-index: 40;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem clamp(1.25rem, 4vw, 2.5rem) 1.5rem;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 0.75rem 0;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}

.mobile-nav a:hover {
  color: var(--primary);
}

@media (min-width: 768px) {
  .site-nav,
  .site-header__cta {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 5.5rem clamp(1.25rem, 4vw, 2.5rem) 2.5rem;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(0, 163, 255, 0.18), transparent 60%),
    radial-gradient(ellipse 40% 35% at 15% 70%, rgba(254, 107, 0, 0.1), transparent 55%),
    linear-gradient(165deg, #0b1c30 0%, #12253a 50%, #0b1c30 100%);
}

.hero__layout {
  width: 100%;
  max-width: 72rem;
  margin-inline: auto;
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2.5rem;
    min-height: calc(100svh - 8rem);
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
  animation: rise-in 0.9s var(--ease) both;
}

.hero__brand {
  font-family: "Sora", "Heebo", sans-serif;
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.hero__title {
  font-family: "Heebo", sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 1rem;
  max-width: 22ch;
  color: rgba(255, 255, 255, 0.95);
}

.hero__lead {
  font-size: clamp(1.05rem, 2vw, 1.15rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  max-width: 34ch;
  margin: 0 0 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__stage {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: min(48vh, 380px);
  height: min(56vh, 500px);
  border-radius: 0.85rem;
  overflow: hidden;
  border: 1px solid rgba(152, 203, 255, 0.28);
  background: #0f2438;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  cursor: grab;
  touch-action: none;
}

.hero__stage:active {
  cursor: grabbing;
}

.hero__stage.is-dragging-logo,
.hero__stage.is-dragging-logo:active {
  cursor: grabbing;
}

@media (min-width: 960px) {
  .hero__stage {
    min-height: 0;
    height: min(68vh, 560px);
  }
}

.hero__stage .hero__webgl {
  position: absolute;
  inset: 0;
  display: block;
  width: 100% !important;
  height: 100% !important;
  z-index: 0;
}

.hero__hint {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 2;
  margin: 0;
  padding: 0.55rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(11, 28, 48, 0.78));
  pointer-events: none;
}

.hero__stage.is-fallback {
  display: grid;
  place-items: center;
  cursor: default;
}

.hero__fallback-visual {
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.hero__mark {
  width: min(78%, 20rem);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 40px rgba(0, 163, 255, 0.28));
}

@media (prefers-reduced-motion: reduce) {
  .hero__content {
    animation: none !important;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.95rem 1.6rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s var(--ease), background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--accent {
  background: var(--accent);
  color: #fff;
}

.btn--accent:hover {
  background: var(--accent-deep);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}

.hero .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

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

.btn--primary:hover {
  background: #004a77;
}

/* ——— Sections ——— */
.section {
  padding: clamp(4rem, 10vh, 7rem) clamp(1.25rem, 4vw, 2.5rem);
}

.section__inner {
  max-width: 72rem;
  margin-inline: auto;
}

.section__eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin: 0 0 0.75rem;
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  color: var(--ink);
}

.section__lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 40rem;
  margin: 0 0 3rem;
}

.section--alt {
  background:
    linear-gradient(180deg, #eff4ff 0%, #f8f9ff 100%);
}

.section--ink {
  background:
    radial-gradient(ellipse 70% 60% at 10% 20%, rgba(0, 163, 255, 0.18), transparent),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(254, 107, 0, 0.1), transparent),
    #0b1c30;
  color: #fff;
}

.section--ink .section__title {
  color: #fff;
}

.section--ink .section__lead,
.section--ink .section__eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.section--ink .section__eyebrow {
  color: var(--primary-bright);
}

/* ——— Website build animation ——— */
.build-demo {
  background:
    radial-gradient(ellipse 50% 40% at 80% 30%, rgba(0, 163, 255, 0.1), transparent),
    radial-gradient(ellipse 40% 35% at 15% 70%, rgba(254, 107, 0, 0.07), transparent),
    #f8f9ff;
  overflow: hidden;
}

.build-demo__layout {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .build-demo__layout {
    grid-template-columns: 0.9fr 1.2fr;
    gap: 3rem;
  }

  .build-demo .section__lead {
    margin-bottom: 0;
  }
}


.build-stage {
  position: relative;
  min-height: 24rem;
  display: grid;
  place-items: center;
  padding: 1.5rem 0.5rem;
}

.build-stage__glow {
  position: absolute;
  width: 70%;
  height: 55%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 163, 255, 0.22), transparent 70%);
  filter: blur(8px);
  pointer-events: none;
}

.build-browser {
  position: relative;
  z-index: 2;
  width: min(100%, 36rem);
  border-radius: 0.85rem;
  overflow: visible;
  border: 1px solid rgba(190, 199, 212, 0.7);
  background: #fff;
  box-shadow: 0 24px 50px rgba(0, 59, 92, 0.14);
  transform: perspective(900px) rotateY(-6deg) rotateX(4deg);
  opacity: 0;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.build-stage.is-playing .build-browser {
  animation: build-browser-in 0.7s var(--ease) 0.1s both;
}

.build-stage.is-playing.is-ready .build-browser {
  animation: none;
  opacity: 1;
  transform: perspective(900px) rotateY(-6deg) rotateX(4deg);
}

.build-stage.is-ready .build-browser:hover {
  transform: perspective(900px) rotateY(-2deg) rotateX(2deg) translateY(-4px);
  box-shadow: 0 28px 56px rgba(0, 59, 92, 0.2);
}

.build-browser__bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 0.85rem;
  background: #eff4ff;
  border-bottom: 1px solid rgba(190, 199, 212, 0.55);
  border-radius: 0.85rem 0.85rem 0 0;
}

.build-browser__dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  background: #bec7d4;
}

.build-browser__dot:nth-child(1) { background: #ff5f57; }
.build-browser__dot:nth-child(2) { background: #febc2e; }
.build-browser__dot:nth-child(3) { background: #28c840; }

.build-browser__url {
  flex: 1;
  margin-inline-start: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: #fff;
  border: 1px solid rgba(190, 199, 212, 0.65);
  border-radius: 0.4rem;
  padding: 0.35rem 0.65rem;
  font-family: "Sora", "Heebo", sans-serif;
  font-size: 0.75rem;
  color: var(--muted);
  min-height: 1.6rem;
  cursor: text;
}

.build-browser__lock {
  width: 0.55rem;
  height: 0.65rem;
  border: 1.5px solid #6f7883;
  border-radius: 0.15rem 0.15rem 0.2rem 0.2rem;
  position: relative;
  flex-shrink: 0;
  opacity: 0.7;
}

.build-browser__lock::before {
  content: "";
  position: absolute;
  top: -0.35rem;
  inset-inline-start: 50%;
  translate: -50% 0;
  width: 0.35rem;
  height: 0.35rem;
  border: 1.5px solid #6f7883;
  border-bottom: none;
  border-radius: 0.25rem 0.25rem 0 0;
}

.build-browser__url-text {
  overflow: hidden;
  white-space: nowrap;
  width: 0;
}

.build-stage.is-playing .build-browser__url-text {
  animation: build-type 1.1s steps(18, end) 0.6s both;
}

.build-stage.is-ready .build-browser__url-text {
  width: 11.5ch;
  animation: none;
}

.build-browser__cursor {
  width: 1px;
  height: 0.9em;
  background: var(--primary);
  opacity: 0;
}

.build-stage.is-playing .build-browser__cursor {
  animation: build-blink 0.7s step-end 0.6s 6;
}

.build-browser__status {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #128c7e;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.35);
  border-radius: 999px;
  padding: 0.15rem 0.45rem;
  opacity: 0;
  transform: scale(0.85);
}

.build-stage.is-playing .build-browser__status {
  animation: build-chip 0.4s var(--ease) 3.5s both;
}

.build-stage.is-ready .build-browser__status {
  opacity: 1;
  transform: none;
  animation: none;
}

.build-browser__screen {
  position: relative;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: linear-gradient(180deg, #f8f9ff 0%, #fff 100%);
  min-height: 17.5rem;
  border-radius: 0 0 0.85rem 0.85rem;
  overflow: hidden;
}

.build-block {
  opacity: 0;
  transform: translateY(14px) scale(0.96);
}

.build-stage.is-playing .build-block--nav {
  animation: build-piece 0.55s var(--ease) 1.5s both;
}
.build-stage.is-playing .build-block--hero {
  animation: build-piece 0.6s var(--ease) 2.05s both;
}
.build-stage.is-playing .build-block--grid {
  animation: build-piece 0.6s var(--ease) 2.6s both;
}
.build-stage.is-playing .build-block--footer {
  animation: build-piece 0.55s var(--ease) 3.15s both;
}

.build-stage.is-ready .build-block {
  opacity: 1;
  transform: none;
  animation: none;
}

.build-hit {
  cursor: pointer;
  transition:
    transform 0.16s var(--ease),
    box-shadow 0.16s ease,
    background 0.16s ease,
    filter 0.16s ease,
    border-color 0.16s ease,
    color 0.16s ease;
  transform-origin: center;
}

.build-hit:hover {
  transform: translateY(-2px) scale(1.04);
  filter: brightness(1.05);
}

.build-hit:active {
  transform: translateY(2px) scale(0.94);
  filter: brightness(0.96);
  box-shadow: inset 0 2px 8px rgba(11, 28, 48, 0.18) !important;
}

.build-block--nav {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.25rem 0.1rem;
  flex-wrap: wrap;
}

.build-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: "Sora", "Heebo", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  margin-inline-end: 0.25rem;
  background: none;
  border: none;
  padding: 0.2rem 0.3rem;
  border-radius: 0.3rem;
}

.build-nav__brand img {
  width: 1.1rem;
  height: 1.1rem;
  object-fit: contain;
}

.build-nav__link {
  border: none;
  background: #e5eeff;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.28rem 0.5rem;
  border-radius: 0.3rem;
}

.build-nav__link:hover {
  background: #d3e4fe;
  color: var(--primary);
}

.build-nav__cta {
  margin-inline-start: auto;
  border: none;
  background: var(--primary-bright);
  color: #00375a;
  font-family: inherit;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.35rem 0.7rem;
  border-radius: 0.35rem;
  box-shadow: 0 4px 10px rgba(0, 163, 255, 0.25);
}

.build-block--hero {
  padding: 1rem 1rem 1.1rem;
  border-radius: 0.55rem;
  background: linear-gradient(135deg, #00629d 0%, #00a3ff 55%, #fe6b00 140%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  min-height: 6.2rem;
  color: #fff;
}

.build-block__badge {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 0.15rem 0.45rem;
}

.build-block__title {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}

.build-block__sub {
  font-size: 0.68rem;
  opacity: 0.85;
  margin-bottom: 0.15rem;
}

.build-block__cta {
  border: none;
  width: auto;
  height: auto;
  margin-top: 0.15rem;
  border-radius: 0.35rem;
  background: #fe6b00;
  color: #fff;
  font-family: inherit;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.4rem 0.75rem;
  box-shadow: 0 6px 14px rgba(160, 65, 0, 0.28);
}

.build-block--grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.55rem;
}

.build-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  min-height: 4.1rem;
  padding: 0.55rem;
  border-radius: 0.45rem;
  background: #e5eeff;
  border: 1px solid rgba(190, 199, 212, 0.45);
  text-align: start;
  font-family: inherit;
  box-shadow: 0 2px 0 rgba(0, 59, 92, 0.06);
}

.build-card--accent {
  background: #ffdbcc;
}

.build-card__icon {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 0.25rem;
  background: var(--primary-bright);
  margin-bottom: 0.15rem;
}

.build-card--accent .build-card__icon {
  background: var(--accent);
}

.build-card__label {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--ink);
}

.build-card__meta {
  font-size: 0.58rem;
  color: var(--muted);
}

.build-block--footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 0.2rem;
  font-size: 0.62rem;
  color: var(--muted);
}

.build-footer__link {
  border: none;
  background: transparent;
  color: var(--primary);
  font-family: inherit;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.2rem 0.35rem;
  border-radius: 0.25rem;
}

.build-scan {
  position: absolute;
  inset-inline: 0;
  top: -30%;
  height: 35%;
  background: linear-gradient(180deg, transparent, rgba(0, 163, 255, 0.18), transparent);
  opacity: 0;
  pointer-events: none;
}

.build-stage.is-playing .build-scan {
  animation: build-scan 2.4s var(--ease) 1.4s 1;
}

.build-pointer {
  position: absolute;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50% 50% 50% 0;
  background: #0b1c30;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  z-index: 5;
  rotate: -15deg;
}

.build-stage.is-playing .build-pointer {
  animation: build-pointer 3.8s var(--ease) 3.6s 1;
}

.build-chip {
  position: absolute;
  z-index: 3;
  font-family: "Sora", monospace;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.35rem 0.55rem;
  border-radius: 0.4rem;
  border: 1px solid rgba(152, 203, 255, 0.45);
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  opacity: 0;
  cursor: default;
  box-shadow: 0 8px 20px rgba(0, 59, 92, 0.1);
  transition: transform 0.16s var(--ease), box-shadow 0.16s ease;
}

.build-chip:hover {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 10px 22px rgba(0, 59, 92, 0.16);
}

.build-chip:active {
  transform: translateY(1px) scale(0.95);
}

.build-chip--1 { top: 10%; inset-inline-start: 1%; }
.build-chip--2 { top: 26%; inset-inline-end: 0; color: var(--accent-deep); }
.build-chip--3 { bottom: 34%; inset-inline-start: 0; }
.build-chip--4 { bottom: 16%; inset-inline-end: 3%; color: #128c7e; }
.build-chip--5 { top: 48%; inset-inline-end: -0.25rem; color: var(--accent-deep); }

.build-stage.is-playing .build-chip--1 { animation: build-chip 0.5s var(--ease) 1.7s both; }
.build-stage.is-playing .build-chip--2 { animation: build-chip 0.5s var(--ease) 2.2s both; }
.build-stage.is-playing .build-chip--3 { animation: build-chip 0.5s var(--ease) 2.7s both; }
.build-stage.is-playing .build-chip--4 { animation: build-chip 0.5s var(--ease) 3.3s both; }
.build-stage.is-playing .build-chip--5 { animation: build-chip 0.5s var(--ease) 3.55s both; }

.build-stage.is-ready .build-chip {
  opacity: 1;
  animation: none;
}

@keyframes build-browser-in {
  from {
    opacity: 0;
    transform: perspective(900px) rotateY(-16deg) rotateX(10deg) translateY(24px);
  }
  to {
    opacity: 1;
    transform: perspective(900px) rotateY(-6deg) rotateX(4deg) translateY(0);
  }
}

@keyframes build-type {
  from { width: 0; }
  to { width: 11.5ch; }
}

@keyframes build-blink {
  50% { opacity: 1; }
}

@keyframes build-piece {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes build-scan {
  0% { opacity: 0; top: -30%; }
  15% { opacity: 1; }
  100% { opacity: 0; top: 100%; }
}

@keyframes build-chip {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes build-pointer {
  0% { opacity: 0; top: 58%; inset-inline-start: 62%; transform: scale(0.7); }
  15% { opacity: 1; }
  35% { top: 42%; inset-inline-start: 28%; }
  45% { transform: scale(0.85); }
  52% { transform: scale(0.7); }
  70% { top: 68%; inset-inline-start: 55%; }
  80% { transform: scale(0.85); }
  88% { transform: scale(0.7); }
  100% { opacity: 0; top: 72%; inset-inline-start: 72%; }
}

@media (prefers-reduced-motion: reduce) {
  .build-browser,
  .build-block,
  .build-chip,
  .build-scan,
  .build-pointer,
  .build-browser__url-text,
  .build-browser__cursor,
  .build-browser__status {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    width: auto !important;
  }

  .build-browser {
    opacity: 1;
    transform: none;
  }

  .build-browser__url-text {
    width: 11.5ch;
  }
}

/* Services — no cards */
.services-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(190, 199, 212, 0.7);
}

@media (min-width: 768px) {
  .services-list {
    grid-template-columns: 1fr 1fr;
  }
}

.service-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(190, 199, 212, 0.7);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.service-row.is-visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 768px) {
  .service-row:nth-child(odd) {
    padding-inline-end: 1.5rem;
    border-inline-end: 1px solid rgba(190, 199, 212, 0.5);
  }

  .service-row:nth-child(even) {
    padding-inline-start: 1.5rem;
  }
}

.service-row__icon {
  color: var(--primary-bright);
  font-size: 1.75rem !important;
}

.service-row h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
}

.service-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 1rem;
}

.support-band {
  position: relative;
  overflow: hidden;
  margin-top: 3.5rem;
  padding: clamp(2rem, 4vw, 2.75rem);
  border-radius: 1rem;
  background:
    radial-gradient(ellipse 55% 80% at 100% 0%, rgba(0, 163, 255, 0.22), transparent 55%),
    radial-gradient(ellipse 45% 70% at 0% 100%, rgba(254, 107, 0, 0.16), transparent 50%),
    #0b1c30;
  color: #fff;
  display: grid;
  gap: 2rem;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.support-band.is-visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 900px) {
  .support-band {
    grid-template-columns: 1.05fr 1fr;
    gap: 2.5rem;
    align-items: center;
    padding: clamp(2.25rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
  }
}

.support-band__glow {
  pointer-events: none;
  position: absolute;
  inset-inline-end: -10%;
  top: -30%;
  width: 55%;
  height: 90%;
  background: radial-gradient(circle, rgba(0, 163, 255, 0.18), transparent 70%);
  animation: support-glow 7s var(--ease) infinite alternate;
}

@keyframes support-glow {
  from { opacity: 0.55; transform: translateY(0); }
  to { opacity: 1; transform: translateY(12px); }
}

.support-band__copy {
  position: relative;
  z-index: 1;
}

.support-band__eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--primary-bright);
}

.support-band h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.support-band__lead {
  margin: 0 0 1.5rem;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  font-size: 1.05rem;
}

.support-band__pillars {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.35rem;
}

.support-band__pillars li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
}

.support-band__pillars .material-symbols-outlined {
  color: var(--accent);
  font-size: 1.65rem;
  margin-top: 0.1rem;
}

.support-band__pillars strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.support-band__pillars span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
  font-size: 0.95rem;
}

@media (prefers-reduced-motion: reduce) {
  .support-band,
  .support-band__glow {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Process timeline */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: relative;
}

.process-steps::before {
  content: "";
  position: absolute;
  inset-inline-start: 1.4rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(180deg, var(--primary-bright), var(--accent));
  opacity: 0.35;
}

@media (min-width: 768px) {
  .process-steps::before {
    inset-inline-start: 50%;
    transform: translateX(50%);
  }
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.process-step.is-visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 768px) {
  .process-step {
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
  }

  .process-step--left .process-step__num {
    grid-column: 2;
    grid-row: 1;
  }

  .process-step--left .process-step__body {
    grid-column: 1;
    grid-row: 1;
    text-align: start;
  }

  .process-step--right .process-step__num {
    grid-column: 2;
    grid-row: 1;
  }

  .process-step--right .process-step__body {
    grid-column: 3;
    grid-row: 1;
    text-align: start;
  }
}

.process-step__num {
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--primary-bright);
  color: var(--primary);
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.process-step:nth-child(2) .process-step__num {
  background: var(--primary-bright);
  color: #00375a;
  border-color: transparent;
}

.process-step:nth-child(4) .process-step__num {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
}

.process-step__body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  color: #fff;
}

.process-step__body p {
  margin: 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
}

/* Contact — form is the interactive container */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 960px) {
  .contact-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 3.5rem;
    align-items: start;
  }
}

.contact-form {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(190, 199, 212, 0.65);
  border-radius: 0.75rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: 0 8px 28px rgba(0, 59, 92, 0.06);
}

.contact-form h3 {
  font-size: 1.5rem;
  margin: 0 0 1.5rem;
}

.form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 560px) {
  .form-row--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: #f8f9ff;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 163, 255, 0.2);
}

.form-field textarea {
  resize: vertical;
  min-height: 7rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.form-status {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  border-radius: 0.6rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-status--ok {
  color: var(--primary);
  background: rgba(0, 98, 157, 0.08);
  border: 1px solid rgba(0, 98, 157, 0.25);
}

.form-status--error {
  color: #b3261e;
  background: rgba(179, 38, 30, 0.08);
  border: 1px solid rgba(179, 38, 30, 0.3);
}

.contact-aside h3 {
  font-size: 1.25rem;
  margin: 0 0 1.25rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.contact-list__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: #eff4ff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-list p {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
}

.contact-list a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
}

.contact-list a:hover {
  color: var(--primary);
}

.contact-list span.value {
  font-weight: 500;
  font-size: 1.05rem;
}

.contact-list__icon--whatsapp {
  color: #128c7e;
}

/* ——— Instagram band ——— */
.instagram-band {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 10vh, 6.5rem) clamp(1.25rem, 4vw, 2.5rem);
  background:
    radial-gradient(ellipse 55% 70% at 85% 40%, rgba(225, 48, 108, 0.22), transparent 60%),
    radial-gradient(ellipse 45% 55% at 10% 80%, rgba(254, 107, 0, 0.16), transparent 55%),
    radial-gradient(ellipse 40% 50% at 40% 10%, rgba(0, 163, 255, 0.14), transparent 50%),
    #12151c;
  color: #fff;
}

.instagram-band__inner {
  max-width: 72rem;
  margin-inline: auto;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .instagram-band__inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    min-height: 22rem;
  }
}

.instagram-band__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #ff8fb8;
}

.instagram-band__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 16ch;
}

.instagram-band__lead {
  margin: 0 0 1.75rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  max-width: 36ch;
}

.instagram-band__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 1.6rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.25s var(--ease), filter 0.2s ease;
}

.instagram-band__cta svg {
  width: 1.35rem;
  height: 1.35rem;
}

.instagram-band__cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.instagram-band__visual {
  position: relative;
  min-height: 16rem;
  display: grid;
  place-items: center;
}

.instagram-band__frame {
  position: relative;
  z-index: 2;
  width: min(100%, 17rem);
  aspect-ratio: 1;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  display: grid;
  place-items: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.instagram-band__frame img {
  width: 55%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 163, 255, 0.25));
}

.instagram-band__tiles {
  position: absolute;
  inset: 8% 0;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  opacity: 0.55;
  pointer-events: none;
}

.instagram-band__tiles span {
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.instagram-band__tiles span:nth-child(1) {
  background: linear-gradient(145deg, rgba(245, 133, 41, 0.45), rgba(221, 42, 123, 0.25));
  transform: translate(-8%, 12%) rotate(-6deg);
}

.instagram-band__tiles span:nth-child(2) {
  background: linear-gradient(145deg, rgba(129, 52, 175, 0.4), rgba(0, 163, 255, 0.25));
  transform: translate(10%, -6%) rotate(5deg);
}

.instagram-band__tiles span:nth-child(3) {
  background: linear-gradient(145deg, rgba(0, 163, 255, 0.35), rgba(254, 107, 0, 0.2));
  transform: translate(-4%, 4%) rotate(3deg);
}

.instagram-band__tiles span:nth-child(4) {
  background: linear-gradient(145deg, rgba(221, 42, 123, 0.35), rgba(245, 133, 41, 0.25));
  transform: translate(6%, 10%) rotate(-4deg);
}

/* Footer */
.site-footer {
  padding: 2.5rem clamp(1.25rem, 4vw, 2.5rem);
  background: #fff;
  border-top: 1px solid rgba(190, 199, 212, 0.65);
}

.site-footer__inner {
  max-width: 72rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .site-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: start;
    align-items: flex-end;
  }
}

.site-footer__brand {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.15rem;
}

.site-footer__copy {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0.25rem 0 0;
}

.site-footer__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .site-footer__meta {
    align-items: flex-end;
  }
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: center;
}

.site-footer__legal a {
  font-size: 0.75rem;
  color: var(--muted);
  text-decoration: none;
}

.site-footer__legal a:hover {
  color: var(--accent-deep);
}

/* Legal pages */
.legal-page {
  padding: 7rem clamp(1.25rem, 4vw, 2.5rem) 4rem;
}

.legal-page__inner {
  max-width: 42rem;
  margin-inline: auto;
}

.legal-page h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0 0 0.5rem;
}

.legal-page .meta {
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 2.5rem;
}

.legal-page h2 {
  font-size: 1.2rem;
  margin: 2rem 0 0.75rem;
}

.legal-page p,
.legal-page li {
  line-height: 1.75;
  color: var(--muted);
  font-size: 1rem;
}

.legal-page ul {
  padding-inline-start: 1.25rem;
}

.legal-page a {
  color: var(--primary);
}

/* Motion */
@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__content,
  .service-row,
  .support-band,
  .process-step {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
