@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-800.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("assets/fonts/plus-jakarta-sans-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("assets/fonts/plus-jakarta-sans-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("assets/fonts/plus-jakarta-sans-800.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  --ink: #0a0a0b;
  --muted: #66666b;
  --line: #e8e8eb;
  --paper: #ffffff;
  --soft: #f7f7f8;
  --orange: #ff7300;
  --pink: #ff008e;
  --radius: 24px;
  --shadow: 0 24px 80px rgba(20, 20, 30, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: #ff6b7c; color: #fff; }

.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 89, 53, .08), transparent 65%);
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0;
  transition: opacity .25s ease;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 18px clamp(24px, 5vw, 76px);
  background: rgba(255,255,255,.82);
  border-bottom: 1px solid rgba(0,0,0,.05);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1.8px;
}
.brand img {
  /* Keep the coloured O optically aligned with the lowercase wordmark. */
  display: block;
  width: auto;
  height: .78em;
  object-fit: contain;
  margin: 0 .015em;
  flex: 0 0 auto;
  transform: translateY(.01em);
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 13px; font-weight: 700; position: relative; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -8px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--pink));
  transition: right .25s ease;
}
.nav-links a:hover::after { right: 0; }
.header-cta { justify-self: end; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px 20px;
  min-height: 50px;
  border-radius: 999px;
  border: 0;
  font-weight: 800;
  font-size: 13px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.button span { transition: transform .25s ease; }
.button:hover { transform: translateY(-2px); }
.button:hover span { transform: translate(3px,-3px); }
.button-dark { color: #fff; background: var(--ink); box-shadow: 0 12px 30px rgba(0,0,0,.14); }
.button-dark:hover { box-shadow: 0 18px 40px rgba(0,0,0,.22); }
.button-gradient { color: #fff; background: linear-gradient(100deg, var(--orange), var(--pink)); box-shadow: 0 14px 36px rgba(255,0,112,.2); }
.button-light { background: #fff; color: #111; }
.full { width: 100%; }
.menu-toggle { display: none; }

main, .site-footer { position: relative; z-index: 1; }
.section { padding: 120px clamp(24px, 6vw, 92px); }
.eyebrow {
  margin: 0 0 18px;
  color: #ff4c38;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow.light { color: #ff824e; }
h1, h2, h3 { font-family: "Plus Jakarta Sans", sans-serif; line-height: 1.06; letter-spacing: -.045em; }
h1 { margin: 0; font-size: clamp(54px, 6vw, 94px); max-width: 800px; }
h2 { margin: 0; font-size: clamp(38px, 4vw, 64px); }
h2 span:not(.gradient-text) { color: #88888c; }
.gradient-text {
  background: linear-gradient(90deg, var(--orange), var(--pink));
  -webkit-background-clip: text;
  color: transparent;
}
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--delay, 0ms);
}
.reveal.visible { opacity: 1; transform: none; }

.hero {
  min-height: 100vh;
  padding-top: 150px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 5vw;
  background:
    radial-gradient(circle at 82% 30%, rgba(255, 111, 0, .06), transparent 28%),
    radial-gradient(circle at 92% 55%, rgba(255, 0, 142, .05), transparent 26%),
    #fff;
}
.hero-copy { z-index: 2; }
.hero-text { max-width: 610px; margin: 28px 0 32px; color: var(--muted); font-size: 17px; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.text-link { font-weight: 800; font-size: 13px; }
.text-link span { display: inline-block; margin-left: 8px; }
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 52px;
  max-width: 700px;
}
.trust-strip div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.75);
}
.trust-strip strong, .trust-strip span { display: block; }
.trust-strip strong { font-size: 12px; }
.trust-strip span { color: #888; font-size: 10px; margin-top: 3px; }

.hero-art { position: relative; min-height: 650px; display: grid; place-items: center; }
.hero-logo-wrap { width: min(390px, 65%); aspect-ratio: 1; display: grid; place-items: center; position: relative; }
.hero-logo { width: 100%; animation: logoFloat 6s ease-in-out infinite; filter: drop-shadow(0 28px 48px rgba(255,55,65,.18)); }
.logo-halo { position: absolute; inset: -20%; border-radius: 50%; background: radial-gradient(circle, rgba(255,72,50,.12), transparent 64%); animation: pulse 5s ease-in-out infinite; }
.orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(255,94,59,.13); }
.orbit-one { width: 84%; aspect-ratio: 1; }
.orbit-two { width: 106%; aspect-ratio: 1; }
.float-card {
  position: absolute;
  padding: 13px 18px;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 12px 40px rgba(20,20,30,.08);
  backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 800;
}
.card-web { top: 21%; left: 2%; animation: bob 6s ease-in-out infinite; }
.card-brand { top: 28%; right: -2%; animation: bob 7s ease-in-out infinite reverse; }
.card-grow { bottom: 18%; right: 12%; animation: bob 8s ease-in-out infinite; }
.spark { position: absolute; width: 9px; height: 9px; border-radius: 50%; background: linear-gradient(135deg, var(--orange), var(--pink)); }
.spark-one { top: 15%; right: 17%; }
.spark-two { bottom: 22%; left: 7%; width: 12px; height: 12px; }
.spark-three { bottom: 12%; right: 32%; width: 6px; height: 6px; }

.statement-band {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  padding: 26px 0;
  background: #fbfbfc;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: end;
  gap: 8vw;
  margin-bottom: 60px;
}
.section-heading > p { max-width: 500px; color: var(--muted); margin: 0 0 8px; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  min-height: 400px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  position: relative;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: #ffd4c9; }
.service-number { position: absolute; top: 26px; right: 28px; color: #bbb; font-size: 11px; font-weight: 800; }
.service-icon {
  width: 62px; height: 62px; border-radius: 20px; display: grid; place-items: center;
  margin-bottom: 72px; font-size: 26px; color: #ff5943;
  background: linear-gradient(145deg, #fff4ee, #fff0f7);
}
.service-card h3 { margin: 0 0 16px; font-size: 26px; }
.service-card p { color: var(--muted); font-size: 14px; }
.service-card a { position: absolute; bottom: 30px; font-size: 12px; font-weight: 800; }
.service-card a span { margin-left: 8px; }

.showcase-section {
  background: #09090a;
  color: #fff;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 8vw;
  overflow: hidden;
}
.showcase-copy p { color: #aaaab0; }
.showcase-copy h2 { margin-bottom: 24px; }
.feature-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.feature-list span { padding: 9px 13px; border: 1px solid #313136; border-radius: 999px; font-size: 11px; }
.browser-stage { position: relative; padding: 50px 0; }
.browser-shell { border: 1px solid #2a2a2f; border-radius: 22px; overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,.5); transform: perspective(1200px) rotateY(-5deg) rotateX(2deg); }
.browser-bar { height: 46px; background: #1b1b1e; display: flex; align-items: center; gap: 7px; padding: 0 15px; }
.browser-bar > span { width: 8px; height: 8px; border-radius: 50%; background: #505056; }
.browser-address { margin-left: 14px; flex: 1; max-width: 240px; background: #29292d; border-radius: 7px; padding: 5px 10px; color: #83838b; font-size: 9px; }
.browser-content { background: #e7dfd5; color: #181412; min-height: 490px; position: relative; overflow: hidden; }
.demo-nav { display: flex; gap: 18px; align-items: center; padding: 20px 25px; font-family: serif; }
.demo-nav b { margin-right: auto; font-size: 15px; }
.demo-nav i { width: 35px; height: 3px; background: rgba(0,0,0,.2); border-radius: 4px; }
.demo-hero {
  min-height: 330px; padding: 62px 44% 30px 34px;
  background:
    linear-gradient(90deg, rgba(20,14,10,.72), rgba(20,14,10,.05)),
    radial-gradient(circle at 75% 50%, #c8aa8e 0 14%, #6f5544 15% 24%, #c9b7a6 25% 35%, #6f6b61 36% 44%, #c6a489 45% 55%, #817060 56% 100%);
  color: #fff;
}
.demo-hero small { font-size: 8px; letter-spacing: .18em; }
.demo-hero h3 { font-family: serif; font-size: 45px; letter-spacing: -.04em; margin: 18px 0; }
.demo-hero p { font-size: 11px; }
.demo-hero button { border: 0; border-radius: 999px; padding: 10px 15px; margin-top: 14px; font-size: 9px; }
.demo-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 12px; background: #f1ebe5; }
.demo-strip div { height: 80px; border-radius: 8px; background: linear-gradient(145deg, #d4b99e, #7e6d5e); }
.demo-strip div:nth-child(2) { background: linear-gradient(145deg, #a49c91, #d8d1c9); }
.demo-strip div:nth-child(3) { background: linear-gradient(145deg, #5d5249, #c4a78d); }
.mini-card {
  position: absolute; width: 180px; padding: 16px; border-radius: 15px;
  background: rgba(255,255,255,.95); color: #111; box-shadow: 0 24px 60px rgba(0,0,0,.24);
}
.mini-card strong, .mini-card span { display: block; }
.mini-card strong { font-size: 11px; }
.mini-card span { color: #777; font-size: 9px; margin-top: 4px; }
.mini-one { left: -8%; bottom: 4%; }
.mini-two { right: -4%; top: 10%; }

.pricing { padding-top: 82px; padding-bottom: 82px; background: #fafafa; }
.pricing .section-heading { margin-bottom: 38px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.pricing-grid-simple { grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr); max-width: 1160px; margin: 0 auto; gap: 22px; align-items: stretch; }
.price-card {
  position: relative; display: flex; flex-direction: column; min-height: 680px;
  padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff;
  transition: transform .35s ease, box-shadow .35s ease;
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.price-card.featured { border-color: #ff9b78; box-shadow: 0 20px 70px rgba(255,66,80,.1); }
.website-offer {
  isolation: isolate;
  overflow: hidden;
  border-width: 2px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255,0,142,.13), transparent 34%),
    radial-gradient(circle at 0% 64%, rgba(255,115,0,.12), transparent 35%),
    linear-gradient(145deg, #fff 0%, #fffaf7 52%, #fff7fc 100%);
  box-shadow: 0 34px 95px rgba(255,76,79,.16);
}
.website-offer::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 110px;
  right: -120px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,115,0,.16), rgba(255,0,142,.14));
  filter: blur(58px);
  pointer-events: none;
}
.website-offer:hover { box-shadow: 0 42px 110px rgba(255,76,79,.2); }
.popular-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 36px; border-radius: 23px 23px 0 0;
  display: grid; place-items: center; color: #fff; background: linear-gradient(90deg, var(--orange), var(--pink));
  font-size: 9px; letter-spacing: .14em; text-transform: uppercase; font-weight: 800;
}
.featured .price-top { padding-top: 27px; }
.plan-label { margin: 0 0 14px; color: #ff4d3f; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.website-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 11px;
  border: 1px solid rgba(255,100,73,.18);
  border-radius: 999px;
  color: #d63f36;
  background: rgba(255,255,255,.66);
  box-shadow: 0 8px 24px rgba(255,84,73,.08);
}
.website-label span { color: var(--orange); font-size: 13px; }
.price-card h3 { font-size: 34px; margin: 0 0 12px; }
.website-offer h3 { font-size: 38px; letter-spacing: -.045em; }
.plan-desc { color: var(--muted); font-size: 13px; min-height: 65px; }
.price { margin: 28px 0; }
.price span, .price strong { display: block; }
.price span { font-size: 10px; color: #888; text-transform: uppercase; letter-spacing: .1em; }
.price strong { font-family: "Plus Jakarta Sans"; font-size: 48px; line-height: 1.1; letter-spacing: -.05em; }
.website-offer .price strong {
  color: transparent;
  background: linear-gradient(100deg, #ff6b18, #ff166f 58%, #e9009e);
  background-clip: text;
  -webkit-background-clip: text;
}
.launch-price {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin: 18px 0;
  padding: 16px 18px;
  border: 1px solid rgba(255,95,79,.16);
  border-radius: 20px;
  background: rgba(255,255,255,.68);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 16px 44px rgba(255,71,81,.07);
}
.launch-price .price { margin: 0; }
.monthly-price { align-items: center; }
.monthly-price .price { width: 100%; }
.monthly-price .price span:last-child { margin-top: 3px; color: #5f5f66; font-size: 10px; font-weight: 700; letter-spacing: .08em; }
.old-price { margin-bottom: 4px; color: #9b9ba2; font-family: "Plus Jakarta Sans"; font-size: 22px; font-weight: 700; text-decoration: line-through; text-decoration-thickness: 2px; }
.price-card ul { padding: 0; margin: 0 0 20px; list-style: none; flex: 1; }
.website-offer ul { display: grid; grid-template-columns: 1fr 1fr; column-gap: 20px; }
.price-card li { position: relative; padding: 7px 0 7px 21px; border-bottom: 1px solid #f0f0f2; font-size: 11px; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: #ff4b40; font-weight: 800; }
.add-ons-card {
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  border-color: #25252b;
  background:
    radial-gradient(circle at 100% 0%, rgba(255,0,142,.20), transparent 32%),
    radial-gradient(circle at 0% 72%, rgba(255,115,0,.14), transparent 34%),
    linear-gradient(150deg, #151518 0%, #09090b 72%);
  box-shadow: 0 28px 80px rgba(10,10,14,.2);
}
.add-ons-card:hover {
  border-color: #383840;
  box-shadow: 0 36px 95px rgba(10,10,14,.28);
}
.simple-addons { margin-top: 24px !important; }
.simple-addons li { padding-top: 13px; padding-bottom: 13px; font-size: 13px; }
.addon-note { margin: -8px 0 25px; color: var(--muted); font-size: 11px; line-height: 1.65; }
.website-offer, .add-ons-card { min-height: 650px; }
.pricing-note { text-align: center; margin: 30px auto 0; color: #888; font-size: 11px; }

.hosting-choice-note {
  display: grid;
  gap: 4px;
  margin: 2px 0 20px;
  padding: 14px 16px;
  border: 1px solid rgba(255,95,79,.15);
  border-radius: 16px;
  background: linear-gradient(120deg, rgba(255,248,241,.9), rgba(255,245,250,.9));
}
.hosting-choice-note > span {
  color: #d34a40;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hosting-choice-note strong { font-size: 12px; line-height: 1.35; }
.hosting-choice-note small { color: #77777e; font-size: 9px; line-height: 1.55; }

.process { background: #0a0a0b; color: #fff; }
.process-title { text-align: center; margin-bottom: 75px; }
.timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; }
.timeline-line { position: absolute; top: 23px; left: 10%; right: 10%; height: 1px; background: #39393f; }
.timeline-line span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--orange), var(--pink)); transition: width 1.6s ease; }
.timeline.animated .timeline-line span { width: 100%; }
.step { position: relative; text-align: center; padding: 0 15px; }
.step b {
  position: relative; z-index: 2; width: 48px; height: 48px; border: 2px solid #ff6a31; border-radius: 50%;
  display: grid; place-items: center; margin: 0 auto 28px; background: #0a0a0b; color: #ff7a3d; font-size: 11px;
}
.step:nth-child(3) b { border-color: #ff405d; color: #ff405d; }
.step:nth-child(4) b { border-color: #ff196f; color: #ff196f; }
.step:nth-child(5) b { border-color: #ff008e; color: #ff008e; }
.step h3 { margin: 0 0 12px; font-size: 20px; }
.step p { color: #aaaab0; font-size: 12px; }

.about { background: #fff; }
.about-panel {
  display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 8vw;
  border: 1px solid var(--line); border-radius: 36px; padding: clamp(40px, 6vw, 86px);
  background: linear-gradient(145deg, #fff, #fbfbfc);
}
.about-mark { position: relative; }
.about-mark::before { content: ""; position: absolute; inset: -15%; border-radius: 50%; background: radial-gradient(circle, rgba(255,90,50,.13), transparent 65%); }
.about-mark img { position: relative; filter: drop-shadow(0 28px 45px rgba(255,55,80,.14)); }
.about-copy > p { color: var(--muted); }
.about-copy h2 { font-size: clamp(34px, 4vw, 56px); margin-bottom: 28px; }
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 34px; }
.about-values div { border-top: 1px solid var(--line); padding-top: 16px; }
.about-values strong, .about-values span { display: block; }
.about-values strong { font-size: 12px; }
.about-values span { font-size: 10px; color: #888; margin-top: 5px; }

.team {
  padding-top: 0;
  scroll-margin-top: 96px;
  background:
    radial-gradient(circle at 10% 30%, rgba(255,115,0,.08), transparent 24%),
    radial-gradient(circle at 88% 78%, rgba(255,0,142,.07), transparent 25%),
    #fff;
}
.team-heading {
  display: grid;
  grid-template-columns: 1fr .8fr;
  align-items: end;
  gap: 8vw;
  margin-bottom: 46px;
}
.team-heading > p {
  max-width: 570px;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 15px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.team-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(205px, .82fr) 1.18fr;
  align-items: stretch;
  min-height: 440px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 24px 70px rgba(20,20,30,.07);
  transition: transform .3s ease, box-shadow .3s ease;
}
.team-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 220px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,0,142,.08), transparent 68%);
  pointer-events: none;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 32px 90px rgba(20,20,30,.11);
}
.team-photo {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background: #eeeeef;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.team-card:hover .team-photo img { transform: scale(1.025); }
.team-card-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 3.5vw, 46px);
}
.team-role {
  margin: 0 0 10px;
  color: #ff405d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.team-card h3 {
  margin: 0 0 20px;
  font-size: clamp(28px, 3vw, 42px);
}
.team-bio {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}
.team-focus {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.team-focus li {
  padding: 7px 10px;
  border: 1px solid #e4e4e7;
  border-radius: 999px;
  color: #5f5f64;
  background: rgba(255,255,255,.75);
  font-size: 9px;
  font-weight: 700;
}

.audit { padding-top: 0; }
.audit-inner {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 7vw;
  padding: clamp(38px, 5vw, 70px); border-radius: 32px; color: #fff; background:
    radial-gradient(circle at 90% 50%, rgba(255,0,142,.24), transparent 30%),
    radial-gradient(circle at 70% 0%, rgba(255,115,0,.25), transparent 35%),
    #0a0a0b;
}
.audit-inner h2 { font-size: clamp(34px, 4vw, 54px); }
.audit-inner p { color: #b8b8bd; max-width: 600px; }
.audit-form { display: grid; gap: 12px; }
.audit-form input {
  width: 100%; border: 1px solid #34343a; background: #171719; color: #fff;
  padding: 17px 18px; border-radius: 14px; outline: none;
}
.audit-form input:focus { border-color: #ff6f3c; }
.audit-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: 14px;
  padding: 17px 20px;
  color: #111;
  -webkit-text-fill-color: #111;
  -webkit-appearance: none;
  appearance: none;
  font-weight: 800;
  background: #fff;
}
.audit-form button span { margin-left: 0; }

.faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary {
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 24px 0; cursor: pointer; font-weight: 800; font-size: 15px;
}
summary::-webkit-details-marker { display: none; }
summary span { font-size: 24px; font-weight: 400; transition: transform .25s ease; }
details[open] summary span { transform: rotate(45deg); }
details p { margin: 0; padding: 0 50px 26px 0; color: var(--muted); font-size: 13px; }

.contact { padding-top: 40px; }
.contact-card {
  border-radius: 34px; padding: clamp(42px, 6vw, 82px);
  display: grid; grid-template-columns: .85fr 1.15fr; gap: 8vw;
  color: #fff; background:
    linear-gradient(120deg, rgba(255,117,0,.13), transparent 30%),
    linear-gradient(300deg, rgba(255,0,142,.18), transparent 35%),
    #080809;
}
.contact-card.select-active { transform: none !important; transition: none !important; }
.contact-copy h2 span { color: #ff5a5a; }
.contact-copy > p { color: #aaaab0; }
.contact-copy .contact-email { margin-top: 20px; color: #d7d7dc; }
.contact-email a { color: #fff; font-weight: 800; text-decoration: underline; text-decoration-color: rgba(255,255,255,.35); text-underline-offset: 4px; }
.contact-email a:hover { text-decoration-color: #fff; }
.contact-small { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 35px; }
.contact-small span { padding: 9px 12px; border: 1px solid #333339; border-radius: 999px; font-size: 10px; }
.project-form { display: grid; gap: 14px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.project-form label, .form-field { display: grid; gap: 7px; font-size: 10px; font-weight: 800; color: #c8c8cc; }
.project-form input, .project-form select, .project-form textarea {
  width: 100%; border: 1px solid #35353b; border-radius: 12px; padding: 14px 15px;
  color: #fff; background: #171719; outline: none;
}
.project-form input:focus, .project-form select:focus, .project-form textarea:focus { border-color: #ff6841; }
.project-form textarea { resize: vertical; }
.project-form button[type="submit"]:disabled, .audit-form button:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}
.form-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.form-status { min-height: 18px; margin: 0; font-size: 11px; font-weight: 700; line-height: 1.5; }
.form-status:empty { display: none; }
.form-status.success { color: #9be7bd; }
.form-status.error { color: #ff9aa4; }

/* Custom service picker: consistent on macOS, Windows and mobile browsers. */
.custom-select { position: relative; font-size: 13px; font-weight: 700; }
.select-trigger, .select-menu { display: none; }
.custom-select.enhanced select {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.custom-select.enhanced .select-trigger {
  width: 100%;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  color: #fff;
  text-align: left;
  border: 1px solid #35353b;
  border-radius: 16px;
  background: linear-gradient(180deg, #1b1b1e, #151517);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.custom-select.enhanced .select-trigger:hover { border-color: #505057; background: #1d1d20; }
.custom-select.enhanced .select-trigger:focus-visible,
.custom-select.open .select-trigger {
  border-color: #ff6841;
  box-shadow: 0 0 0 4px rgba(255,104,65,.12);
}
.custom-select.invalid .select-trigger { border-color: #ff5d68; }
.select-value { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.select-chevron {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-right: 2px solid #d8d8dc;
  border-bottom: 2px solid #d8d8dc;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s ease;
}
.custom-select.open .select-chevron { transform: rotate(225deg) translate(-2px, -2px); }
.custom-select.enhanced .select-menu {
  position: absolute;
  z-index: 30;
  top: calc(100% + 9px);
  left: 0;
  right: 0;
  display: grid;
  gap: 4px;
  padding: 8px;
  border: 1px solid #35353b;
  border-radius: 18px;
  background: rgba(20,20,22,.98);
  box-shadow: 0 24px 70px rgba(0,0,0,.42);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(.985);
  transform-origin: top;
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}
.custom-select.open .select-menu { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.select-menu button {
  position: relative;
  width: 100%;
  display: grid;
  gap: 1px;
  padding: 11px 42px 11px 13px;
  color: #f5f5f6;
  text-align: left;
  border: 0;
  border-radius: 12px;
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  outline: none;
}
.select-menu button span { color: #909096; font-size: 10px; font-weight: 600; }
.select-menu button:hover, .select-menu button:focus-visible { background: #29292d; }
.select-menu button[aria-selected="true"] { background: linear-gradient(100deg, rgba(255,115,0,.17), rgba(255,0,142,.14)); }
.select-menu button[aria-selected="true"]::after {
  content: "✓";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #ff7251;
  font-size: 14px;
}


.site-footer {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 25px;
  padding: 34px clamp(24px, 6vw, 92px); border-top: 1px solid var(--line);
}
.footer-brand { font-size: 22px; }
.site-footer p { color: #888; font-size: 11px; }
.footer-links { display: flex; gap: 22px; font-size: 11px; font-weight: 700; }
.site-footer small { grid-column: 1 / -1; text-align: center; color: #aaa; font-size: 9px; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@keyframes logoFloat { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-14px) rotate(3deg); } }
@keyframes pulse { 0%,100% { transform: scale(.94); opacity: .65; } 50% { transform: scale(1.06); opacity: 1; } }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

@media (max-width: 1040px) {
  .site-header {
    --mobile-header-height: 83px;
    grid-template-columns: 1fr auto;
    z-index: 1000;
  }
  .nav-links, .header-cta { display: none; }
  .menu-toggle {
    display: block; width: 46px; height: 46px; border: 0; border-radius: 50%; background: #0a0a0b; justify-self: end;
    position: relative; z-index: 1002;
  }
  .menu-toggle span { position: absolute; left: 14px; right: 14px; height: 2px; background: #fff; transition: .25s ease; }
  .menu-toggle span:first-child { top: 18px; }
  .menu-toggle span:last-child { top: 26px; }
  .menu-open .site-header {
    background: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .menu-open .menu-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-open .menu-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .nav-links.active {
    display: flex;
    position: fixed;
    inset: var(--mobile-header-height) 0 0;
    z-index: 1001;
    min-height: calc(100dvh - var(--mobile-header-height));
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 42px 28px max(42px, env(safe-area-inset-bottom));
    gap: 22px;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .nav-links.active a { font-size: 28px; line-height: 1.15; }
  .hero, .showcase-section, .about-panel, .audit-inner, .faq, .contact-card, .team-heading { grid-template-columns: 1fr; }
  .hero { padding-top: 150px; }
  .hero-art { min-height: 520px; }
  .showcase-copy { max-width: 700px; }
  .browser-stage { max-width: 800px; margin: auto; width: 100%; }
  .about-mark { max-width: 350px; margin: auto; }
  .about-copy { max-width: 760px; }
  .team-heading { gap: 24px; }
  .team-grid { grid-template-columns: 1fr; }
  .faq { gap: 40px; }
}

@media (max-width: 760px) {
  .section { padding: 88px 22px; }
  .site-header { --mobile-header-height: 74px; padding: 14px 20px; }
  .brand { font-size: 24px; }
  h1 { font-size: clamp(46px, 14vw, 68px); }
  h2 { font-size: 39px; }
  .hero { min-height: auto; gap: 25px; }
  .hero-text { font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .trust-strip {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 38px;
    border-top: 1px solid var(--line);
  }
  .trust-strip div {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: baseline;
    gap: 14px;
    padding: 13px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
  }
  .trust-strip span { margin-top: 0; text-align: right; }
  .hero-art { display: none; }
  .section-heading { grid-template-columns: 1fr; gap: 26px; margin-bottom: 42px; }
  .service-grid, .pricing-grid, .timeline { grid-template-columns: 1fr; }
  .pricing-grid-simple { max-width: 680px; }
  .service-card { min-height: 350px; }
  .timeline { gap: 0; }
  .timeline-line { display: none; }
  .step { text-align: left; padding: 0 0 40px 72px; }
  .step b { position: absolute; left: 0; top: 0; }
  .browser-shell { transform: none; }
  .mini-card { display: none; }
  .demo-hero { padding-right: 22%; }
  .demo-hero h3 { font-size: 36px; }
  .price-card, .website-offer, .add-ons-card { min-height: auto; }
  .website-offer ul { grid-template-columns: 1fr; }
  .launch-price { align-items: center; }
  .price strong { font-size: 44px; }
  .website-offer h3 { font-size: 38px; }
  .about-panel { padding: 36px 24px; }
  .about-values { grid-template-columns: 1fr; }
  .team-heading { margin-bottom: 32px; }
  .team-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .team-photo {
    min-height: 420px;
    aspect-ratio: 4 / 5;
  }
  .team-card-copy {
    min-height: 320px;
    padding: 30px 26px 34px;
  }
  .team-bio { font-size: 12px; }
  .field-row { grid-template-columns: 1fr; }
  .custom-select.enhanced .select-menu {
    position: fixed;
    z-index: 1200;
    top: auto;
    left: 16px;
    right: 16px;
    bottom: max(16px, env(safe-area-inset-bottom));
    max-height: min(70vh, 520px);
    overflow-y: auto;
    transform: translateY(24px) scale(.985);
  }
  .custom-select.open .select-menu { transform: translateY(0) scale(1); }
  .site-footer { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   2026 clarity and portfolio update
   -------------------------------------------------------------------------- */

.work-section {
  color: #fff;
  background:
    radial-gradient(circle at 6% 0%, rgba(255,115,0,.11), transparent 28%),
    radial-gradient(circle at 96% 18%, rgba(255,0,142,.10), transparent 30%),
    #09090a;
  overflow: hidden;
}
.work-heading { margin-bottom: 48px; }
.work-heading > p { color: #aaaab0; }

 .concept-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.concept-card {
  min-width: 0;
  padding: 18px;
  border: 1px solid #2b2b30;
  border-radius: 28px;
  background: linear-gradient(155deg, #151517, #0d0d0f);
  box-shadow: 0 30px 80px rgba(0,0,0,.24);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.concept-card:hover {
  transform: translateY(-7px);
  border-color: #45454c;
  box-shadow: 0 38px 95px rgba(0,0,0,.38);
}
.concept-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 2px 2px 15px;
  color: #77777e;
  font-size: 9px;
  font-weight: 700;
}
.concept-badge {
  padding: 7px 9px;
  border: 1px solid #3a3a40;
  border-radius: 999px;
  color: #d6d6da;
  background: #1b1b1e;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.concept-browser {
  min-height: 420px;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 22px 55px rgba(0,0,0,.30);
}
.concept-desktop,
.concept-mobile,
.concept-branding {
  display: grid;
  place-items: center;
  padding: 24px;
}

/* Desktop / laptop preview */
.laptop-wrap { width: 100%; display: grid; place-items: center; }
.laptop-device { width: min(100%, 368px); }
.laptop-lid {
  overflow: hidden;
  border-radius: 18px 18px 10px 10px;
  background: linear-gradient(145deg, #2f333b, #18191f);
  box-shadow: 0 24px 48px rgba(0,0,0,.34);
}
.browser-top {
  height: 32px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 12px;
  background: #22252b;
}
.browser-top i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #616876;
}
.browser-top span {
  margin-left: 7px;
  padding: 4px 10px;
  border-radius: 999px;
  color: #8e95a3;
  background: #2d3139;
  font-size: 7px;
}
.desktop-screen {
  min-height: 295px;
  color: #10253c;
  background: linear-gradient(180deg, #eef3f7 0%, #e5edf4 100%);
}
.ast-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(16,37,60,.10);
  background: rgba(255,255,255,.72);
}
.ast-header-row b {
  color: #10253c;
  font-size: 15px;
  line-height: .92;
  letter-spacing: -.04em;
}
.ast-header-row b span {
  display: block;
  color: #77a4be;
  font-size: .55em;
  letter-spacing: .16em;
}
.ast-header-row small { color: #607387; font-size: 7px; font-weight: 800; }
.ast-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) 116px;
  gap: 14px;
  padding: 18px;
}
.ast-hero-copy {
  min-height: 184px;
  padding: 24px 20px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, rgba(11,31,55,.98), rgba(14,67,107,.88)), linear-gradient(125deg, #15395d, #7997ab);
}
.ast-hero-copy p { margin: 0 0 11px; color: #9fd8ef; font-size: 7px; font-weight: 800; letter-spacing: .18em; }
.ast-hero-copy h3 { margin: 0 0 12px; font-size: 27px; line-height: .96; }
.ast-hero-copy span { display: block; max-width: 195px; font-size: 9px; line-height: 1.65; }
.ast-hero-copy button {
  margin-top: 16px;
  padding: 9px 13px;
  border: 0;
  border-radius: 999px;
  color: #10253c;
  background: #fff;
  font-size: 8px;
  font-weight: 800;
}
.ast-hero-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 14px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 32px rgba(0,0,0,.08);
}
.ast-hero-panel strong { margin-bottom: 10px; color: #10253c; font-size: 9px; }
.ast-hero-panel ul { margin: 0; padding: 0; list-style: none; }
.ast-hero-panel li {
  padding: 7px 0;
  border-top: 1px solid rgba(16,37,60,.08);
  color: #617487;
  font-size: 8px;
  font-weight: 700;
}
.ast-hero-panel li:first-child { border-top: 0; }
.ast-footer-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #d6e0e8;
}
.ast-footer-strip span { padding: 14px 10px; color: #5f7283; background: #eef3f7; font-size: 7px; }
.ast-footer-strip b { display: block; color: #10253c; font-size: 9px; }
.laptop-base {
  position: relative;
  width: 114%;
  height: 10px;
  margin: 0 auto;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(180deg, #c1c7d0, #8d95a3);
}
.laptop-base::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 1px;
  transform: translateX(-50%);
  width: 72px;
  height: 4px;
  border-radius: 0 0 8px 8px;
  background: rgba(255,255,255,.45);
}

/* Mobile preview */
.phone-wrap { width: 100%; display: grid; place-items: center; }
.phone-device {
  position: relative;
  width: 216px;
  min-height: 378px;
  padding: 14px;
  border-radius: 34px;
  background: linear-gradient(160deg, #0e0f12, #2b2b31);
  box-shadow: 0 28px 48px rgba(0,0,0,.35);
}
.phone-notch {
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  width: 86px;
  height: 18px;
  border-radius: 0 0 14px 14px;
  background: #0b0b0d;
  z-index: 2;
}
.phone-screen {
  min-height: 350px;
  padding: 30px 16px 16px;
  border-radius: 24px;
}
.china-screen {
  color: #f7ead8;
  background: radial-gradient(circle at top right, #4a1513 0%, #180f0d 45%, #110b0a 100%);
}
.china-hero-top small {
  display: inline-block;
  margin-bottom: 10px;
  color: #f2c67d;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .14em;
}
.china-hero-top h3 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: .96;
}
.china-hero-top span {
  display: block;
  color: #dcc6b1;
  font-size: 9px;
  line-height: 1.7;
}
.china-hero-top button {
  margin-top: 14px;
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #bb2422, #d4482f);
  font-size: 8px;
  font-weight: 800;
}
.china-promo-card {
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(250,214,157,.18);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(193,43,33,.18), rgba(255,204,122,.08));
}
.china-promo-card em {
  display: block;
  margin-bottom: 6px;
  color: #f0c57d;
  font-style: normal;
  font-size: 7px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.china-promo-card strong {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}
.china-promo-card span { color: #d9c2af; font-size: 8px; }
.china-quick-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.china-quick-grid span {
  padding: 12px 8px;
  border-radius: 14px;
  color: #f2dfc9;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  text-align: center;
  font-size: 7px;
  text-transform: uppercase;
  letter-spacing: .09em;
}

/* Branding preview */
.brand-board {
  width: 100%;
  min-height: 372px;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, #f6f7f9, #eef2f5);
}
.brand-logo-block,
.brand-palette,
.brand-cards,
.brand-vehicle {
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(43,44,50,.08);
}
.brand-logo-block {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 12px;
  padding: 16px;
}
.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #1d4f89, #48a4ea);
  font-size: 25px;
  font-weight: 800;
}
.brand-logo-block strong { display: block; color: #19314d; font-size: 16px; }
.brand-logo-block span { color: #7e8a95; font-size: 9px; }
.brand-palette {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 14px;
}
.brand-palette span { border-radius: 12px; }
.brand-palette span:nth-child(1) { background: #1c4e87; }
.brand-palette span:nth-child(2) { background: #48a4ea; }
.brand-palette span:nth-child(3) { background: #edf3f8; }
.brand-palette span:nth-child(4) { background: #1f2630; }
.brand-cards {
  position: relative;
  padding: 18px;
  min-height: 108px;
}
.biz-card {
  position: absolute;
  width: calc(100% - 36px);
  height: 76px;
  border-radius: 14px;
}
.biz-card.front {
  top: 18px;
  left: 18px;
  padding: 14px;
  background: linear-gradient(135deg, #ffffff, #f4f7fb);
  z-index: 2;
}
.biz-card.front strong {
  display: block;
  margin-bottom: 5px;
  color: #19314d;
  font-size: 14px;
}
.biz-card.front small {
  display: block;
  color: #6d7d8c;
  font-size: 8px;
  line-height: 1.5;
}
.biz-card.back {
  top: 28px;
  left: 28px;
  background: linear-gradient(135deg, #1c4e87, #48a4ea);
}
.brand-vehicle {
  position: relative;
  grid-column: 1 / -1;
  min-height: 126px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #f7f9fb);
}
.van-shell {
  position: absolute;
  left: 22px;
  bottom: 22px;
  width: 228px;
  height: 60px;
  border-radius: 16px 18px 12px 12px;
  background: #f8fafc;
  border: 1px solid #dde5ed;
}
.van-shell::before {
  content: "";
  position: absolute;
  right: -44px;
  top: 10px;
  width: 62px;
  height: 48px;
  border-radius: 16px 16px 12px 6px;
  background: #f8fafc;
  border: 1px solid #dde5ed;
}
.van-window {
  position: absolute;
  left: 226px;
  bottom: 58px;
  width: 40px;
  height: 20px;
  border-radius: 10px 10px 6px 6px;
  background: #d7e6f3;
}
.van-wheel {
  position: absolute;
  bottom: 14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #2e3239;
  box-shadow: inset 0 0 0 6px #c7d0d8;
}
.van-wheel-left { left: 60px; }
.van-wheel-right { left: 220px; }
.van-text {
  position: absolute;
  left: 48px;
  bottom: 43px;
  color: #1e4d86;
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
}
.van-text span { color: #1b2530; font-size: .8em; letter-spacing: .06em; }
.van-bolt {
  position: absolute;
  right: 52px;
  bottom: 44px;
  width: 18px;
  height: 28px;
  background: linear-gradient(180deg, #4bacf0, #1f6fb5);
  clip-path: polygon(38% 0, 100% 0, 58% 42%, 100% 42%, 0 100%, 32% 54%, 0 54%);
}

.concept-copy {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 5px 5px;
}
.concept-copy h3 { margin: 0 0 7px; font-size: 22px; }
.concept-copy p { margin: 0; color: #8f8f96; font-size: 11px; line-height: 1.65; }
.concept-arrow {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid #37373d;
  border-radius: 50%;
  color: #c7c7cb;
}
.concept-disclaimer { margin: 25px 0 0; color: #68686e; text-align: center; font-size: 9px; }

.offer-assurances { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin: -2px 0 18px; }
.assurance-pill {
  display: grid;
  grid-template-columns: 29px 1fr;
  align-items: center;
  gap: 8px;
  padding: 9px;
  border: 1px solid #efdcda;
  border-radius: 12px;
  background: linear-gradient(115deg, #fff4eb, #fff3f8);
  line-height: 1.25;
}
.assurance-pill > span {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  font-family: "Plus Jakarta Sans";
  font-size: 9px;
  font-weight: 800;
}
.assurance-pill strong { color: #171719; font-size: 8px; }
.offer-actions { display: grid; gap: 13px; }
.offer-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #67676d;
  font-size: 10px;
  font-weight: 700;
}
.offer-email span { color: #ff4b49; transition: transform .2s ease; }
.offer-email:hover span { transform: translateX(3px); }

.add-ons-card { padding: 28px; }
.extras-glow {
  position: absolute;
  z-index: -1;
  top: -120px;
  right: -100px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,115,0,.26), rgba(255,0,142,.2));
  filter: blur(48px);
  pointer-events: none;
}
.extras-header { position: relative; z-index: 1; }
.extras-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(100deg, rgba(255,115,0,.19), rgba(255,0,142,.18));
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
}
.extras-label span {
  color: #ff9a5f;
  font-size: 14px;
  line-height: 1;
}
.add-ons-card h3 {
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(31px, 3vw, 39px);
  line-height: 1.02;
  letter-spacing: -.05em;
}
.add-ons-card h3 span {
  color: transparent;
  background: linear-gradient(100deg, #ff9a56, #ff4e73 55%, #ff42bb);
  background-clip: text;
  -webkit-background-clip: text;
}
.add-ons-card .plan-desc {
  min-height: 0;
  max-width: 460px;
  margin: 0;
  color: #b9b9c1;
  font-size: 12px;
  line-height: 1.7;
}
.addon-section { position: relative; z-index: 1; margin-top: 17px; }
.addon-section + .addon-section { margin-top: 14px; }
.addon-group-label {
  margin: 0 0 8px;
  color: #ff9a62;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.addon-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin: 0;
}
.addon-grid-aftercare .addon-item { min-height: 82px; }
.addon-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}
.addon-price {
  flex: 0 0 auto;
  padding: 4px 7px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(100deg, rgba(255,115,0,.23), rgba(255,0,142,.22));
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1;
  white-space: nowrap;
}
.addon-item {
  --addon-accent: #ff7850;
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: start;
  gap: 12px;
  min-height: 88px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  background: rgba(255,255,255,.055);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.addon-item:nth-child(2),
.addon-item:nth-child(5) { --addon-accent: #ff4d88; }
.addon-item:nth-child(3),
.addon-item:nth-child(6) { --addon-accent: #d85cff; }
.addon-item:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--addon-accent) 55%, transparent);
  background: rgba(255,255,255,.085);
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}
.addon-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--addon-accent);
  border: 1px solid color-mix(in srgb, var(--addon-accent) 24%, transparent);
  background: color-mix(in srgb, var(--addon-accent) 12%, transparent);
}
.addon-icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.addon-item strong, .addon-item small { display: block; }
.addon-item strong { padding-right: 2px; color: #fff; font-size: 11px; line-height: 1.4; }
.addon-item small { margin-top: 3px; color: #9c9ca6; font-size: 8px; line-height: 1.45; }
.addon-tag {
  position: absolute;
  top: 9px;
  right: 9px;
  padding: 4px 6px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(100deg, var(--orange), var(--pink));
  font-size: 6px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}
.addon-item:has(.addon-tag) strong { padding-right: 34px; }
.extras-footer {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.extras-footer p {
  display: grid;
  gap: 2px;
  margin: 0 0 13px;
}
.extras-footer strong { color: #fff; font-size: 11px; }
.extras-footer p span { color: #8f8f99; font-size: 9px; line-height: 1.5; }
.extras-footer .button { box-shadow: 0 16px 38px rgba(255,0,112,.24); }
.website-offer, .add-ons-card { min-height: 620px; }

.form-toast {
  position: fixed;
  z-index: 120;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 12px;
  min-width: 290px;
  padding: 15px 17px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  color: #fff;
  background: #111114;
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.form-toast.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.form-toast > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: linear-gradient(135deg, var(--orange), var(--pink)); font-weight: 800; }
.form-toast strong, .form-toast small { display: block; }
.form-toast strong { font-size: 11px; }
.form-toast small { margin-top: 3px; color: #aaaab1; font-size: 9px; }

.package-dialog {
  width: min(900px, calc(100% - 34px));
  max-width: 900px;
  padding: 0;
  border: 0;
  border-radius: 30px;
  color: var(--ink);
  background: transparent;
  overflow: visible;
}
.package-dialog::backdrop {
  background: rgba(7,7,9,.68);
  backdrop-filter: blur(10px);
}
.package-dialog-shell {
  position: relative;
  max-height: calc(100vh - 44px);
  padding: clamp(28px, 4vw, 48px);
  overflow-y: auto;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255,0,142,.1), transparent 28%),
    radial-gradient(circle at 0% 80%, rgba(255,115,0,.09), transparent 30%),
    #fff;
  box-shadow: 0 50px 150px rgba(0,0,0,.36);
}
.package-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid #e8e8ec;
  border-radius: 50%;
  color: #55555c;
  background: rgba(255,255,255,.8);
  font-size: 24px;
  line-height: 1;
}
.package-dialog-header { max-width: 680px; padding-right: 55px; }
.package-dialog-header h2 { margin: 0 0 18px; font-size: clamp(40px, 6vw, 66px); line-height: .96; }
.package-dialog-header h2 span {
  color: transparent;
  background: linear-gradient(100deg, var(--orange), var(--pink));
  background-clip: text;
  -webkit-background-clip: text;
}
.package-dialog-header > p:last-child { margin: 0; color: var(--muted); font-size: 13px; }
.package-base {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto 22px;
  align-items: center;
  gap: 16px;
  margin: 30px 0;
  padding: 19px 22px;
  border: 1px solid #ff866c;
  border-radius: 20px;
  background: linear-gradient(105deg, #fff5eb, #fff1f8);
  box-shadow: 0 12px 32px rgba(255,73,82,.08);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.package-base > input { position: absolute; opacity: 0; pointer-events: none; }
.package-base:not(:has(input:checked)) { border-color: #dedee3; background: #fff; box-shadow: none; opacity: .72; }
.package-base-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  font-size: 10px;
  font-weight: 800;
}
.package-base small, .package-base strong { display: block; }
.package-base small { color: #9a6b61; font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.package-base strong { margin-top: 3px; font-size: 14px; }
.package-base b { font-family: "Plus Jakarta Sans"; font-size: 26px; letter-spacing: -.04em; }
.package-base-check { flex: 0 0 auto; }
.package-base input:checked ~ .package-base-check { border-color: transparent; background: linear-gradient(135deg, var(--orange), var(--pink)); }
.package-base input:checked ~ .package-base-check::after { content: "✓"; color: #fff; font-size: 11px; font-weight: 800; }
.package-base input:focus-visible ~ .package-base-check { outline: 3px solid rgba(255,65,107,.24); outline-offset: 3px; }
.package-options { padding: 0; border: 0; margin: 0; }
.package-options legend { margin-bottom: 14px; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.package-option-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.package-option {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 24px;
  align-items: center;
  gap: 14px;
  min-height: 78px;
  padding: 15px 16px;
  border: 1px solid #e7e7eb;
  border-radius: 16px;
  background: rgba(255,255,255,.76);
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.package-option:hover { transform: translateY(-2px); border-color: #ffc5b5; box-shadow: 0 14px 34px rgba(33,20,28,.07); }
.package-option:has(input:checked) {
  border-color: #ff866c;
  background: linear-gradient(120deg, #fff8f1, #fff5fa);
  box-shadow: 0 12px 32px rgba(255,73,82,.08);
}
.package-option input { position: absolute; opacity: 0; pointer-events: none; }
.package-option-copy strong, .package-option-copy small { display: block; }
.package-option-copy strong { font-size: 11px; line-height: 1.35; }
.package-option-copy small { margin-top: 4px; color: #85858c; font-size: 9px; line-height: 1.45; }
.package-check {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid #d7d7dc;
  border-radius: 50%;
  background: #fff;
}
.package-option input:checked + .package-option-copy + .package-check {
  border-color: transparent;
  background: linear-gradient(135deg, var(--orange), var(--pink));
}
.package-option input:checked + .package-option-copy + .package-check::after {
  content: "✓";
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}
.package-option input:focus-visible + .package-option-copy + .package-check { outline: 3px solid rgba(255,65,107,.24); outline-offset: 3px; }
.package-builder-footer {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid #e9e9ed;
}
.package-count { display: grid; gap: 3px; }
.package-count strong { font-size: 13px; }
.package-count > span { color: #85858c; font-size: 9px; }
.package-details-form { margin-top: 24px; padding: 24px; border: 1px solid #ececf0; border-radius: 20px; background: rgba(255,255,255,.82); }
.package-details-heading { margin-bottom: 20px; }
.package-details-heading .eyebrow { margin-bottom: 7px; }
.package-details-heading h3 { margin: 0 0 7px; font-size: 22px; }
.package-details-heading > p:last-child { margin: 0; color: var(--muted); font-size: 10px; }
.package-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; }
.package-details-form label { color: #303036; font-size: 9px; font-weight: 700; }
.package-details-form label > span { color: #929298; font-weight: 500; }
.package-details-form input:not([type="hidden"]), .package-details-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 12px 13px;
  border: 1px solid #dedee3;
  border-radius: 11px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 11px;
  outline: none;
}
.package-details-form input:focus, .package-details-form textarea:focus { border-color: #ff795c; box-shadow: 0 0 0 3px rgba(255,99,73,.1); }
.package-details-form textarea { resize: vertical; }
.package-message { display: block; margin-top: 13px; }
.package-selection-error { min-height: 16px; margin: 9px 0 0; color: #c52d45; font-size: 9px; }
.package-form-actions { display: flex; justify-content: flex-end; gap: 10px; }
.package-form-actions .button { min-height: 46px; padding: 12px 17px; font-size: 11px; }
.package-email { border: 1px solid #dedee3; background: #fff; }

.review-cta { padding-top: 0; }
.review-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
  padding: clamp(38px, 5vw, 68px);
  border-radius: 32px;
  color: #fff;
  background:
    radial-gradient(circle at 92% 48%, rgba(255,0,142,.25), transparent 28%),
    radial-gradient(circle at 70% 0%, rgba(255,115,0,.26), transparent 35%),
    #0a0a0b;
}
.review-inner h2 { margin-bottom: 16px; font-size: clamp(34px, 4vw, 54px); }
.review-inner p { max-width: 720px; margin: 0; color: #b8b8bd; }
.review-inner .button { min-width: 210px; }

.confidence-strip { padding-top: 0; padding-bottom: 40px; }
.confidence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fafafa;
}
.confidence-grid div {
  display: grid;
  grid-template-columns: 28px 1fr;
  column-gap: 9px;
  align-items: center;
  padding: 12px;
}
.confidence-grid span {
  grid-row: 1 / span 2;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  font-size: 11px;
  font-weight: 800;
}
.confidence-grid strong { font-size: 11px; }
.confidence-grid small { color: #8a8a90; font-size: 9px; }

.contact { padding-top: 40px; }

@media (max-width: 1180px) {
  .concept-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brand-board { grid-template-columns: 1fr; }
}

@media (max-width: 1040px) {
  .review-inner { grid-template-columns: 1fr; }
  .review-inner .button { justify-self: start; }
  .confidence-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .concept-grid { grid-template-columns: 1fr; }
  .concept-card { padding: 13px; border-radius: 22px; }
  .concept-meta { align-items: flex-start; }
  .concept-meta > span:last-child { text-align: right; }
  .concept-browser { min-height: 340px; padding: 16px; }
  .laptop-device { width: min(100%, 320px); }
  .ast-header-row small { display: none; }
  .ast-hero-grid { grid-template-columns: 1fr; }
  .ast-hero-copy h3 { font-size: 24px; }
  .phone-device { width: 198px; min-height: 350px; }
  .phone-screen { min-height: 324px; }
  .china-hero-top h3 { font-size: 25px; }
  .brand-board { grid-template-columns: 1fr; min-height: auto; }
  .brand-vehicle { min-height: 138px; }
  .van-shell { left: 12px; width: 190px; }
  .van-shell::before { right: -32px; width: 48px; }
  .van-window { left: 190px; }
  .van-wheel-left { left: 44px; }
  .van-wheel-right { left: 182px; }
  .van-text { left: 34px; font-size: 15px; }
  .van-bolt { right: 38px; }
  .concept-copy { padding: 18px 4px 5px; }
  .addon-grid {
    display: block;
    margin: 8px 0 0;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .addon-section { margin-top: 22px; }
  .addon-section + .addon-section { margin-top: 20px; }
  .addon-group-label { font-size: 9px; }
  .addon-item {
    grid-template-columns: 36px 1fr;
    min-height: auto;
    padding: 14px 0;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .addon-item:hover { transform: none; border-color: rgba(255,255,255,.1); background: transparent; box-shadow: none; }
  .addon-icon { width: 36px; height: 36px; border-radius: 10px; }
  .addon-tag { display: none; }
  .addon-item:has(.addon-tag) strong { padding-right: 0; }
  .addon-item strong { font-size: 12px; }
  .addon-item small { font-size: 9.5px; }
  .add-ons-card { padding: 28px 22px 24px; }
  .add-ons-card h3 { font-size: 38px; }
  .extras-label { margin-bottom: 20px; }
  .website-offer, .add-ons-card { min-height: auto; }
  .launch-price { padding: 18px; }
  .hosting-choice-note { margin-bottom: 18px; }
  .addon-title-row { display: grid; justify-content: start; }
  .addon-price { width: fit-content; }
  .offer-assurances { grid-template-columns: 1fr; }
  .form-toast { left: 16px; right: 16px; bottom: 16px; min-width: 0; }
  .package-dialog { width: calc(100% - 20px); }
  .package-dialog-shell { max-height: calc(100vh - 20px); padding: 28px 20px 22px; border-radius: 24px; }
  .package-close { top: 15px; right: 15px; width: 38px; height: 38px; }
  .package-dialog-header { padding-right: 36px; }
  .package-dialog-header h2 { font-size: 43px; }
  .package-base { grid-template-columns: auto 1fr 22px; padding: 16px; }
  .package-base b { grid-column: 2; font-size: 23px; }
  .package-base-check { grid-column: 3; grid-row: 1 / span 2; }
  .package-option-grid { grid-template-columns: 1fr; }
  .package-option { min-height: 70px; }
  .package-details-form { padding: 19px 15px; }
  .package-detail-grid { grid-template-columns: 1fr; }
  .package-form-actions { display: grid; }
  .package-form-actions .button { width: 100%; }
  .review-inner { gap: 28px; }
  .review-inner .button { width: 100%; }
  .confidence-grid { grid-template-columns: 1fr; padding: 10px; }
}

/* --------------------------------------------------------------------------
   Fresh selected-work section
   -------------------------------------------------------------------------- */

.portfolio-header {
  display: grid;
  grid-template-columns: minmax(110px, .38fr) minmax(440px, 1.15fr) minmax(290px, .72fr);
  gap: clamp(28px, 4vw, 70px);
  align-items: end;
  margin-bottom: clamp(42px, 6vw, 76px);
}

.portfolio-index {
  align-self: start;
  margin: 10px 0 0;
  color: #ff7851;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.portfolio-header h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 6.2vw, 88px);
  line-height: .92;
  letter-spacing: -.065em;
}

.portfolio-header h2 span { color: #73737a; }

.portfolio-header-copy {
  padding-bottom: 5px;
}

.portfolio-header-copy p {
  margin: 0 0 24px;
  color: #aaaab1;
  font-size: 12px;
  line-height: 1.85;
}

.portfolio-header-copy a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.portfolio-header-copy a span {
  color: #ff7851;
  font-size: 15px;
  transition: transform .25s ease;
}

.portfolio-header-copy a:hover span { transform: translate(3px, 3px); }

.case-study-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.78fr) minmax(310px, 1fr);
  grid-template-areas:
    "aurelia fold"
    "aurelia vanta";
  gap: 18px;
}

.case-study {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #2b2b30;
  border-radius: 30px;
  background: #111113;
  box-shadow: 0 32px 80px rgba(0,0,0,.2);
  transition: transform .45s cubic-bezier(.2,.7,.2,1), border-color .35s ease, box-shadow .45s ease;
}

.case-study:hover {
  transform: translateY(-6px);
  border-color: #45454d;
  box-shadow: 0 42px 100px rgba(0,0,0,.34);
}

.case-aurelia {
  grid-area: aurelia;
  display: flex;
  flex-direction: column;
}

.case-fold { grid-area: fold; }
.case-vanta { grid-area: vanta; }

.case-media {
  position: relative;
  overflow: hidden;
  background: #1b1b1e;
}

.case-featured .case-media {
  flex: 1;
  min-height: 575px;
}

.case-compact .case-media {
  aspect-ratio: 16 / 8.7;
  min-height: 225px;
}

.case-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,.03), transparent 55%, rgba(0,0,0,.13));
}

.case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .85s cubic-bezier(.2,.7,.2,1), filter .6s ease;
}

.case-study:hover .case-media img {
  transform: scale(1.025);
  filter: saturate(1.04) contrast(1.015);
}

.case-count {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  color: #fff;
  background: rgba(8,8,9,.48);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  font-size: 9px;
  font-weight: 800;
}

.case-content {
  color: #fff;
}

.case-featured .case-content {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(250px, .74fr);
  gap: 36px;
  align-items: end;
  padding: 32px 34px 36px;
}

.case-compact .case-content {
  padding: 22px 24px 25px;
}

.case-discipline {
  margin: 0 0 11px;
  color: #86868d;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.case-content h3 {
  margin: 0;
  font-size: 27px;
  line-height: 1;
  letter-spacing: -.04em;
}

.case-featured .case-content h3 {
  font-size: clamp(34px, 4vw, 56px);
}

.case-content > p {
  margin: 13px 0 0;
  color: #9d9da4;
  font-size: 10px;
  line-height: 1.72;
}

.case-featured .case-content > p {
  margin: 0;
  font-size: 11px;
  line-height: 1.82;
}

.portfolio-capability-rail {
  display: grid;
  grid-template-columns: minmax(250px, .75fr) 1.5fr;
  gap: 30px;
  align-items: center;
  margin-top: 30px;
  padding: 27px 4px;
  border-top: 1px solid #2c2c31;
  border-bottom: 1px solid #2c2c31;
}

.portfolio-capability-rail strong {
  color: #fff;
  font-size: 13px;
}

.portfolio-capability-rail > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.portfolio-capability-rail span {
  color: #86868d;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .04em;
}

.portfolio-note {
  margin: 22px 0 0;
  color: #66666d;
  text-align: right;
  font-size: 8px;
  letter-spacing: .03em;
}

@media (max-width: 1100px) {
  .portfolio-header {
    grid-template-columns: 1fr 1.15fr;
  }
  .portfolio-index { grid-column: 1 / -1; margin: 0; }
  .case-study-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "aurelia aurelia"
      "fold vanta";
  }
  .case-featured .case-media {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
  .case-compact .case-media { min-height: 0; }
  .portfolio-capability-rail {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 760px) {
  .portfolio-header {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 36px;
  }
  .portfolio-index { grid-column: auto; }
  .portfolio-header h2 { font-size: clamp(45px, 15vw, 66px); }
  .portfolio-header-copy p { max-width: 520px; }
  .case-study-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "aurelia"
      "fold"
      "vanta";
    gap: 12px;
  }
  .case-study { border-radius: 22px; }
  .case-featured .case-media,
  .case-compact .case-media {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
  .case-featured .case-content {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }
  .case-compact .case-content { padding: 22px 23px 24px; }
  .case-featured .case-content h3 { font-size: 34px; }
  .portfolio-capability-rail { padding: 24px 0; }
  .portfolio-capability-rail > div {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 16px;
  }
  .portfolio-note { text-align: left; }
}

/* --------------------------------------------------------------------------
   Founders' story, readability, privacy and restrained dimensional styling
   -------------------------------------------------------------------------- */

.eyebrow { font-size: 12px; }
.trust-strip strong { font-size: 13px; }
.trust-strip span { font-size: 11px; }
.float-card { font-size: 12px; }
.popular-bar { font-size: 10px; }
.plan-label,
.price span { font-size: 11px; }
.price-card li {
  font-size: 12px;
  line-height: 1.55;
}
.pricing-note {
  max-width: 760px;
  font-size: 12px;
  line-height: 1.65;
}
.step p {
  font-size: 13px;
  line-height: 1.7;
}
.about {
  scroll-margin-top: 94px;
  padding-bottom: 86px;
}
.about-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 100%, rgba(255,115,0,.08), transparent 32%),
    radial-gradient(circle at 100% 0%, rgba(255,0,142,.06), transparent 28%),
    linear-gradient(145deg, #fff, #fbfbfc);
  box-shadow: 0 34px 100px rgba(20,20,30,.07);
}
.about-mark {
  display: grid;
  place-items: center;
  perspective: 900px;
}
.about-mark img {
  z-index: 1;
  transform: translateZ(28px) rotate(-2deg);
}
.founded-badge {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 3%;
  min-width: 116px;
  padding: 13px 15px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 17px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 20px 54px rgba(20,20,30,.13);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transform: translateZ(65px) rotate(3deg);
}
.founded-badge span,
.founded-badge strong { display: block; }
.founded-badge span {
  color: #8b8b91;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.founded-badge strong {
  margin-top: 2px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 19px;
  letter-spacing: -.035em;
}
.about-copy > p {
  max-width: 760px;
  font-size: 15px;
  line-height: 1.78;
}
.about-values strong { font-size: 13px; }
.about-values span {
  font-size: 11px;
  line-height: 1.55;
}
.team-role { font-size: 11px; }
.team-bio { font-size: 13px; }
.team-focus li { font-size: 11px; }
.contact-small span { font-size: 11px; }
.project-form label,
.form-field { font-size: 11px; }
.footer-links,
.site-footer p { font-size: 12px; }
.site-footer small { font-size: 11px; }
.assurance-pill strong { font-size: 10px; }
.offer-email { font-size: 11px; }
.add-ons-card .plan-desc { font-size: 13px; }
.addon-group-label { font-size: 10px; }
.addon-item strong { font-size: 12px; }
.addon-item small { font-size: 10px; }
.addon-tag { font-size: 8px; }
.extras-footer strong { font-size: 12px; }
.extras-footer p span { font-size: 10px; }
.package-base small { font-size: 10px; }
.package-options legend { font-size: 12px; }
.package-option-copy strong { font-size: 12px; }
.package-option-copy small { font-size: 10px; }
.package-count > span { font-size: 11px; }
.package-details-heading > p:last-child { font-size: 11px; }
.package-details-form label { font-size: 10px; }
.package-details-form input:not([type="hidden"]),
.package-details-form textarea { font-size: 12px; }
.package-selection-error { font-size: 10px; }
.confidence-grid strong { font-size: 12px; }
.confidence-grid small {
  font-size: 10px;
  line-height: 1.55;
}
.portfolio-index,
.case-discipline { font-size: 10px; }
.case-content > p { font-size: 12px; }
.portfolio-capability-rail span { font-size: 11px; }
.portfolio-note {
  font-size: 10px;
  line-height: 1.55;
}

.form-privacy {
  margin: 12px 0 0;
  color: #77777d;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.6;
}
.form-privacy a {
  color: #303036;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.form-privacy-dark {
  color: #a8a8ae;
  text-align: center;
}
.form-privacy-dark a { color: #fff; }

.hero-art {
  isolation: isolate;
  perspective: 1200px;
  transform-style: preserve-3d;
}
.hero-art::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 18%;
  right: 10%;
  bottom: 10%;
  height: 12%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(26,18,26,.15), transparent 70%);
  filter: blur(16px);
  transform: rotateX(72deg) translateZ(-40px);
}
.hero-logo-wrap {
  z-index: 2;
  transform-style: preserve-3d;
  transform:
    translate3d(var(--hero-shift-x, 0px), var(--hero-shift-y, 0px), 34px)
    rotateX(var(--hero-rotate-x, 0deg))
    rotateY(var(--hero-rotate-y, 0deg));
  transition: transform .42s cubic-bezier(.2,.7,.2,1);
  will-change: transform;
}
.hero-logo { transform: translateZ(24px); }
.orbit { transform: translateZ(-16px) rotateX(5deg); }
.orbit-two { transform: translateZ(-34px) rotateX(7deg); }
.float-card {
  z-index: 4;
  --float-depth: 68px;
  transform-style: preserve-3d;
}
.card-brand { --float-depth: 96px; }
.card-grow { --float-depth: 52px; }
.spark { z-index: 3; }

.case-study {
  perspective: 1100px;
  transform-style: preserve-3d;
}
.case-media {
  transform: perspective(1100px) rotateX(0) rotateY(0) translateZ(0);
  transform-origin: center;
  transition: transform .55s cubic-bezier(.2,.7,.2,1), box-shadow .55s cubic-bezier(.2,.7,.2,1);
  will-change: transform;
}
.case-study:hover .case-media {
  transform: perspective(1100px) rotateX(1.4deg) rotateY(-1.7deg) translate3d(0,-3px,18px);
  box-shadow: 0 34px 80px rgba(0,0,0,.32);
}
.case-study:nth-child(even):hover .case-media {
  transform: perspective(1100px) rotateX(1.4deg) rotateY(1.7deg) translate3d(0,-3px,18px);
}

.legal-page {
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 86% 12%, rgba(255,0,142,.055), transparent 26%),
    radial-gradient(circle at 12% 30%, rgba(255,115,0,.055), transparent 24%),
    #fff;
}
.legal-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(24px, 6vw, 92px);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.legal-main {
  position: relative;
  z-index: 1;
  padding: 90px clamp(24px, 7vw, 110px) 120px;
}
.legal-hero {
  max-width: 900px;
  margin-bottom: 76px;
}
.legal-hero h1 {
  max-width: none;
  margin-bottom: 24px;
  font-size: clamp(54px, 8vw, 108px);
}
.legal-hero > p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
}
.legal-hero small {
  color: #8b8b91;
  font-size: 12px;
  font-weight: 700;
}
.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, .55fr) minmax(0, 1.45fr);
  align-items: start;
  gap: clamp(48px, 8vw, 120px);
  max-width: 1180px;
}
.legal-summary {
  position: sticky;
  top: 30px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 22px 70px rgba(20,20,30,.07);
}
.legal-summary strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
}
.legal-summary p {
  margin: 12px 0 20px;
  color: var(--muted);
  font-size: 13px;
}
.legal-summary a {
  color: #d83e3d;
  font-size: 12px;
  font-weight: 800;
}
.legal-content {
  display: grid;
  gap: 0;
}
.legal-content section {
  padding: 0 0 38px;
  margin-bottom: 38px;
  border-bottom: 1px solid var(--line);
}
.legal-content section:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}
.legal-content h2 {
  margin-bottom: 15px;
  font-size: clamp(25px, 3vw, 34px);
  letter-spacing: -.035em;
}
.legal-content p {
  margin: 0 0 14px;
  color: #56565c;
  font-size: 15px;
  line-height: 1.78;
}
.legal-content p:last-child { margin-bottom: 0; }
.legal-content a {
  color: #c83c3d;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-footer { background: #fff; }

@keyframes bob {
  0%,100% { transform: translate3d(0, 0, var(--float-depth, 0px)); }
  50% { transform: translate3d(0, -12px, var(--float-depth, 0px)); }
}

@media (max-width: 1040px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .legal-summary {
    position: static;
    max-width: 640px;
  }
}

@media (max-width: 760px) {
  .about { padding-bottom: 70px; }
  .about-mark { max-width: 270px; }
  .founded-badge {
    right: -2px;
    bottom: -2%;
    min-width: 104px;
    padding: 11px 13px;
  }
  .about-copy > p { font-size: 14px; }
  .team-bio { font-size: 13px; }
  .package-form-actions { flex-direction: column-reverse; }
  .package-form-actions .button { width: 100%; }
  .form-privacy { font-size: 10px; }
  .case-study:hover .case-media,
  .case-study:nth-child(even):hover .case-media {
    transform: none;
    box-shadow: none;
  }
  .legal-header {
    padding: 16px 20px;
  }
  .legal-header .button {
    min-height: 44px;
    padding: 11px 16px;
  }
  .legal-main {
    padding: 72px 22px 88px;
  }
  .legal-hero {
    margin-bottom: 54px;
  }
  .legal-hero h1 { font-size: clamp(49px, 18vw, 72px); }
  .legal-hero > p:not(.eyebrow) { font-size: 16px; }
  .legal-summary { padding: 22px; }
  .legal-content section {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .legal-content p { font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo-wrap,
  .case-media,
  .case-study:hover .case-media,
  .case-study:nth-child(even):hover .case-media {
    transform: none !important;
  }
}
