@font-face {
  font-family: "Anybody Expanded";
  src: url("../fonts/AnybodyExpanded-Regular.woff2") format("woff2");
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: "Anybody Expanded";
  src: url("../fonts/AnybodyExpanded-Medium.woff2") format("woff2");
  font-display: swap;
  font-weight: 500;
}

.growth-surface{
  color-scheme: dark;
  --bg: #08080a;
  --surface: #101012;
  --surface-2: #151518;
  --paper: #f2f0ec;
  --paper-2: #e6e2da;
  --ink: #f4f3f1;
  --ink-dark: #111113;
  --muted: rgba(244, 243, 241, 0.68);
  --soft: rgba(244, 243, 241, 0.46);
  --line: rgba(244, 243, 241, 0.15);
  --line-strong: rgba(244, 243, 241, 0.3);
  --line-dark: rgba(17, 17, 19, 0.18);
  --accent: #d8412a;
  --accent-live: #ed563d;
  --accent-deep: #8e1a0c;
  --family-glow: rgba(142, 26, 12, 0.24);
  --max: 1480px;
  --reading: 820px;
  --gutter: clamp(22px, 3.9vw, 58px);
  --section: clamp(82px, 8.5vw, 136px);
  --display: "Anybody Expanded", "Arial Narrow", Arial, sans-serif;
  --body: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.growth-surface[data-family="brand"]{
  --family-glow: rgba(218, 208, 192, 0.2);
}

.growth-surface[data-family="campaign"]{
  --family-glow: rgba(176, 38, 18, 0.28);
}

.growth-surface[data-family="commerce"]{
  --family-glow: rgba(34, 83, 117, 0.24);
}

.growth-surface[data-family="aigc"]{
  --family-glow: rgba(97, 60, 140, 0.26);
}

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

.growth-surface{
  scroll-behavior: smooth;
  background: var(--bg);
}

.growth-surface{
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.growth-surface.menu-open{
  overflow: hidden;
}

.growth-surface [hidden]{
  display: none !important;
}

.growth-surface img,
.growth-surface video{
  display: block;
  width: 100%;
  max-width: 100%;
}

.growth-surface img{
  height: auto;
}

.growth-surface a{
  color: inherit;
  text-decoration: none;
}

.growth-surface button,
.growth-surface input,
.growth-surface textarea,
.growth-surface select{
  color: inherit;
  font: inherit;
}

.growth-surface button{
  border: 0;
}

.growth-surface ::selection{
  background: var(--accent);
  color: #fff;
}

.growth-surface :focus-visible{
  outline: 2px solid var(--accent-live);
  outline-offset: 4px;
}

.growth-surface .skip-link{
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  transform: translateY(-180%);
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink-dark);
}

.growth-surface .skip-link:focus{
  transform: translateY(0);
}

.growth-surface .container{
  width: min(100%, var(--max));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.growth-surface .reading{
  width: min(100%, var(--reading));
}

.growth-surface .display{
  font-family: var(--display);
  font-weight: 400;
}

.growth-surface .eyebrow{
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--accent-live);
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.growth-surface .eyebrow::before{
  width: 26px;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
}

.growth-surface .title-line{
  display: block;
  width: fit-content;
  max-width: 100%;
  line-height: inherit;
  text-wrap: balance;
}

.growth-surface .title-line + .title-line{
  margin-top: 0.06em;
}

.growth-surface .index-mark{
  color: var(--soft);
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.15em;
}

.growth-surface .prototype-flag{
  position: fixed;
  z-index: 180;
  right: 12px;
  bottom: 12px;
  padding: 8px 11px;
  border: 1px solid rgba(244, 243, 241, 0.24);
  background: rgba(8, 8, 10, 0.82);
  color: rgba(244, 243, 241, 0.62);
  font-family: var(--display);
  font-size: 8px;
  letter-spacing: 0.12em;
  pointer-events: none;
}

.growth-surface .site-header{
  position: sticky;
  z-index: 70;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 10, 0.93);
  backdrop-filter: blur(18px);
}

.growth-surface .nav{
  display: flex;
  align-items: center;
  min-height: 80px;
}

.growth-surface .brand{
  display: inline-flex;
  align-items: center;
  min-width: 118px;
  min-height: 44px;
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: 0.12em;
}

.growth-surface .brand span{
  margin-left: 7px;
  color: var(--soft);
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.growth-surface .primary-nav{
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.5vw, 40px);
  margin-left: auto;
}

.growth-surface .primary-nav a{
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--muted);
  font-size: 13px;
}

.growth-surface .primary-nav a::after{
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--accent-live);
  content: "";
  transition: transform 0.25s var(--ease);
}

.growth-surface .primary-nav a:hover,
.growth-surface .primary-nav a[aria-current="page"]{
  color: var(--ink);
}

.growth-surface .primary-nav a:hover::after,
.growth-surface .primary-nav a[aria-current="page"]::after{
  transform: scaleX(1);
  transform-origin: left;
}

.growth-surface .nav-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-left: 34px;
  padding: 0 20px;
  background: var(--accent-deep);
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s ease;
}

.growth-surface .nav-cta:hover{
  background: #b5240f;
}

.growth-surface .menu-toggle{
  position: relative;
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  background: transparent;
  cursor: pointer;
}

.growth-surface .menu-toggle::before,
.growth-surface .menu-toggle::after,
.growth-surface .menu-toggle span{
  position: absolute;
  left: 12px;
  width: 24px;
  height: 1px;
  background: var(--ink);
  content: "";
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.growth-surface .menu-toggle::before{
  top: 17px;
}

.growth-surface .menu-toggle span{
  top: 23px;
}

.growth-surface .menu-toggle::after{
  top: 29px;
}

.growth-surface .menu-open .menu-toggle::before{
  transform: translateY(6px) rotate(45deg);
}

.growth-surface .menu-open .menu-toggle span{
  opacity: 0;
}

.growth-surface .menu-open .menu-toggle::after{
  transform: translateY(-6px) rotate(-45deg);
}

.growth-surface .mobile-menu{
  position: fixed;
  z-index: 65;
  inset: 73px 0 0;
  overflow-y: auto;
  padding: 28px var(--gutter) 60px;
  background: rgba(8, 8, 10, 0.99);
}

.growth-surface .mobile-menu a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  border-bottom: 1px solid var(--line);
  font-size: 19px;
}

.growth-surface .mobile-menu a::after{
  color: var(--soft);
  content: "↗";
}

.growth-surface .button{
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-width: 208px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid var(--line-strong);
  background: rgba(8, 8, 10, 0.16);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.growth-surface .button::after{
  font-size: 19px;
  font-weight: 400;
  content: "↗";
}

.growth-surface .button:hover{
  border-color: var(--ink);
  background: var(--ink);
  color: var(--ink-dark);
}

.growth-surface .button--primary{
  border-color: var(--accent);
  background: var(--accent-deep);
}

.growth-surface .button--primary:hover{
  border-color: var(--accent-live);
  background: var(--accent-live);
  color: #fff;
}

.growth-surface .button--dark{
  border-color: var(--ink-dark);
  color: var(--ink-dark);
}

.growth-surface .button--dark:hover{
  background: var(--ink-dark);
  color: var(--paper);
}

.growth-surface .breadcrumbs{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: clamp(44px, 5.5vw, 82px);
  color: var(--soft);
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.growth-surface .breadcrumbs span{
  color: var(--line-strong);
}

.growth-surface .solution-hero{
  position: relative;
  display: grid;
  min-height: min(820px, calc(100svh - 80px));
  overflow: hidden;
  isolation: isolate;
}

.growth-surface .solution-hero__media,
.growth-surface .solution-hero__media::before,
.growth-surface .solution-hero__media::after{
  position: absolute;
  inset: 0;
}

.growth-surface .solution-hero__media{
  z-index: -2;
  margin: 0;
  background: #111;
}

.growth-surface .solution-hero__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
}

.growth-surface .solution-hero__media::before{
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 8, 10, 0.98) 0%, rgba(8, 8, 10, 0.9) 35%, rgba(8, 8, 10, 0.46) 61%, rgba(8, 8, 10, 0.12) 100%),
    linear-gradient(180deg, rgba(8, 8, 10, 0.26), transparent 42%, rgba(8, 8, 10, 0.5));
  content: "";
}

.growth-surface .solution-hero__media::after{
  z-index: 2;
  background: radial-gradient(circle at 72% 48%, var(--family-glow), transparent 38%);
  content: "";
}

.growth-surface .solution-hero__content{
  align-self: center;
  padding-block: clamp(60px, 7vw, 108px);
}

.growth-surface .solution-hero__copy{
  max-width: 670px;
}

.growth-surface .solution-hero h1{
  max-width: 820px;
  margin: 22px 0 20px;
  font-size: clamp(48px, 5.25vw, 80px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.growth-surface .solution-hero__proposition{
  max-width: 620px;
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(20px, 1.75vw, 28px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.42;
}

.growth-surface .solution-hero__lead{
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.18vw, 19px);
  line-height: 1.88;
}

.growth-surface .hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.growth-surface .hero-note{
  position: absolute;
  z-index: 4;
  right: var(--gutter);
  bottom: 48px;
  text-align: right;
}

.growth-surface .hero-note strong{
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
}

.growth-surface .hero-note small{
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
}

.growth-surface .decision-rail{
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.growth-surface .decision-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.growth-surface .decision-item{
  min-height: 148px;
  padding: 27px clamp(21px, 2.3vw, 36px);
  border-right: 1px solid var(--line);
}

.growth-surface .decision-item:last-child{
  border-right: 0;
}

.growth-surface .decision-item span{
  display: block;
  margin-bottom: 16px;
  color: var(--accent-live);
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.growth-surface .decision-item strong{
  display: block;
  max-width: 270px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.58;
}

.growth-surface .section{
  padding-block: var(--section);
}

.growth-surface .section--surface{
  background: var(--surface);
}

.growth-surface .section--paper{
  background: var(--paper);
  color: var(--ink-dark);
}

.growth-surface .section-head{
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(280px, 3fr);
  gap: clamp(44px, 7vw, 110px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 82px);
}

.growth-surface .section-head h2{
  max-width: 980px;
  margin: 18px 0 0;
  font-size: clamp(43px, 4.5vw, 68px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.growth-surface .section-head p{
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.growth-surface .section--paper .section-head p{
  color: rgba(17, 17, 19, 0.64);
}

.growth-surface .feature-grid{
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(300px, 4fr);
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
}

.growth-surface .feature-video{
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #030304;
}

.growth-surface .feature-video video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.growth-surface .video-label{
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(8, 8, 10, 0.58);
  font-family: var(--display);
  font-size: 8px;
  letter-spacing: 0.15em;
  pointer-events: none;
}

.growth-surface .feature-copy h3{
  margin: 18px 0 24px;
  font-size: clamp(30px, 3vw, 47px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.growth-surface .feature-copy p{
  color: var(--muted);
}

.growth-surface .fact-list{
  margin: 32px 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.growth-surface .fact-list li{
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.growth-surface .fact-list span{
  color: var(--soft);
}

.growth-surface .evidence-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.growth-surface .evidence-column{
  min-width: 0;
  padding-top: 30px;
}

.growth-surface .evidence-column:first-child{
  padding-right: clamp(28px, 4vw, 64px);
  border-right: 1px solid var(--line);
}

.growth-surface .evidence-column:last-child{
  padding-left: clamp(28px, 4vw, 64px);
}

.growth-surface .evidence-column h3{
  margin: 0 0 28px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.growth-surface .editorial-list{
  margin: 0;
  padding: 0;
  list-style: none;
}

.growth-surface .editorial-list li{
  position: relative;
  padding: 18px 0 18px 31px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
}

.growth-surface .editorial-list li::before{
  position: absolute;
  top: 24px;
  left: 2px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--accent-live);
  content: "";
}

.growth-surface .editorial-list li:last-child{
  border-bottom: 1px solid var(--line);
}

.growth-surface .case-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 42px);
}

.growth-surface .case-card{
  min-width: 0;
}

.growth-surface .case-card__media{
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface-2);
}

.growth-surface .case-card__media::after{
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  box-shadow: inset 0 -110px 90px -70px rgba(0, 0, 0, 0.9);
  content: "";
  pointer-events: none;
}

.growth-surface .case-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s var(--ease), filter 0.4s ease;
}

.growth-surface .case-card:hover img{
  transform: scale(1.025);
  filter: saturate(1.08);
}

.growth-surface .case-card__index{
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(8, 8, 10, 0.52);
  font-family: var(--display);
  font-size: 8px;
  letter-spacing: 0.15em;
}

.growth-surface .case-card__body{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  padding: 20px 0 4px;
  border-bottom: 1px solid var(--line);
}

.growth-surface .case-card h3{
  margin: 0;
  font-size: clamp(19px, 1.8vw, 27px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.growth-surface .case-card__body span{
  color: var(--soft);
  font-family: var(--display);
  font-size: 10px;
}

.growth-surface .process-grid{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.growth-surface .process-step{
  position: relative;
  min-height: 310px;
  padding: 28px 24px 36px;
  border-right: 1px solid var(--line);
}

.growth-surface .process-step:last-child{
  border-right: 0;
}

.growth-surface .process-step__number{
  display: block;
  margin-bottom: 80px;
  color: var(--accent-live);
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.15em;
}

.growth-surface .process-step h3{
  margin: 0 0 14px;
  font-size: 19px;
  font-weight: 500;
}

.growth-surface .process-step p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.growth-surface .guide-grid{
  display: grid;
  grid-template-columns: minmax(250px, 4fr) minmax(0, 8fr);
  gap: clamp(48px, 8vw, 130px);
  align-items: start;
}

.growth-surface .guide-sticky{
  position: sticky;
  top: 116px;
}

.growth-surface .guide-sticky h2{
  margin: 18px 0 20px;
  font-size: clamp(41px, 4.2vw, 66px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.growth-surface .guide-sticky p{
  color: rgba(17, 17, 19, 0.62);
}

.growth-surface .guide-articles article{
  padding: 0 0 46px;
  margin-bottom: 46px;
  border-bottom: 1px solid var(--line-dark);
}

.growth-surface .guide-articles article:last-child{
  margin-bottom: 0;
}

.growth-surface .guide-articles h3{
  max-width: 850px;
  margin: 0 0 20px;
  font-size: clamp(24px, 2.5vw, 35px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.32;
}

.growth-surface .guide-articles p{
  max-width: 780px;
  margin: 0;
  color: rgba(17, 17, 19, 0.7);
}

.growth-surface .faq-list{
  max-width: 1100px;
  margin-left: auto;
  border-top: 1px solid var(--line);
}

.growth-surface .faq-list details{
  border-bottom: 1px solid var(--line);
}

.growth-surface .faq-list summary{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  min-height: 90px;
  padding: 20px 0;
  font-size: clamp(17px, 1.7vw, 23px);
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}

.growth-surface .faq-list summary::-webkit-details-marker{
  display: none;
}

.growth-surface .faq-list summary::after{
  color: var(--accent-live);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  content: "+";
}

.growth-surface .faq-list details[open] summary::after{
  content: "−";
}

.growth-surface .faq-list p{
  max-width: 820px;
  margin: 0;
  padding: 0 54px 30px 0;
  color: var(--muted);
}

.growth-surface .draft-note{
  display: inline-block;
  margin-bottom: 18px;
  color: var(--soft);
  font-size: 12px;
}

.growth-surface .related-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.growth-surface .related-card{
  position: relative;
  min-height: 250px;
  padding: 28px;
  border-right: 1px solid var(--line);
  transition: background 0.25s ease;
}

.growth-surface .related-card:last-child{
  border-right: 0;
}

.growth-surface .related-card:hover{
  background: var(--surface-2);
}

.growth-surface .related-card span{
  color: var(--soft);
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.growth-surface .related-card h3{
  max-width: 320px;
  margin: 70px 0 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
}

.growth-surface .related-card small{
  display: block;
  max-width: 300px;
  margin-top: 14px;
  padding-right: 30px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.growth-surface .related-card::after{
  position: absolute;
  right: 28px;
  bottom: 26px;
  color: var(--accent-live);
  font-size: 20px;
  content: "↗";
}

.growth-surface .contact-band{
  position: relative;
  overflow: hidden;
  padding-block: clamp(90px, 10vw, 160px);
  background:
    linear-gradient(90deg, rgba(8, 8, 10, 0.96), rgba(8, 8, 10, 0.72)),
    radial-gradient(circle at 82% 35%, rgba(184, 45, 24, 0.34), transparent 36%),
    #111;
}

.growth-surface .contact-band__grid{
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(280px, 4fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: end;
}

.growth-surface .contact-band h2{
  max-width: 900px;
  margin: 18px 0 0;
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.growth-surface .contact-band p{
  margin: 0 0 26px;
  color: var(--muted);
}

.growth-surface .site-footer{
  padding: 48px 0 28px;
  border-top: 1px solid var(--line);
  background: #050506;
}

.growth-surface .footer-grid{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
}

.growth-surface .footer-brand{
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: 0.08em;
}

.growth-surface .footer-meta{
  text-align: right;
}

.growth-surface .footer-meta a,
.growth-surface .footer-meta p{
  display: block;
  margin: 0;
  color: var(--soft);
  font-size: 12px;
}

.growth-surface .footer-meta a{
  min-height: 32px;
}

.growth-surface .local-disclaimer{
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: rgba(244, 243, 241, 0.36);
  font-size: 11px;
}

/* Shared editorial page hero */
.growth-surface .page-hero{
  position: relative;
  min-height: min(760px, calc(100svh - 80px));
  overflow: hidden;
  isolation: isolate;
}

.growth-surface .page-hero--type{
  display: grid;
  align-items: end;
  padding-block: clamp(80px, 10vw, 150px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, transparent 50%, rgba(216, 65, 42, 0.08)),
    var(--bg);
}

.growth-surface .page-hero--media{
  display: grid;
  align-items: end;
  padding-block: clamp(80px, 10vw, 140px);
}

.growth-surface .page-hero__media,
.growth-surface .page-hero__media::after{
  position: absolute;
  inset: 0;
}

.growth-surface .page-hero__media{
  z-index: -1;
  margin: 0;
}

.growth-surface .page-hero__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.growth-surface .page-hero__media::after{
  background:
    linear-gradient(90deg, rgba(8, 8, 10, 0.97), rgba(8, 8, 10, 0.5) 65%, rgba(8, 8, 10, 0.18)),
    linear-gradient(180deg, rgba(8, 8, 10, 0.2), transparent 45%, rgba(8, 8, 10, 0.7));
  content: "";
}

.growth-surface .page-hero__content{
  position: relative;
  z-index: 2;
}

.growth-surface .page-hero h1{
  max-width: 1180px;
  margin: 22px 0 28px;
  font-size: clamp(52px, 7.4vw, 112px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.97;
}

.growth-surface .page-hero__lead{
  max-width: 710px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 20px);
}

.growth-surface .type-monogram{
  position: absolute;
  right: 1vw;
  bottom: -0.24em;
  z-index: -1;
  color: rgba(244, 243, 241, 0.025);
  font-family: var(--display);
  font-size: min(42vw, 620px);
  letter-spacing: -0.1em;
  line-height: 1;
  pointer-events: none;
}

/* Solutions hub */
.growth-surface .hub-intro{
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(44px, 8vw, 130px);
  align-items: start;
}

.growth-surface .hub-intro h2{
  margin: 16px 0 0;
  font-size: clamp(40px, 5vw, 74px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.growth-surface .hub-intro__copy{
  max-width: 720px;
  padding-top: 34px;
  color: var(--muted);
  font-size: 18px;
}

.growth-surface .family-block{
  display: grid;
  grid-template-columns: minmax(230px, 3fr) minmax(0, 9fr);
  gap: clamp(36px, 6vw, 92px);
  padding-block: clamp(54px, 6vw, 86px);
  border-top: 1px solid var(--line);
}

.growth-surface .family-block__intro{
  position: sticky;
  top: 116px;
  align-self: start;
}

.growth-surface .family-block__intro span{
  color: var(--accent-live);
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.15em;
}

.growth-surface .family-block__intro h2{
  margin: 20px 0 18px;
  font-size: clamp(32px, 3.4vw, 50px);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.growth-surface .family-block__intro p{
  color: var(--muted);
}

.growth-surface .solution-card-list{
  border-top: 1px solid var(--line);
}

.growth-surface .solution-card{
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) minmax(140px, 0.55fr) auto;
  gap: 24px;
  align-items: center;
  min-height: 132px;
  border-bottom: 1px solid var(--line);
  transition: background 0.25s ease;
}

.growth-surface .solution-card:hover{
  background: var(--surface);
}

.growth-surface .solution-card__number{
  padding-left: 16px;
  color: var(--soft);
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.growth-surface .solution-card h3{
  margin: 0;
  font-size: clamp(20px, 2.1vw, 31px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.growth-surface .solution-card p{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.growth-surface .solution-card__arrow{
  padding-right: 18px;
  color: var(--accent-live);
  font-size: 22px;
}

.growth-surface .selection-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
}

.growth-surface .selection-step{
  min-height: 280px;
  padding: 28px;
  border-right: 1px solid var(--line-dark);
}

.growth-surface .selection-step:last-child{
  border-right: 0;
}

.growth-surface .selection-step span{
  color: var(--accent-deep);
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.15em;
}

.growth-surface .selection-step h3{
  margin: 88px 0 15px;
  font-size: 25px;
  font-weight: 500;
}

.growth-surface .selection-step p{
  margin: 0;
  color: rgba(17, 17, 19, 0.67);
}

/* About */
.growth-surface .about-manifesto{
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: clamp(50px, 9vw, 145px);
}

.growth-surface .about-manifesto__index{
  color: var(--accent-live);
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.15em;
}

.growth-surface .about-manifesto blockquote{
  margin: 0;
  font-size: clamp(30px, 3.8vw, 56px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.28;
}

.growth-surface .about-manifesto p{
  max-width: 760px;
  margin: 34px 0 0;
  color: var(--muted);
}

.growth-surface .team-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.growth-surface .team-card{
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--bg);
}

.growth-surface .team-card:nth-child(3n + 1){
  transform: translateY(34px);
}

.growth-surface .team-card__media{
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--surface-2);
}

.growth-surface .team-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.05);
  transition: filter 0.35s ease, transform 0.7s var(--ease);
}

.growth-surface .team-card:hover img{
  transform: scale(1.025);
  filter: saturate(1);
}

.growth-surface .team-card__body{
  min-height: 88px;
  padding: 18px;
}

.growth-surface .team-card h3{
  margin: 0;
  font-size: 17px;
  font-weight: 500;
}

.growth-surface .team-card p{
  margin: 4px 0 0;
  color: var(--soft);
  font-size: 12px;
}

.growth-surface .value-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
}

.growth-surface .value-item{
  min-height: 300px;
  padding: 28px;
  border-right: 1px solid var(--line-dark);
}

.growth-surface .value-item:last-child{
  border-right: 0;
}

.growth-surface .value-item span{
  color: var(--accent-deep);
  font-family: var(--display);
  font-size: 10px;
}

.growth-surface .value-item h3{
  margin: 90px 0 16px;
  font-size: 27px;
  font-weight: 500;
}

.growth-surface .value-item p{
  color: rgba(17, 17, 19, 0.68);
}

/* Studio */
.growth-surface .studio-hero .page-hero__media img{
  object-position: center 50%;
}

.growth-surface .studio-zones{
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 28px);
}

.growth-surface .studio-shot{
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background: var(--surface-2);
}

.growth-surface .studio-shot:nth-child(1),
.growth-surface .studio-shot:nth-child(6){
  grid-column: span 7;
  aspect-ratio: 16 / 10;
}

.growth-surface .studio-shot:nth-child(2),
.growth-surface .studio-shot:nth-child(5){
  grid-column: span 5;
  aspect-ratio: 5 / 6;
}

.growth-surface .studio-shot:nth-child(3),
.growth-surface .studio-shot:nth-child(4),
.growth-surface .studio-shot:nth-child(n + 7){
  grid-column: span 6;
  aspect-ratio: 16 / 11;
}

.growth-surface .studio-shot img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.growth-surface .studio-shot:hover img{
  transform: scale(1.025);
}

.growth-surface .studio-shot span{
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  padding: 7px 10px;
  background: rgba(8, 8, 10, 0.75);
  font-family: var(--display);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.growth-surface .studio-paths{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.growth-surface .studio-path{
  min-height: 360px;
  padding: clamp(28px, 4vw, 56px);
  border-right: 1px solid var(--line);
}

.growth-surface .studio-path:last-child{
  border-right: 0;
}

.growth-surface .studio-path h3{
  margin: 80px 0 20px;
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.growth-surface .studio-path p{
  max-width: 520px;
  color: var(--muted);
}

/* BTS */
.growth-surface .bts-hero-grid{
  position: absolute;
  z-index: -1;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  opacity: 0.52;
}

.growth-surface .bts-hero-grid img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.28) contrast(1.12);
}

.growth-surface .bts-hero-grid::after{
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 8, 10, 0.98) 0%, rgba(8, 8, 10, 0.72) 48%, rgba(8, 8, 10, 0.3));
  content: "";
}

.growth-surface .bts-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2px;
  background: var(--line);
}

.growth-surface .bts-item{
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--surface-2);
}

.growth-surface .bts-item:nth-child(5n + 1),
.growth-surface .bts-item:nth-child(7n + 3){
  grid-column: span 2;
  aspect-ratio: 8 / 5;
}

.growth-surface .bts-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78);
  transition: filter 0.35s ease, transform 0.75s var(--ease);
}

.growth-surface .bts-item:hover img{
  transform: scale(1.025);
  filter: saturate(1);
}

.growth-surface .bts-item span{
  position: absolute;
  z-index: 2;
  bottom: 13px;
  left: 13px;
  padding: 6px 9px;
  background: rgba(8, 8, 10, 0.74);
  font-family: var(--display);
  font-size: 8px;
  letter-spacing: 0.12em;
}

/* Contact */
.growth-surface .contact-page-hero{
  min-height: 660px;
}

.growth-surface .contact-layout{
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(360px, 7fr);
  gap: clamp(55px, 9vw, 145px);
  align-items: start;
}

.growth-surface .contact-aside{
  position: sticky;
  top: 116px;
}

.growth-surface .contact-aside h2{
  margin: 18px 0 25px;
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.growth-surface .contact-aside p{
  color: var(--muted);
}

.growth-surface .contact-details{
  margin: 38px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.growth-surface .contact-details li{
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.growth-surface .contact-details strong{
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-weight: 500;
}

.growth-surface .project-form{
  padding: clamp(28px, 4vw, 56px);
  border: 1px solid var(--line);
  background: var(--surface);
}

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

.growth-surface .field{
  display: grid;
  gap: 9px;
}

.growth-surface .field--wide{
  grid-column: 1 / -1;
}

.growth-surface .field label{
  color: var(--muted);
  font-size: 12px;
}

.growth-surface .field input,
.growth-surface .field select,
.growth-surface .field textarea{
  width: 100%;
  min-height: 52px;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  outline: 0;
  background: transparent;
}

.growth-surface .field input:focus,
.growth-surface .field select:focus,
.growth-surface .field textarea:focus{
  border-bottom-color: var(--accent-live);
}

.growth-surface .field textarea{
  min-height: 150px;
  resize: vertical;
}

.growth-surface .form-help{
  margin: 26px 0 18px;
  color: var(--soft);
  font-size: 12px;
}

.growth-surface .form-status{
  min-height: 28px;
  margin: 18px 0 0;
  color: var(--accent-live);
  font-size: 13px;
}

/* Review hub */
.growth-surface .review-shell{
  min-height: 100svh;
  padding: clamp(42px, 7vw, 90px) 0 80px;
}

.growth-surface .review-header{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: start;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}

.growth-surface .review-header h1{
  max-width: 980px;
  margin: 18px 0 20px;
  font-size: clamp(44px, 6vw, 86px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.growth-surface .review-header p{
  max-width: 720px;
  color: var(--muted);
}

.growth-surface .review-status{
  padding: 12px 15px;
  border: 1px solid rgba(103, 200, 129, 0.35);
  color: #87d99c;
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.growth-surface .review-group{
  padding-top: 54px;
}

.growth-surface .review-group__title{
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.growth-surface .review-group__title h2{
  margin: 0;
  font-size: 20px;
  font-weight: 500;
}

.growth-surface .review-group__title span{
  color: var(--soft);
  font-family: var(--display);
  font-size: 9px;
}

.growth-surface .review-links{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1px;
  background: var(--line);
}

.growth-surface .review-link{
  position: relative;
  min-height: 210px;
  padding: 26px;
  background: var(--bg);
  transition: background 0.2s ease;
}

.growth-surface .review-link:hover{
  background: var(--surface);
}

.growth-surface .review-link small{
  color: var(--accent-live);
  font-family: var(--display);
  font-size: 8px;
  letter-spacing: 0.13em;
}

.growth-surface .review-link h3{
  max-width: 350px;
  margin: 60px 0 0;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.25;
}

.growth-surface .review-link::after{
  position: absolute;
  right: 24px;
  bottom: 22px;
  color: var(--soft);
  content: "↗";
}

.growth-surface .review-note{
  margin-top: 42px;
  padding: 22px;
  border-left: 2px solid var(--accent-deep);
  background: var(--surface);
  color: var(--muted);
  font-size: 13px;
}

.growth-surface .motion-ready [data-reveal]{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.growth-surface .motion-ready [data-reveal].is-visible{
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px){
  .growth-surface .primary-nav{
    display: none;
  }

  .growth-surface .nav-cta{
    margin-left: auto;
  }

  .growth-surface .menu-toggle{
    display: block;
  }

  .growth-surface .decision-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .growth-surface .decision-item:nth-child(2){
    border-right: 0;
  }

  .growth-surface .decision-item:nth-child(-n + 2){
    border-bottom: 1px solid var(--line);
  }

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

  .growth-surface .process-step:nth-child(3){
    border-right: 0;
  }

  .growth-surface .process-step:nth-child(-n + 3){
    border-bottom: 1px solid var(--line);
  }

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

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

  .growth-surface .bts-item:nth-child(5n + 1),
.growth-surface .bts-item:nth-child(7n + 3){
    grid-column: span 1;
    aspect-ratio: 4 / 5;
  }

  .growth-surface .contact-layout{
    grid-template-columns: minmax(0, 4fr) minmax(360px, 6fr);
    gap: 52px;
  }
}

@media (max-width: 780px){
  .growth-surface{
    --section: 76px;
  }

  .growth-surface .site-header{
    position: sticky;
  }

  .growth-surface .nav{
    min-height: 72px;
  }

  .growth-surface .brand{
    min-width: 0;
  }

  .growth-surface .nav-cta{
    display: none;
  }

  .growth-surface .mobile-menu{
    inset: 73px 0 0;
  }

  .growth-surface .prototype-flag{
    right: 8px;
    bottom: 8px;
    padding: 6px 8px;
    font-size: 7px;
  }

  .growth-surface .solution-hero{
    min-height: calc(100svh - 72px);
  }

  .growth-surface .solution-hero__content{
    align-self: end;
    padding-block: 42px 62px;
  }

  .growth-surface .solution-hero__media::before{
    background:
      linear-gradient(180deg, rgba(8, 8, 10, 0.5), rgba(8, 8, 10, 0.72) 44%, rgba(8, 8, 10, 0.96)),
      linear-gradient(90deg, rgba(8, 8, 10, 0.48), rgba(8, 8, 10, 0.12));
  }

  .growth-surface .solution-hero__media img{
    object-position: 62% 36% !important;
    filter: saturate(0.82) contrast(1.03) brightness(0.92);
  }

  .growth-surface .breadcrumbs{
    margin-bottom: 32px;
  }

  .growth-surface .solution-hero h1{
    margin: 18px 0 16px;
    font-size: clamp(38px, 11vw, 49px);
    line-height: 1.12;
  }

  .growth-surface .solution-hero__proposition{
    margin-bottom: 12px;
    font-size: 19px;
    line-height: 1.45;
  }

  .growth-surface .solution-hero__lead{
    font-size: 15px;
    line-height: 1.78;
  }

  .growth-surface .hero-actions{
    display: grid;
    margin-top: 29px;
  }

  .growth-surface .button{
    width: 100%;
  }

  .growth-surface .hero-note{
    display: none;
  }

  .growth-surface .decision-item{
    min-height: 150px;
    padding: 23px 19px;
  }

  .growth-surface .decision-item strong{
    font-size: 14px;
  }

  .growth-surface .section-head,
.growth-surface .feature-grid,
.growth-surface .guide-grid,
.growth-surface .contact-band__grid,
.growth-surface .hub-intro,
.growth-surface .family-block,
.growth-surface .about-manifesto,
.growth-surface .contact-layout{
    grid-template-columns: 1fr;
  }

  .growth-surface .section-head{
    gap: 24px;
    margin-bottom: 42px;
  }

  .growth-surface .section-head h2{
    font-size: clamp(38px, 11vw, 50px);
  }

  .growth-surface .feature-grid{
    gap: 34px;
  }

  .growth-surface .feature-copy h3{
    font-size: 29px;
  }

  .growth-surface .evidence-grid{
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .growth-surface .evidence-column:first-child{
    padding-right: 0;
    border-right: 0;
  }

  .growth-surface .evidence-column:last-child{
    padding-left: 0;
  }

  .growth-surface .case-grid{
    grid-template-columns: 1fr;
  }

  .growth-surface .process-grid{
    grid-template-columns: 1fr;
  }

  .growth-surface .process-step,
.growth-surface .process-step:nth-child(3){
    min-height: auto;
    padding: 24px 0 34px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .growth-surface .process-step__number{
    margin-bottom: 36px;
  }

  .growth-surface .guide-sticky,
.growth-surface .family-block__intro,
.growth-surface .contact-aside{
    position: static;
  }

  .growth-surface .guide-sticky h2{
    font-size: 46px;
  }

  .growth-surface .guide-articles article{
    padding-bottom: 34px;
    margin-bottom: 34px;
  }

  .growth-surface .related-grid{
    grid-template-columns: 1fr;
  }

  .growth-surface .related-card{
    min-height: 200px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .growth-surface .contact-band h2{
    font-size: clamp(47px, 13vw, 64px);
  }

  .growth-surface .footer-grid{
    grid-template-columns: 1fr;
  }

  .growth-surface .footer-meta{
    text-align: left;
  }

  .growth-surface .page-hero{
    min-height: calc(100svh - 72px);
  }

  .growth-surface .page-hero--type,
.growth-surface .page-hero--media{
    align-items: end;
    padding-block: 70px;
  }

  .growth-surface .page-hero h1{
    font-size: clamp(48px, 14vw, 72px);
    line-height: 1;
  }

  .growth-surface .page-hero__media::after{
    background: linear-gradient(180deg, rgba(8, 8, 10, 0.42), rgba(8, 8, 10, 0.94));
  }

  .growth-surface .hub-intro{
    gap: 16px;
  }

  .growth-surface .hub-intro__copy{
    padding-top: 12px;
    font-size: 16px;
  }

  .growth-surface .family-block{
    gap: 30px;
  }

  .growth-surface .solution-card{
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 12px;
    min-height: 112px;
  }

  .growth-surface .solution-card p{
    display: none;
  }

  .growth-surface .solution-card__number{
    padding-left: 6px;
  }

  .growth-surface .solution-card__arrow{
    padding-right: 6px;
  }

  .growth-surface .selection-grid,
.growth-surface .value-grid,
.growth-surface .studio-paths{
    grid-template-columns: 1fr;
  }

  .growth-surface .selection-step,
.growth-surface .value-item,
.growth-surface .studio-path{
    min-height: 245px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .growth-surface .team-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .growth-surface .team-card:nth-child(3n + 1){
    transform: none;
  }

  .growth-surface .studio-zones{
    grid-template-columns: 1fr;
  }

  .growth-surface .studio-shot,
.growth-surface .studio-shot:nth-child(n){
    grid-column: auto;
    min-height: 0;
    aspect-ratio: 16 / 11;
  }

  .growth-surface .bts-hero-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .growth-surface .bts-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .growth-surface .contact-layout{
    gap: 48px;
  }

  .growth-surface .project-form{
    padding: 26px 20px;
  }

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

  .growth-surface .field--wide{
    grid-column: auto;
  }

  .growth-surface .review-header{
    grid-template-columns: 1fr;
  }

  .growth-surface .review-links{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 390px){
  .growth-surface .decision-item{
    min-height: 146px;
    padding: 21px 16px;
  }

  .growth-surface .decision-item span{
    font-size: 8px;
  }

  .growth-surface .decision-item strong{
    font-size: 13px;
  }

  .growth-surface .team-card__body{
    min-height: 82px;
    padding: 14px;
  }

  .growth-surface .bts-grid{
    grid-template-columns: 1fr;
  }
}

@media (min-width: 900px) and (max-height: 760px){
  .growth-surface .solution-hero{
    min-height: 640px;
  }

  .growth-surface .solution-hero__content{
    padding-block: 48px;
  }

  .growth-surface .breadcrumbs{
    margin-bottom: 34px;
  }

  .growth-surface .solution-hero h1{
    font-size: clamp(45px, 4.8vw, 68px);
  }

  .growth-surface .hero-actions{
    margin-top: 26px;
  }

  .growth-surface .decision-item{
    min-height: 126px;
    padding-block: 22px;
  }
}

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

  .growth-surface *,
.growth-surface *::before,
.growth-surface *::after{
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .growth-surface .motion-ready [data-reveal]{
    opacity: 1;
    transform: none;
  }
}

/* Project tools, growth entry and local production worksheet */
.growth-surface .sr-only{
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.growth-surface .footer-suite-grid{
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) minmax(130px, 0.58fr) minmax(230px, 1.12fr) minmax(280px, 1fr);
  gap: clamp(28px, 3.2vw, 52px);
  padding: 44px 0 52px;
  align-items: start;
}

.growth-surface .footer-suite-brand .footer-brand{
  display: inline-flex;
  align-items: baseline;
  gap: 16px;
  font-size: 14px;
  letter-spacing: 0.18em;
}

.growth-surface .footer-suite-brand .footer-brand span{
  color: var(--soft);
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.24em;
}

.growth-surface .footer-suite-brand > p,
.growth-surface .footer-suite-news > p{
  max-width: 390px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.growth-surface .footer-contact-list{
  display: grid;
  gap: 8px;
  margin: 28px 0 0;
}

.growth-surface .footer-contact-list div{
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
}

.growth-surface .footer-contact-list dt{
  color: var(--accent-live);
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.2em;
}

.growth-surface .footer-contact-list dd{
  min-width: 0;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  overflow-wrap: anywhere;
}

.growth-surface .footer-heading{
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.22em;
}

.growth-surface .footer-suite-links nav{
  display: grid;
  gap: 9px;
  margin-top: 21px;
}

.growth-surface .footer-suite-links nav a{
  min-height: 28px;
  color: var(--muted);
  font-size: 14px;
  transition: color 0.2s ease;
}

.growth-surface .footer-suite-links nav a:hover{
  color: var(--ink);
}

.growth-surface .footer-heading--link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.18s ease;
}

.growth-surface .footer-heading--link span{
  color: var(--accent-live);
  font-size: 11px;
  letter-spacing: 0;
}

.growth-surface .footer-heading--link:hover,
.growth-surface .footer-heading--link:focus-visible{
  color: var(--accent-live);
}

.growth-surface .footer-link-group + .footer-link-group{
  margin-top: 27px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.growth-surface .footer-utility-links{
  display: grid;
  gap: 5px;
  margin-top: 17px;
}

.growth-surface .footer-utility-links a{
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 7px;
  min-height: 24px;
  align-items: baseline;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
  transition: color 0.18s ease, transform 0.18s ease;
}

.growth-surface .footer-utility-links a:hover,
.growth-surface .footer-utility-links a:focus-visible{
  color: var(--ink);
  transform: translateX(3px);
}

.growth-surface .footer-utility-index{
  color: var(--accent-live);
  font-family: var(--display);
  font-size: 7px;
  letter-spacing: 0.1em;
}

.growth-surface .footer-utility-links--services a{
  font-size: 11.5px;
}

.growth-surface .footer-subscribe{
  display: grid;
  grid-template-columns: 1fr 64px;
  max-width: 420px;
  margin-top: 26px;
  border: 1px solid var(--line-strong);
}

.growth-surface .footer-subscribe input{
  min-width: 0;
  padding: 17px 19px;
  border: 0;
  outline: 0;
  background: transparent;
}

.growth-surface .footer-subscribe button{
  background: var(--accent-deep);
  color: #fff;
  cursor: pointer;
}

.growth-surface .footer-subscribe-note{
  margin-top: 10px !important;
  color: var(--soft) !important;
  font-size: 11px !important;
}

.growth-surface .footer-social-text{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
  color: var(--soft);
  font-family: var(--display);
  font-size: 7px;
  letter-spacing: 0.13em;
}

.growth-surface .growth-entry{
  padding-block: clamp(68px, 7vw, 108px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #09090b;
}

.growth-surface .growth-entry__head{
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(290px, 4fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: end;
  margin-bottom: clamp(36px, 4.6vw, 60px);
}

.growth-surface .growth-entry__head h2{
  max-width: 900px;
  margin: 16px 0 0;
  font-size: clamp(44px, 5.3vw, 76px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.06;
}

.growth-surface .growth-entry__head > div:last-child p{
  max-width: 460px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.growth-surface .growth-entry__head > div:last-child a{
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-bottom: 1px solid rgba(237, 86, 61, 0.45);
  color: var(--accent-live);
  font-size: 13px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.growth-surface .growth-entry__head > div:last-child a:hover,
.growth-surface .growth-entry__head > div:last-child a:focus-visible{
  border-color: currentColor;
  color: var(--ink);
}

.growth-surface .growth-entry__grid{
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 1px;
  background: var(--line);
}

.growth-surface .growth-entry__card{
  position: relative;
  display: flex;
  grid-column: span 3;
  min-width: 0;
  min-height: 210px;
  flex-direction: column;
  padding: clamp(20px, 2.2vw, 30px);
  background: #0d0d10;
  transition: background 0.22s ease, color 0.22s ease;
}

.growth-surface .growth-entry__card::after{
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.growth-surface .growth-entry__card:hover::after,
.growth-surface .growth-entry__card:focus-visible::after{
  transform: scaleX(1);
}

.growth-surface .growth-entry__card:hover{
  background: #151518;
}

.growth-surface .growth-entry__card:focus-visible{
  z-index: 2;
  outline-offset: -3px;
}

.growth-surface .growth-entry__card--01{
  grid-column: span 6;
  grid-row: span 2;
  min-height: 421px;
  background: var(--paper);
  color: var(--ink-dark);
}

.growth-surface .growth-entry__card--01:hover{
  background: var(--paper-2);
}

.growth-surface .growth-entry__card--06,
.growth-surface .growth-entry__card--07,
.growth-surface .growth-entry__card--08{
  grid-column: span 4;
}

.growth-surface .growth-entry__number{
  color: transparent;
  font-family: var(--display);
  font-size: clamp(48px, 5.2vw, 76px);
  letter-spacing: -0.06em;
  line-height: 0.9;
  -webkit-text-stroke: 1px var(--line-strong);
}

.growth-surface .growth-entry__card--01 .growth-entry__number{
  font-size: clamp(84px, 9.5vw, 138px);
  -webkit-text-stroke-color: rgba(17, 17, 19, 0.16);
}

.growth-surface .growth-entry__card small{
  display: block;
  margin-top: auto;
  color: var(--accent-live);
  font-family: var(--display);
  font-size: 8px;
  letter-spacing: 0.17em;
  line-height: 1.5;
}

.growth-surface .growth-entry__card h3{
  max-width: 470px;
  margin: 11px 0 0;
  font-size: clamp(20px, 2vw, 29px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.growth-surface .growth-entry__card--01 h3{
  max-width: 560px;
  font-size: clamp(32px, 3.3vw, 48px);
  line-height: 1.12;
}

.growth-surface .growth-entry__card p{
  max-width: 420px;
  margin: 11px 32px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.growth-surface .growth-entry__card--01 p{
  max-width: 520px;
  font-size: 14px;
}

.growth-surface .growth-entry__card--01 p{
  color: rgba(17, 17, 19, 0.65);
}

.growth-surface .growth-entry__card i{
  position: absolute;
  right: 22px;
  bottom: 20px;
  color: var(--accent-live);
  font-style: normal;
  transition: transform 0.25s var(--ease);
}

.growth-surface .growth-entry__card:hover i{
  transform: translate(4px, -4px);
}

.growth-surface .tool-hero,
.growth-surface .offer-hero,
.growth-surface .home-preview-hero{
  position: relative;
  display: grid;
  min-height: min(590px, calc(100svh - 80px));
  align-items: end;
  padding-block: clamp(74px, 8vw, 112px);
  border-bottom: 1px solid var(--line);
  background: #08080a;
}

.growth-surface .tool-hero::after,
.growth-surface .offer-hero::after,
.growth-surface .home-preview-hero::after{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 58%, rgba(142, 26, 12, 0.1)),
    repeating-linear-gradient(90deg, transparent 0, transparent calc(8.333% - 1px), rgba(255, 255, 255, 0.025) calc(8.333% - 1px), rgba(255, 255, 255, 0.025) 8.333%);
  content: "";
  pointer-events: none;
}

.growth-surface .tool-hero__grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 8.7fr) minmax(190px, 3.3fr);
  gap: clamp(38px, 5.5vw, 82px);
  align-items: end;
}

.growth-surface .tool-hero .breadcrumbs{
  margin-bottom: clamp(36px, 4.8vw, 68px);
}

.growth-surface .tool-hero h1,
.growth-surface .offer-hero h1,
.growth-surface .home-preview-hero h1{
  max-width: 1040px;
  margin: 18px 0 22px;
  font-size: clamp(48px, 6.25vw, 92px);
  font-weight: 400;
  letter-spacing: -0.062em;
  line-height: 1.02;
}

.growth-surface .tool-hero__grid > div:first-child > p:last-of-type,
.growth-surface .offer-hero .container > p,
.growth-surface .home-preview-hero .container > p{
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.82;
}

.growth-surface .tool-hero .button{
  margin-top: 24px;
}

.growth-surface .tool-hero__stamp{
  display: grid;
  align-self: stretch;
  align-content: space-between;
  padding: 8px 0 4px 26px;
  border-left: 1px solid var(--line);
}

.growth-surface .tool-hero__stamp span{
  color: transparent;
  font-family: var(--display);
  font-size: clamp(76px, 8.5vw, 126px);
  letter-spacing: -0.08em;
  line-height: 0.8;
  -webkit-text-stroke: 1px rgba(244, 243, 241, 0.17);
}

.growth-surface .tool-hero__stamp small{
  color: var(--soft);
  font-family: var(--display);
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 8px;
  letter-spacing: 0.17em;
  line-height: 1.75;
}

.growth-surface .tool-workspace{
  padding-block: clamp(64px, 6.6vw, 104px);
  background: #09090b;
}

.growth-surface .tool-workspace__grid{
  display: grid;
  grid-template-columns: minmax(0, 7.25fr) minmax(360px, 4.75fr);
  gap: clamp(22px, 2.8vw, 40px);
  align-items: start;
}

.growth-surface[data-page="growth-tool-brief-budget"] .tool-workspace__grid{
  grid-template-columns: minmax(0, 1fr);
}

.growth-surface[data-page="growth-tool-brief-budget"] .tool-result{
  position: relative;
  top: auto;
  width: 100%;
}

.growth-surface .tool-form{
  min-width: 0;
  padding: clamp(30px, 3.6vw, 50px);
  border: 1px solid var(--line);
  border-top: 3px solid rgba(244, 243, 241, 0.34);
  background: #0e0e11;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
}

.growth-surface .tool-form__head{
  max-width: 720px;
  margin-bottom: 38px;
}

.growth-surface .tool-form__head h2{
  max-width: 650px;
  margin: 16px 0 14px;
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.09;
}

.growth-surface .tool-form__head > p:last-child,
.growth-surface .tool-inline-note{
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.growth-surface .tool-fieldset{
  min-width: 0;
  margin: 0 0 16px;
  padding: 24px 24px 30px;
  border: 1px solid var(--line);
  background: #0b0b0d;
}

.growth-surface .tool-fieldset legend{
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 0 13px 0 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1.5;
}

.growth-surface .tool-fieldset legend span{
  display: inline-flex;
  width: 27px;
  height: 27px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(237, 86, 61, 0.46);
  color: var(--accent-live);
  font-family: var(--display);
  font-size: 8px;
  letter-spacing: 0.14em;
}

.growth-surface .tool-form-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 24px;
}

.growth-surface .tool-field{
  display: grid;
  gap: 7px;
  min-width: 0;
}

.growth-surface .tool-field--wide{
  margin-top: 22px;
}

.growth-surface .tool-field > span,
.growth-surface .tool-question__label{
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.035em;
  line-height: 1.55;
}

.growth-surface .tool-field input,
.growth-surface .tool-field select,
.growth-surface .rfp-row input{
  width: 100%;
  min-height: 52px;
  padding: 11px 8px;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.growth-surface .tool-field input:hover,
.growth-surface .tool-field select:hover,
.growth-surface .rfp-row input:hover{
  border-bottom-color: rgba(244, 243, 241, 0.52);
}

.growth-surface .tool-field input:focus,
.growth-surface .tool-field select:focus,
.growth-surface .rfp-row input:focus{
  border-bottom-color: var(--accent-live);
  background: rgba(244, 243, 241, 0.035);
  box-shadow: inset 0 -1px 0 var(--accent-live);
}

.growth-surface .tool-field input:focus-visible,
.growth-surface .tool-field select:focus-visible,
.growth-surface .rfp-row input:focus-visible{
  outline: 1px solid rgba(237, 86, 61, 0.78);
  outline-offset: 3px;
}

.growth-surface .tool-field input:user-invalid,
.growth-surface .tool-field select:user-invalid{
  border-bottom-color: var(--accent-live);
}

.growth-surface .tool-field select option{
  background: var(--surface);
}

.growth-surface .tool-question{
  margin-top: 24px;
}

.growth-surface .tool-choice-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin-top: 11px;
}

.growth-surface .tool-choice-grid--platforms{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.growth-surface .tool-choice{
  position: relative;
  min-width: 0;
}

.growth-surface .tool-choice input{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.growth-surface .tool-choice span{
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  background: rgba(244, 243, 241, 0.018);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.growth-surface .tool-choice span::before{
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border: 1px solid var(--line-strong);
  content: "";
}

.growth-surface .tool-choice:hover span{
  border-color: rgba(244, 243, 241, 0.38);
  background: rgba(244, 243, 241, 0.04);
  color: var(--ink);
}

.growth-surface .tool-choice input:checked + span{
  border-color: var(--accent-live);
  background: rgba(142, 26, 12, 0.16);
  color: var(--ink);
}

.growth-surface .tool-choice input:checked + span::before{
  border-color: var(--accent-live);
  background: var(--accent-live);
  box-shadow: inset 0 0 0 2px #0b0b0d;
}

.growth-surface .tool-choice input:focus-visible + span{
  outline: 2px solid var(--accent-live);
  outline-offset: 3px;
}

.growth-surface .internal-cost-panel{
  margin: 8px 0 28px;
  padding: 0 24px 26px;
  border: 1px solid rgba(216, 65, 42, 0.42);
  background: rgba(142, 26, 12, 0.065);
  box-shadow: inset 3px 0 0 rgba(216, 65, 42, 0.62);
}

.growth-surface .internal-cost-panel summary{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  min-height: 58px;
  padding: 18px 0;
  color: var(--accent-live);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
  cursor: pointer;
  list-style: none;
}

.growth-surface .internal-cost-panel summary::-webkit-details-marker{
  display: none;
}

.growth-surface .internal-cost-panel summary::after{
  font-family: var(--display);
  font-size: 16px;
  content: "+";
}

.growth-surface .internal-cost-panel[open] summary::after{
  content: "−";
}

.growth-surface .internal-cost-panel > p{
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.72;
}

.growth-surface .pricing-rule-strip{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 26px;
  border-block: 1px solid var(--line);
  background: transparent;
}

.growth-surface .pricing-rule-strip span{
  display: grid;
  min-height: 68px;
  align-content: center;
  gap: 3px;
  padding: 12px;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-size: 10px;
}

.growth-surface .pricing-rule-strip span:last-child{
  border-right: 0;
}

.growth-surface .pricing-rule-strip strong{
  color: var(--ink);
  font-family: var(--display);
  font-size: 16px;
}

.growth-surface .quote-builder{
  overflow: hidden;
}

.growth-surface .quote-builder__intro{
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(230px, 0.85fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: end;
  padding: 8px 0 28px;
  border-bottom: 1px solid var(--line-strong);
}

.growth-surface .quote-builder__intro h3{
  margin: 13px 0 0;
  font-size: clamp(27px, 3vw, 40px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.growth-surface .quote-builder__intro > p{
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.growth-surface .quote-category-list{
  border-bottom: 1px solid var(--line-strong);
}

.growth-surface .quote-category{
  border-top: 1px solid var(--line);
}

.growth-surface .quote-category:first-child{
  border-top: 0;
}

.growth-surface .quote-category > summary{
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto 18px;
  gap: 14px;
  min-height: 74px;
  align-items: center;
  padding: 14px 0;
  cursor: pointer;
  list-style: none;
}

.growth-surface .quote-category > summary::-webkit-details-marker{
  display: none;
}

.growth-surface .quote-category > summary::after{
  color: var(--accent-live);
  font-family: var(--display);
  font-size: 17px;
  content: "+";
}

.growth-surface .quote-category[open] > summary::after{
  content: "−";
}

.growth-surface .quote-category > summary > span{
  color: var(--accent-live);
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.growth-surface .quote-category > summary div{
  min-width: 0;
}

.growth-surface .quote-category > summary strong,
.growth-surface .quote-category > summary small{
  display: block;
}

.growth-surface .quote-category > summary strong{
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}

.growth-surface .quote-category > summary small{
  margin-top: 2px;
  color: var(--soft);
  font-family: var(--display);
  font-size: 7px;
  letter-spacing: 0.08em;
  line-height: 1.45;
}

.growth-surface .quote-category > summary b{
  color: var(--muted);
  font-family: var(--display);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  font-weight: 400;
  white-space: nowrap;
}

.growth-surface .quote-rate-table{
  border-top: 1px solid var(--line);
}

.growth-surface .quote-rate-table__head,
.growth-surface .quote-rate-row{
  display: grid;
  grid-template-columns: minmax(250px, 1.8fr) minmax(108px, 0.65fr) 142px minmax(102px, 0.62fr);
  column-gap: 16px;
  align-items: center;
}

.growth-surface .quote-rate-table__head{
  min-height: 40px;
  padding-inline: 12px;
  background: rgba(244, 243, 241, 0.035);
  color: var(--soft);
  font-family: var(--display);
  font-size: 7px;
  letter-spacing: 0.09em;
}

.growth-surface .quote-rate-table__head span:nth-child(n + 2){
  text-align: right;
}

.growth-surface .quote-rate-table__head span:nth-child(3){
  text-align: center;
}

.growth-surface .quote-rate-row{
  min-height: 116px;
  padding: 17px 12px;
  border-top: 1px solid var(--line);
  transition: background 0.18s ease, box-shadow 0.18s ease;
}

.growth-surface .quote-rate-row[data-selected="true"]{
  background: rgba(142, 26, 12, 0.14);
  box-shadow: inset 3px 0 0 var(--accent-live);
}

.growth-surface .quote-rate-row__service,
.growth-surface .quote-rate-row__price,
.growth-surface .quote-rate-row__quantity,
.growth-surface .quote-rate-row__amount{
  min-width: 0;
}

.growth-surface .quote-rate-row__service label strong,
.growth-surface .quote-rate-row__service label small{
  display: block;
}

.growth-surface .quote-rate-row__service label strong{
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
}

.growth-surface .quote-rate-row__service label small{
  margin-top: 3px;
  color: var(--soft);
  font-family: var(--display);
  font-size: 7px;
  letter-spacing: 0.08em;
  line-height: 1.45;
}

.growth-surface .quote-rate-row__service p,
.growth-surface .quote-rate-row__service em{
  display: block;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 10px;
  font-style: normal;
  line-height: 1.55;
}

.growth-surface .quote-rate-row__service em{
  color: var(--accent-live);
}

.growth-surface .quote-rate-row__price,
.growth-surface .quote-rate-row__amount{
  text-align: right;
}

.growth-surface .quote-rate-row__price > span,
.growth-surface .quote-rate-row__quantity > span,
.growth-surface .quote-rate-row__amount > span{
  display: block;
  margin-bottom: 5px;
  color: var(--soft);
  font-size: 8px;
}

.growth-surface .quote-rate-row__price strong,
.growth-surface .quote-rate-row__amount strong{
  color: var(--ink);
  font-family: var(--display);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  font-weight: 400;
  white-space: nowrap;
}

.growth-surface .quote-rate-row__price small{
  display: block;
  color: var(--soft);
  font-size: 8px;
}

.growth-surface .quote-rate-row__quantity > span{
  text-align: center;
}

.growth-surface .quote-quantity-control{
  display: grid;
  grid-template-columns: 40px 50px 40px;
  justify-content: center;
  border: 1px solid var(--line-strong);
}

.growth-surface .quote-quantity-control button,
.growth-surface .quote-quantity-control input{
  min-width: 0;
  min-height: 40px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  text-align: center;
}

.growth-surface .quote-quantity-control button{
  cursor: pointer;
  font-size: 16px;
  transition: background 0.18s ease, color 0.18s ease;
}

.growth-surface .quote-quantity-control button:hover,
.growth-surface .quote-quantity-control button:focus-visible{
  background: var(--accent-deep);
  color: #fff;
}

.growth-surface .quote-quantity-control input{
  border-inline: 1px solid var(--line);
  font-size: 16px;
  font-variant-numeric: tabular-nums;
  appearance: textfield;
}

.growth-surface .quote-quantity-control input::-webkit-inner-spin-button,
.growth-surface .quote-quantity-control input::-webkit-outer-spin-button{
  margin: 0;
  appearance: none;
}

.growth-surface .quote-summary{
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 0.75fr) minmax(0, 1.4fr);
  margin-top: 28px;
  border-block: 1px solid var(--line-strong);
}

.growth-surface .quote-summary > div{
  display: grid;
  min-height: 82px;
  align-content: center;
  gap: 5px;
  padding: 14px 18px;
  border-right: 1px solid var(--line);
}

.growth-surface .quote-summary > div:last-child{
  border-right: 0;
}

.growth-surface .quote-summary span{
  color: var(--soft);
  font-size: 9px;
}

.growth-surface .quote-summary strong{
  color: var(--ink);
  font-family: var(--display);
  font-size: 15px;
  font-variant-numeric: tabular-nums;
  font-weight: 400;
}

.growth-surface .quote-summary__total{
  background: rgba(142, 26, 12, 0.14);
  box-shadow: inset 3px 0 0 var(--accent-live);
}

.growth-surface .quote-summary__total strong{
  color: #fff;
  font-size: clamp(22px, 2.5vw, 34px);
  letter-spacing: -0.035em;
}

.growth-surface .quote-builder__note{
  margin: 18px 0 0;
  color: var(--soft);
  font-size: 10px;
  line-height: 1.65;
}

.growth-surface .pricing-live-preview{
  margin: 18px 0 0 !important;
  padding: 12px 14px;
  border-left: 2px solid var(--accent-live);
  background: rgba(8, 8, 10, 0.24);
}

.growth-surface .pricing-live-preview[data-ready="true"]{
  color: #9ee0ae;
}

.growth-surface .tool-form__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.growth-surface .tool-form .tool-submit{
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink-dark);
  box-shadow: inset 0 -2px 0 rgba(17, 17, 19, 0.12);
}

.growth-surface .tool-form .tool-submit:hover,
.growth-surface .tool-form .tool-submit:focus-visible{
  border-color: var(--accent-live);
  background: var(--accent-deep);
  color: #fff;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.2);
}

.growth-surface .tool-form .tool-submit:active{
  transform: translateY(1px);
}

.growth-surface .tool-form .tool-submit:disabled{
  cursor: not-allowed;
  opacity: 0.46;
}

.growth-surface .tool-reset{
  min-height: 48px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line-strong);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: border-color 0.18s ease, color 0.18s ease;
}

.growth-surface .tool-reset:hover,
.growth-surface .tool-reset:focus-visible{
  border-bottom-color: var(--ink);
  color: var(--ink);
}

.growth-surface .tool-form .form-status:not(:empty){
  min-height: 0;
  margin-top: 18px;
  padding: 11px 13px;
  border-left: 2px solid var(--accent-live);
  background: rgba(142, 26, 12, 0.1);
  color: var(--ink);
  font-size: 12px;
  line-height: 1.55;
}

.growth-surface .tool-result{
  position: sticky;
  top: 96px;
  min-width: 0;
  overflow: hidden;
  padding: clamp(28px, 3.2vw, 44px);
  border-top: 4px solid var(--accent-deep);
  background: #f2efe8;
  color: var(--ink-dark);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  isolation: isolate;
}

.growth-surface .tool-result::before{
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 17px;
  width: 1px;
  background: rgba(142, 26, 12, 0.14);
  content: "";
}

.growth-surface .tool-result.has-result{
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.growth-surface .tool-result__kicker,
.growth-surface .tool-result__label{
  color: var(--accent-deep);
  font-family: var(--display);
  font-size: 8px;
  letter-spacing: 0.17em;
  line-height: 1.55;
}

.growth-surface .tool-result__kicker{
  display: flex;
  min-height: 34px;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line-dark);
}

.growth-surface .tool-result.has-result .tool-result__kicker::after{
  width: 7px;
  height: 7px;
  margin-top: 2px;
  background: var(--accent-deep);
  content: "";
}

.growth-surface .tool-result__body{
  margin-top: clamp(40px, 5vw, 66px);
  outline: 0;
}

.growth-surface .tool-result__body strong{
  display: block;
  margin-top: 14px;
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.growth-surface .tool-result__body > p{
  margin: 18px 0 0;
  color: rgba(17, 17, 19, 0.68);
  font-size: 13px;
  line-height: 1.72;
}

.growth-surface .tool-result__body ul{
  padding: 0;
  margin: 26px 0 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.growth-surface .tool-result__body li{
  position: relative;
  padding: 12px 0 12px 17px;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(17, 17, 19, 0.72);
  font-size: 12px;
  line-height: 1.55;
}

.growth-surface .tool-result__body li::before{
  position: absolute;
  top: 19px;
  left: 1px;
  width: 5px;
  height: 5px;
  border: 1px solid var(--accent-deep);
  content: "";
}

.growth-surface .tool-result__assumption{
  margin-top: 22px !important;
  padding: 11px 0 11px 14px;
  border-left: 2px solid var(--accent-deep);
  background: rgba(142, 26, 12, 0.045);
  font-size: 11px !important;
  line-height: 1.6 !important;
}

.growth-surface .pricing-breakdown{
  margin: 28px 0 0;
  border-top: 1px solid var(--line-dark);
}

.growth-surface .pricing-breakdown__row{
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: baseline;
  margin: 0;
  padding: 11px 0;
  border-bottom: 1px solid var(--line-dark);
}

.growth-surface .pricing-breakdown__row dt,
.growth-surface .pricing-breakdown__row dd{
  min-width: 0;
  margin: 0;
}

.growth-surface .pricing-breakdown__row dt{
  color: rgba(17, 17, 19, 0.66);
  font-size: 12px;
  line-height: 1.5;
}

.growth-surface .pricing-breakdown__row dt small{
  display: block;
  margin-top: 2px;
  color: rgba(17, 17, 19, 0.45);
  font-size: 9px;
  line-height: 1.5;
}

.growth-surface .pricing-breakdown__row dd{
  color: var(--ink-dark);
  font-family: var(--display);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  text-align: right;
  white-space: nowrap;
}

.growth-surface .pricing-breakdown__row:nth-last-child(-n + 3){
  background: rgba(142, 26, 12, 0.035);
}

.growth-surface .pricing-breakdown__row:last-child{
  margin-top: 3px;
  padding-block: 16px;
  border-top: 2px solid var(--ink-dark);
  border-bottom-color: var(--ink-dark);
}

.growth-surface .pricing-breakdown__row:last-child dt{
  color: var(--ink-dark);
  font-weight: 600;
}

.growth-surface .pricing-breakdown__row:last-child dd{
  color: var(--accent-deep);
  font-size: clamp(16px, 1.7vw, 22px);
}

.growth-surface .tool-result__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
}

.growth-surface .tool-result__actions button{
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line-dark);
  background: transparent;
  color: var(--ink-dark);
  font-size: 11px;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.growth-surface .tool-result__actions button:hover,
.growth-surface .tool-result__actions button:focus-visible{
  border-color: var(--ink-dark);
  background: var(--ink-dark);
  color: var(--paper);
}

.growth-surface .tool-result__notice{
  margin: 28px 0 0;
  color: rgba(17, 17, 19, 0.5);
  font-size: 10px;
  line-height: 1.62;
}

.growth-surface .case-match-results{
  display: grid;
  gap: 14px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
}

.growth-surface .case-match-item{
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 15px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-dark);
}

.growth-surface .case-match-item img{
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.03);
}

.growth-surface .case-match-item small{
  color: var(--accent-deep);
  font-family: var(--display);
  font-size: 7px;
}

.growth-surface .case-match-item h3{
  margin: 5px 0 0;
  font-size: 15px;
  line-height: 1.35;
}

.growth-surface .case-match-item p,
.growth-surface .case-match-item a{
  margin: 7px 0 0;
  color: rgba(17, 17, 19, 0.62);
  font-size: 11px;
  line-height: 1.5;
}

.growth-surface .case-match-item a{
  display: inline-block;
  color: var(--accent-deep);
}

.growth-surface .tool-method__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line-dark);
}

.growth-surface .tool-method__grid article{
  min-height: 238px;
  padding: 26px clamp(22px, 2.4vw, 34px) 30px;
  border-right: 1px solid var(--line-dark);
}

.growth-surface .tool-method__grid article:last-child{
  border-right: 0;
}

.growth-surface .tool-method__grid span{
  color: var(--accent-deep);
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.growth-surface .tool-method__grid h3{
  margin: 56px 0 12px;
  font-size: clamp(21px, 2vw, 27px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.28;
}

.growth-surface .tool-method__grid p{
  color: rgba(17, 17, 19, 0.66);
  font-size: 13px;
  line-height: 1.72;
}

.growth-surface .tool-method .section-head,
.growth-surface .tool-related .section-head{
  margin-bottom: clamp(38px, 4.5vw, 58px);
}

.growth-surface .tool-method .section-head h2,
.growth-surface .tool-related .section-head h2{
  font-size: clamp(38px, 4vw, 58px);
}

.growth-surface .tool-faq{
  background: #09090b;
}

.growth-surface .tool-faq .guide-grid{
  grid-template-columns: minmax(260px, 4.4fr) minmax(0, 7.6fr);
  gap: clamp(48px, 7vw, 104px);
}

.growth-surface .tool-faq .guide-sticky h2{
  max-width: 540px;
  font-size: clamp(38px, 3.7vw, 56px);
  line-height: 1.06;
}

.growth-surface .tool-faq .faq-list{
  border-top-color: var(--line-strong);
}

.growth-surface .tool-faq .faq-list summary{
  min-height: 78px;
  padding-block: 17px;
  font-size: clamp(16px, 1.45vw, 20px);
  transition: color 0.18s ease;
}

.growth-surface .tool-faq .faq-list summary:hover,
.growth-surface .tool-faq .faq-list summary:focus-visible{
  color: var(--accent-live);
}

.growth-surface .tool-faq .faq-list details[open] summary{
  color: var(--ink);
}

.growth-surface .tool-faq .faq-list p{
  padding-bottom: 26px;
  font-size: 13px;
  line-height: 1.75;
}

.growth-surface .tool-related{
  padding-block: clamp(68px, 6.5vw, 98px);
}

.growth-surface .tool-related .related-card{
  min-height: 220px;
  padding: 25px;
}

.growth-surface .tool-related .related-card h3{
  margin-top: 52px;
  font-size: clamp(21px, 1.8vw, 26px);
}

.growth-surface .tool-related .related-card:hover,
.growth-surface .tool-related .related-card:focus-visible{
  background: #1a1a1e;
}

.growth-surface .rfp-table{
  margin-top: 24px;
  border: 1px solid var(--line);
}

.growth-surface .rfp-row{
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 90px 100px 100px;
  gap: 12px;
  align-items: center;
  min-height: 64px;
  padding-inline: 14px;
  border-bottom: 1px solid var(--line);
}

.growth-surface .rfp-row:last-child{
  border-bottom: 0;
}

.growth-surface .rfp-row--head{
  min-height: 46px;
  background: rgba(244, 243, 241, 0.04);
  color: var(--soft);
  font-size: 9px;
  font-family: var(--display);
  letter-spacing: 0.08em;
}

.growth-surface .rfp-row label{
  font-size: 12px;
  line-height: 1.5;
}

.growth-surface .rfp-row input{
  min-width: 0;
  min-height: 44px;
  padding-inline: 4px;
  font-variant-numeric: tabular-nums;
  text-align: center;
}

.growth-surface .rfp-weight-status{
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin-top: 15px;
  padding: 6px 10px;
  border-left: 2px solid var(--accent-live);
  background: rgba(142, 26, 12, 0.1);
  color: var(--muted);
  font-size: 12px;
}

.growth-surface .rfp-weight-status[data-valid="true"]{
  border-left-color: #8bd29d;
  background: rgba(139, 210, 157, 0.08);
  color: #a7dfb5;
}

.growth-surface .home-preview-hero .container,
.growth-surface .offer-hero .container{
  position: relative;
  z-index: 1;
}

.growth-surface .home-preview-context .case-grid{
  padding-inline: var(--gutter);
}

.growth-surface .offer-rail{
  padding-block: 48px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.growth-surface .offer-rail .container{
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
}

.growth-surface .offer-rail .container > p{
  color: var(--accent-live);
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.15em;
}

.growth-surface .offer-rail .container > div{
  border-top: 1px solid var(--line);
}

.growth-surface .offer-rail a{
  display: grid;
  grid-template-columns: minmax(170px, 0.6fr) minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  min-height: 88px;
  border-bottom: 1px solid var(--line);
}

.growth-surface .offer-rail span{
  color: var(--soft);
  font-family: var(--display);
  font-size: 8px;
}

.growth-surface .offer-rail strong{
  font-size: 21px;
  font-weight: 500;
}

.growth-surface .offer-rail i{
  color: var(--accent-live);
  font-style: normal;
}

.growth-surface .offer-hero .container > strong{
  display: block;
  margin-bottom: 18px;
  color: var(--accent-live);
  font-size: 19px;
  font-weight: 500;
}

.growth-surface .offer-hero .hero-actions{
  margin-top: 34px;
}

.growth-surface .offer-deliverables{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
}

.growth-surface .offer-deliverables article{
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  min-height: 150px;
  padding: 28px 24px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.growth-surface .offer-deliverables article:nth-child(2n){
  border-right: 0;
}

.growth-surface .offer-deliverables span{
  color: var(--accent-deep);
  font-family: var(--display);
  font-size: 9px;
}

.growth-surface .offer-deliverables h3{
  margin: auto 0 0;
  font-size: 23px;
}

.growth-surface .client-hub__head{
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: start;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.growth-surface .client-hub__head h2{
  margin: 18px 0 8px;
  font-size: clamp(34px, 4.5vw, 62px);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.growth-surface .client-hub__head p:last-child{
  color: var(--muted);
}

.growth-surface .client-status{
  padding: 10px 13px;
  border: 1px solid rgba(139, 210, 157, 0.38);
  color: #8bd29d;
  font-family: var(--display);
  font-size: 8px;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.growth-surface .client-tabs{
  display: flex;
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
}

.growth-surface .client-tabs button{
  min-width: 120px;
  min-height: 52px;
  padding: 0 22px;
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.growth-surface .client-tabs button:hover,
.growth-surface .client-tabs button:focus-visible{
  background: var(--surface-2);
  color: var(--ink);
}

.growth-surface .client-tabs button[aria-selected="true"]{
  background: var(--paper);
  color: var(--ink-dark);
}

.growth-surface .client-panels{
  padding: 34px;
  border: 1px solid var(--line);
  border-top: 0;
  background: var(--surface);
}

.growth-surface .client-milestones{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.growth-surface .client-milestones article{
  display: flex;
  min-height: 220px;
  flex-direction: column;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.growth-surface .client-milestones article:last-child{
  border-right: 0;
}

.growth-surface .client-milestones article > span{
  color: var(--accent-live);
  font-family: var(--display);
  font-size: 9px;
}

.growth-surface .client-milestones h3{
  margin: auto 0 10px;
  font-size: 18px;
}

.growth-surface .client-milestones time,
.growth-surface .client-milestones small{
  color: var(--soft);
  font-size: 11px;
}

.growth-surface .client-milestones article[data-state="active"]{
  background: rgba(142, 26, 12, 0.17);
  box-shadow: inset 0 3px 0 var(--accent-live);
}

.growth-surface .client-list{
  border-top: 1px solid var(--line);
}

.growth-surface .client-list article{
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  min-height: 110px;
  border-bottom: 1px solid var(--line);
}

.growth-surface .client-list article > span{
  color: var(--accent-live);
  font-family: var(--display);
  font-size: 9px;
}

.growth-surface .client-list h3,
.growth-surface .client-list p{
  margin: 0;
}

.growth-surface .client-list p{
  color: var(--muted);
  font-size: 12px;
}

.growth-surface .client-list strong{
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.growth-surface .client-demo-note{
  margin-top: 34px;
  padding: 18px 20px;
  border-left: 2px solid var(--accent);
  background: var(--surface);
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 1080px){
  .growth-surface .footer-suite-grid{
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 48px clamp(36px, 6vw, 72px);
  }

  .growth-surface .footer-suite-news{
    grid-column: auto;
  }

  .growth-surface .growth-entry__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .growth-surface .growth-entry__card,
.growth-surface .growth-entry__card--06,
.growth-surface .growth-entry__card--07,
.growth-surface .growth-entry__card--08{
    grid-column: span 1;
    grid-row: auto;
  }

  .growth-surface .growth-entry__card--01{
    grid-column: span 2;
    min-height: 310px;
  }

  .growth-surface .growth-entry__card:not(.growth-entry__card--01){
    min-height: 188px;
  }

  .growth-surface .tool-workspace__grid{
    grid-template-columns: minmax(0, 3fr) minmax(310px, 2fr);
    gap: 20px;
  }

  .growth-surface .tool-form{
    padding-inline: clamp(26px, 3vw, 36px);
  }

  .growth-surface .tool-choice-grid--platforms{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .growth-surface .client-milestones{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .growth-surface .client-milestones article:nth-child(3){
    border-right: 0;
  }
}

@media (max-width: 780px){
  .growth-surface .growth-entry__head,
.growth-surface .tool-hero__grid,
.growth-surface .tool-workspace__grid,
.growth-surface .tool-faq .guide-grid,
.growth-surface .offer-rail .container{
    grid-template-columns: 1fr;
  }

  .growth-surface .footer-suite-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 28px;
    padding-block: 40px 48px;
  }

  .growth-surface .footer-suite-brand,
.growth-surface .footer-suite-news{
    grid-column: 1 / -1;
  }

  .growth-surface .footer-suite-brand > p,
.growth-surface .footer-suite-news > p{
    max-width: 600px;
  }

  .growth-surface .footer-suite-growth{
    min-width: 0;
  }

  .growth-surface .title-line{
    width: auto;
  }

  .growth-surface .growth-entry__head{
    gap: 28px;
    margin-bottom: 32px;
  }

  .growth-surface .growth-entry__head h2{
    font-size: clamp(38px, 10.8vw, 54px);
  }

  .growth-surface .growth-entry{
    padding-block: 56px;
  }

  .growth-surface .growth-entry__grid{
    grid-template-columns: 1fr;
  }

  .growth-surface .growth-entry__card,
.growth-surface .growth-entry__card--01,
.growth-surface .growth-entry__card--06,
.growth-surface .growth-entry__card--07,
.growth-surface .growth-entry__card--08{
    grid-column: auto;
    min-height: 116px;
    padding: 18px;
  }

  .growth-surface .growth-entry__card--01{
    min-height: 238px;
  }

  .growth-surface .growth-entry__card:not(.growth-entry__card--01) .growth-entry__number{
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 38px;
  }

  .growth-surface .growth-entry__card:not(.growth-entry__card--01) small{
    margin-top: 0;
  }

  .growth-surface .growth-entry__card:not(.growth-entry__card--01) h3{
    margin-top: auto;
    padding-right: 46px;
    font-size: clamp(19px, 5.8vw, 24px);
  }

  .growth-surface .growth-entry__card:not(.growth-entry__card--01) p{
    display: none;
  }

  .growth-surface .tool-hero,
.growth-surface .offer-hero,
.growth-surface .home-preview-hero{
    min-height: auto;
    padding-block: 62px 58px;
  }

  .growth-surface .tool-hero h1,
.growth-surface .offer-hero h1,
.growth-surface .home-preview-hero h1{
    font-size: clamp(40px, 11.5vw, 58px);
    line-height: 1.04;
  }

  .growth-surface .tool-hero__stamp{
    min-height: 112px;
    padding: 20px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .growth-surface .tool-hero__stamp span{
    font-size: 70px;
  }

  .growth-surface .tool-hero__stamp small{
    padding-top: 12px;
  }

  .growth-surface .tool-workspace{
    padding-block: 48px;
  }

  .growth-surface .tool-result{
    position: static;
    padding: 30px 24px;
  }

  .growth-surface .tool-form{
    padding: 26px 20px;
  }

  .growth-surface .tool-form__head{
    margin-bottom: 30px;
  }

  .growth-surface .tool-form__head h2{
    font-size: clamp(30px, 8.5vw, 40px);
  }

  .growth-surface .tool-fieldset{
    padding: 20px 16px 24px;
  }

  .growth-surface .quote-builder__intro{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .growth-surface .quote-rate-table__head,
.growth-surface .quote-rate-row{
    grid-template-columns: minmax(210px, 1.5fr) minmax(96px, 0.62fr) 132px minmax(92px, 0.58fr);
    column-gap: 10px;
  }

  .growth-surface .quote-rate-table__head{
    padding-inline: 8px;
  }

  .growth-surface .quote-rate-row{
    min-height: 108px;
    padding: 14px 8px;
  }

  .growth-surface .quote-quantity-control{
    grid-template-columns: 40px 46px 40px;
  }

  .growth-surface .quote-summary > div{
    padding-inline: 13px;
  }

  .growth-surface .tool-form-grid,
.growth-surface .tool-choice-grid,
.growth-surface .tool-choice-grid--platforms,
.growth-surface .tool-method__grid,
.growth-surface .offer-deliverables,
.growth-surface .client-milestones{
    grid-template-columns: 1fr;
  }

  .growth-surface .tool-method__grid article,
.growth-surface .offer-deliverables article,
.growth-surface .client-milestones article{
    min-height: 0;
    padding: 23px 0 27px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .growth-surface .tool-method__grid h3{
    margin-top: 32px;
  }

  .growth-surface .tool-method .section-head,
.growth-surface .tool-related .section-head{
    margin-bottom: 34px;
  }

  .growth-surface .tool-faq{
    padding-block: 62px;
  }

  .growth-surface .tool-faq .guide-grid{
    gap: 34px;
  }

  .growth-surface .tool-faq .guide-sticky{
    position: static;
  }

  .growth-surface .tool-faq .guide-sticky h2{
    font-size: clamp(36px, 9vw, 48px);
  }

  .growth-surface .tool-related{
    padding-block: 58px;
  }

  .growth-surface .tool-related .related-card{
    min-height: 182px;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .growth-surface .tool-related .related-card h3{
    margin-top: 34px;
  }

  .growth-surface .case-match-item{
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .growth-surface .rfp-row{
    grid-template-columns: minmax(104px, 1fr) repeat(3, minmax(48px, 62px));
    gap: 6px;
    min-height: 58px;
    padding-inline: 8px;
  }

  .growth-surface .rfp-row input{
    padding-inline: 3px;
    font-size: 16px;
  }

  .growth-surface .pricing-rule-strip{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .growth-surface .pricing-rule-strip span{
    min-height: 62px;
    padding-inline: 8px;
  }

  .growth-surface .tool-result__body{
    margin-top: 36px;
  }

  .growth-surface .pricing-breakdown__row{
    gap: 12px;
  }

  .growth-surface .offer-rail a{
    grid-template-columns: 1fr auto;
  }

  .growth-surface .offer-rail span{
    grid-column: 1 / -1;
    padding-top: 18px;
  }

  .growth-surface .offer-rail strong{
    padding-bottom: 18px;
  }

  .growth-surface .client-hub__head{
    display: grid;
  }

  .growth-surface .client-tabs{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .growth-surface .client-tabs button{
    min-width: 0;
  }

  .growth-surface .client-panels{
    padding: 18px;
  }

  .growth-surface .client-list article{
    grid-template-columns: 54px 1fr;
    padding: 16px 0;
  }

  .growth-surface .client-list strong{
    grid-column: 2;
  }
}

@media (max-width: 600px){
  .growth-surface .footer-suite-grid{
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .growth-surface .footer-suite-brand,
.growth-surface .footer-suite-news{
    grid-column: auto;
  }

  .growth-surface .footer-suite-links,
.growth-surface .footer-suite-growth,
.growth-surface .footer-suite-news{
    padding-top: 26px;
    border-top: 1px solid var(--line);
  }

  .growth-surface .footer-utility-links a{
    min-height: 30px;
    font-size: 12px;
  }

  .growth-surface .footer-subscribe{
    grid-template-columns: minmax(0, 1fr) 58px;
    width: 100%;
  }

  .growth-surface .footer-subscribe input{
    min-width: 0;
    font-size: 16px;
  }
}

@media (max-width: 390px){
  .growth-surface .growth-entry{
    padding-block: 48px;
  }

  .growth-surface .growth-entry__head h2{
    font-size: 38px;
  }

  .growth-surface .growth-entry__card--01{
    min-height: 220px;
  }

  .growth-surface .growth-entry__card--01 .growth-entry__number{
    font-size: 74px;
  }

  .growth-surface .growth-entry__card--01 h3{
    font-size: 29px;
  }

  .growth-surface .tool-hero h1,
.growth-surface .offer-hero h1,
.growth-surface .home-preview-hero h1{
    font-size: clamp(38px, 11vw, 46px);
  }

  .growth-surface .tool-result,
.growth-surface .tool-form{
    padding-inline: 17px;
  }

  .growth-surface .tool-fieldset{
    padding-inline: 13px;
  }

  .growth-surface .quote-builder__intro{
    padding-bottom: 22px;
  }

  .growth-surface .quote-builder__intro h3{
    font-size: 27px;
  }

  .growth-surface .quote-category > summary{
    grid-template-columns: 28px minmax(0, 1fr) 16px;
    gap: 9px;
    min-height: 70px;
  }

  .growth-surface .quote-category > summary b{
    grid-column: 2;
    grid-row: 2;
    margin-top: -8px;
    font-size: 11px;
  }

  .growth-surface .quote-category > summary::after{
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .growth-surface .quote-rate-table__head{
    display: none;
  }

  .growth-surface .quote-rate-row{
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px 10px;
    min-height: 0;
    padding: 18px 10px;
  }

  .growth-surface .quote-rate-row__service{
    grid-column: 1 / -1;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
  }

  .growth-surface .quote-rate-row__price{
    align-self: center;
    text-align: left;
  }

  .growth-surface .quote-rate-row__quantity{
    justify-self: end;
  }

  .growth-surface .quote-rate-row__quantity > span{
    text-align: right;
  }

  .growth-surface .quote-rate-row__amount{
    display: flex;
    grid-column: 1 / -1;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    padding-top: 13px;
    border-top: 1px solid var(--line);
    text-align: left;
  }

  .growth-surface .quote-rate-row__amount > span{
    margin: 0;
  }

  .growth-surface .quote-quantity-control{
    grid-template-columns: 42px 48px 42px;
  }

  .growth-surface .quote-quantity-control button,
.growth-surface .quote-quantity-control input{
    min-height: 42px;
  }

  .growth-surface .quote-summary{
    grid-template-columns: 1fr;
  }

  .growth-surface .quote-summary > div{
    min-height: 66px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .growth-surface .quote-summary > div:last-child{
    border-bottom: 0;
  }

  .growth-surface .tool-field input,
.growth-surface .tool-field select{
    font-size: 16px;
  }

  .growth-surface .tool-form__actions{
    display: grid;
    grid-template-columns: 1fr;
  }

  .growth-surface .tool-form__actions .button,
.growth-surface .tool-reset{
    width: 100%;
  }

  .growth-surface .tool-reset{
    justify-self: stretch;
  }

  .growth-surface .tool-result__actions{
    display: grid;
    grid-template-columns: 1fr;
  }

  .growth-surface .tool-result__actions button{
    width: 100%;
  }

  .growth-surface .case-match-item{
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px;
  }

  .growth-surface .rfp-row{
    grid-template-columns: minmax(88px, 1fr) repeat(3, 48px);
    padding-inline: 5px;
  }

  .growth-surface .rfp-row label{
    font-size: 10px;
  }

  .growth-surface .rfp-row input{
    font-size: 16px;
  }

  .growth-surface .pricing-breakdown__row dt{
    font-size: 11px;
  }

  .growth-surface .pricing-breakdown__row dd{
    font-size: 12px;
  }

  .growth-surface .pricing-breakdown__row:last-child dd{
    font-size: 17px;
  }
}

@media print{
  @page {
    size: A4 portrait;
    margin: 14mm;
  }

  .growth-surface .site-header,
.growth-surface .mobile-menu,
.growth-surface .tool-form,
.growth-surface .site-footer,
.growth-surface .prototype-flag,
.growth-surface .tool-related,
.growth-surface .tool-faq,
.growth-surface .tool-method,
.growth-surface .tool-hero,
.growth-surface .tool-result__actions{
    display: none !important;
  }

  .growth-surface,
.growth-surface .tool-workspace{
    background: #fff;
  }

  .growth-surface{
    color: #111113;
    font-size: 11pt;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .growth-surface .tool-workspace{
    padding: 0;
  }

  .growth-surface .tool-workspace .container{
    width: 100%;
    max-width: none;
    padding: 0;
  }

  .growth-surface .tool-workspace__grid{
    display: block;
  }

  .growth-surface .tool-form[data-growth-tool="brief-budget"]{
    display: block !important;
    width: 100%;
    padding: 0;
    border: 0;
    background: #fff !important;
    box-shadow: none;
  }

  .growth-surface .tool-form[data-growth-tool="brief-budget"] > :not(.quote-builder){
    display: none !important;
  }

  .growth-surface .tool-form[data-growth-tool="brief-budget"] .quote-builder{
    display: block !important;
    padding: 8mm 7mm;
    border: 1px solid #bbb7ae;
    background: #fff !important;
    color: #111113;
    box-shadow: none;
  }

  .growth-surface .quote-builder > legend,
.growth-surface .quote-builder__intro h3,
.growth-surface .quote-category > summary strong,
.growth-surface .quote-rate-row__service label strong,
.growth-surface .quote-rate-row__price strong,
.growth-surface .quote-rate-row__amount strong,
.growth-surface .quote-summary strong{
    color: #111113 !important;
  }

  .growth-surface .quote-builder__intro{
    grid-template-columns: minmax(0, 1.2fr) minmax(52mm, 0.8fr);
    gap: 8mm;
    padding-bottom: 5mm;
    border-color: #bbb7ae;
  }

  .growth-surface .quote-builder__intro h3{
    font-size: 22pt;
  }

  .growth-surface .quote-builder__intro > p,
.growth-surface .quote-rate-row__service p,
.growth-surface .quote-rate-row__service em,
.growth-surface .quote-rate-row__price small,
.growth-surface .quote-builder__note{
    color: #45413d !important;
  }

  .growth-surface .quote-category-list,
.growth-surface .quote-category,
.growth-surface .quote-category > summary,
.growth-surface .quote-rate-table__head,
.growth-surface .quote-rate-row{
    border-color: #c9c5bd !important;
  }

  .growth-surface .quote-category:not(:has(.quote-rate-row[data-selected="true"])){
    display: none !important;
  }

  .growth-surface .quote-category > summary{
    min-height: 13mm;
    padding-block: 2.5mm;
    color: #111113;
    break-after: avoid;
  }

  .growth-surface .quote-category > summary::after{
    display: none;
  }

  .growth-surface .quote-category > .quote-rate-table{
    display: block !important;
  }

  .growth-surface .quote-rate-table__head,
.growth-surface .quote-rate-row{
    grid-template-columns: minmax(64mm, 1fr) 27mm 29mm 28mm;
    column-gap: 3mm;
  }

  .growth-surface .quote-rate-table__head{
    display: grid !important;
    padding-block: 2mm;
    background: #ece9e2 !important;
  }

  .growth-surface .quote-rate-row{
    padding-block: 3mm;
    background: #fff !important;
    color: #111113;
    break-inside: avoid;
  }

  .growth-surface .quote-rate-row[data-selected="false"]{
    display: none !important;
  }

  .growth-surface .quote-rate-row[data-selected="true"]{
    display: grid !important;
    box-shadow: inset 1.2mm 0 0 #8e1a0c;
  }

  .growth-surface .quote-rate-row__price,
.growth-surface .quote-rate-row__amount{
    text-align: right;
  }

  .growth-surface .quote-rate-row__price > span,
.growth-surface .quote-rate-row__quantity > span,
.growth-surface .quote-rate-row__amount > span,
.growth-surface .quote-summary span{
    color: #5b5650 !important;
  }

  .growth-surface .quote-quantity-control{
    display: grid;
    grid-template-columns: 1fr;
    border: 0;
  }

  .growth-surface .quote-quantity-control button{
    display: none !important;
  }

  .growth-surface .quote-quantity-control input{
    min-height: 9mm;
    border: 1px solid #aaa59d;
    background: #fff !important;
    color: #111113 !important;
  }

  .growth-surface .quote-summary{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 6mm;
    border-color: #aaa59d;
    background: #fff !important;
    break-inside: avoid;
  }

  .growth-surface .quote-summary > div,
.growth-surface .quote-summary > div:last-child{
    min-height: 19mm;
    padding: 4mm;
    border-color: #c9c5bd;
    background: #fff !important;
  }

  .growth-surface .quote-summary__total strong{
    font-size: 18pt;
  }

  .growth-surface .quote-builder .pricing-live-preview{
    display: none !important;
  }

  .growth-surface .quote-builder__note{
    margin-top: 4mm;
    font-size: 8pt;
  }

  .growth-surface .tool-result{
    position: static;
    overflow: visible;
    width: 100%;
    padding: 10mm 9mm;
    border: 1px solid #bbb7ae;
    border-top: 4px solid #8e1a0c;
    background: #f2efe8 !important;
    box-shadow: none;
    break-inside: avoid;
  }

  .growth-surface .tool-result::before{
    display: none;
  }

  .growth-surface .tool-result__body{
    margin-top: 8mm;
  }

  .growth-surface .tool-result__body strong{
    font-size: 26pt;
  }

  .growth-surface .pricing-breakdown{
    display: block !important;
    margin-top: 7mm;
    break-inside: avoid;
  }

  .growth-surface .pricing-breakdown__row{
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto;
    padding-block: 2.5mm;
  }

  .growth-surface .pricing-breakdown__row:last-child{
    padding-block: 3.5mm;
  }

  .growth-surface .pricing-breakdown__row dt,
.growth-surface .pricing-breakdown__row dd,
.growth-surface .tool-result__body li,
.growth-surface .tool-result__notice,
.growth-surface .tool-result__assumption{
    color: #111113 !important;
  }

  .growth-surface .case-match-item,
.growth-surface .pricing-breakdown__row,
.growth-surface .tool-result__body li{
    break-inside: avoid;
  }
}


/* ==========================================================================
   2026-08-01 PREMIUM DARK OVERHAUL · three growth pages
   目标：与主站（黑 + 红 + 影像）统一
   1) 移除全部米白 paper 区块与米色结果卡片
   2) hero 接入实拍场景图 + 品牌渐变遮罩
   3) 按钮体系统一：红色实心主按钮 / 描边次按钮
   4) 表单、报价组件、方法网格、FAQ 全部回归深色体系
   仅作用于 screen，不影响 print 报价单输出
   ========================================================================== */
@media screen{

  /* ---------------- HERO：实拍图 + 品牌遮罩 ---------------- */
  .growth-surface .tool-hero,
  .growth-surface .offer-hero{
    min-height: min(680px, calc(100svh - 80px));
    border-bottom: 0;
    background-color: #08080a;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

  .growth-surface[data-page="growth-tool-brief-budget"] .tool-hero{
    background-image: url("../images/studio/studio-tech-01.jpg");
  }

  .growth-surface[data-page="growth-tool-studio-booking"] .tool-hero{
    background-image: url("../images/studio/studio-white-01.jpg");
  }

  .growth-surface[data-page="growth-offer-global-launch"] .offer-hero{
    background-image: url("../images/studio/studio-luxury-01.jpg");
  }

  .growth-surface .tool-hero::after,
  .growth-surface .offer-hero::after{
    background:
      linear-gradient(90deg, rgba(8, 8, 10, 0.96) 0%, rgba(8, 8, 10, 0.84) 40%, rgba(8, 8, 10, 0.52) 68%, rgba(8, 8, 10, 0.62) 100%),
      linear-gradient(0deg, #08080a 0%, rgba(8, 8, 10, 0) 30%),
      linear-gradient(135deg, transparent 58%, rgba(142, 26, 12, 0.32));
  }

  /* 档期页用白棚图：右侧保留更多棚内空间感 */
  .growth-surface[data-page="growth-tool-studio-booking"] .tool-hero::after{
    background:
      linear-gradient(90deg, rgba(8, 8, 10, 0.95) 0%, rgba(8, 8, 10, 0.78) 42%, rgba(8, 8, 10, 0.38) 72%, rgba(8, 8, 10, 0.5) 100%),
      linear-gradient(0deg, #08080a 0%, rgba(8, 8, 10, 0) 34%),
      linear-gradient(135deg, transparent 60%, rgba(142, 26, 12, 0.26));
  }

  .growth-surface .tool-hero h1,
  .growth-surface .offer-hero h1{
    margin: 20px 0 24px;
    letter-spacing: -0.022em;
    line-height: 1.14;
  }

  /* title-line 本身是 block，<br> 会额外撑出一整行，导致两行标题间距过大 */
  .growth-surface .tool-hero h1 br,
  .growth-surface .offer-hero h1 br{
    display: none;
  }

  .growth-surface .tool-hero__stamp{
    border-left-color: rgba(244, 243, 241, 0.22);
  }

  .growth-surface .tool-hero__stamp span{
    -webkit-text-stroke-color: rgba(244, 243, 241, 0.26);
  }

  .growth-surface .tool-hero__stamp small{
    border-top-color: rgba(244, 243, 241, 0.22);
    color: rgba(244, 243, 241, 0.6);
  }

  /* ---------------- 按钮体系：红实心 / 描边 ---------------- */
  .growth-surface .button{
    min-width: 216px;
    min-height: 56px;
    border-color: rgba(244, 243, 241, 0.34);
    background: rgba(8, 8, 10, 0.34);
    letter-spacing: 0.05em;
  }

  .growth-surface .button:hover{
    border-color: var(--ink);
    background: var(--ink);
    color: var(--ink-dark);
  }

  .growth-surface .button--primary{
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
  }

  .growth-surface .button--primary:hover{
    border-color: var(--accent-live);
    background: var(--accent-live);
    color: #fff;
  }

  .growth-surface .tool-form .tool-submit{
    min-width: 216px;
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
    box-shadow: none;
  }

  .growth-surface .tool-form .tool-submit:hover,
  .growth-surface .tool-form .tool-submit:focus-visible{
    border-color: var(--accent-live);
    background: var(--accent-live);
    color: #fff;
    box-shadow: none;
  }

  /* ---------------- 消灭米白：paper 区块回归深色 ---------------- */
  .growth-surface .section--paper{
    border-block: 1px solid var(--line);
    background: var(--surface);
    color: var(--ink);
  }

  .growth-surface .section--paper .section-head p{
    color: var(--muted);
  }

  /* 方法网格（paper 与深色两个上下文统一） */
  .growth-surface .tool-method__grid{
    border-block: 1px solid var(--line-strong);
  }

  .growth-surface .tool-method__grid article{
    border-right: 1px solid var(--line);
  }

  .growth-surface .tool-method__grid article:last-child{
    border-right: 0;
  }

  .growth-surface .tool-method__grid span{
    color: var(--accent-live);
  }

  .growth-surface .tool-method__grid h3{
    color: var(--ink);
  }

  .growth-surface .tool-method__grid p{
    color: var(--muted);
  }

  /* 出海页 DELIVERABLES */
  .growth-surface .offer-deliverables{
    border-top: 1px solid var(--line-strong);
  }

  .growth-surface .offer-deliverables article{
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .growth-surface .offer-deliverables article:nth-child(2n){
    border-right: 0;
  }

  .growth-surface .offer-deliverables span{
    color: var(--accent-live);
  }

  .growth-surface .offer-deliverables h3{
    color: var(--ink);
    font-weight: 500;
  }

  /* ---------------- 表单细节 ---------------- */
  .growth-surface .tool-form{
    border-top: 3px solid var(--accent-deep);
  }

  .growth-surface .tool-fieldset legend span{
    border: 0;
    background: var(--accent-deep);
    color: #fff;
  }

  .growth-surface .tool-field select{
    padding-right: 34px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' fill='none' stroke='%23b9b6b1' stroke-width='1.4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
  }

  .growth-surface .tool-choice input:checked + span{
    border-color: var(--accent-live);
    background: rgba(216, 65, 42, 0.16);
    color: var(--ink);
  }

  /* ---------------- 报价汇总：总价红色锚点 ---------------- */
  .growth-surface .quote-summary__total{
    background: var(--accent-deep);
    box-shadow: none;
  }

  .growth-surface .quote-summary__total span{
    color: rgba(255, 255, 255, 0.68);
  }

  .growth-surface .quote-summary__total strong{
    color: #fff;
  }

  /* ---------------- 结果卡片：米白便签 → 深色面板 ---------------- */
  .growth-surface .tool-result{
    border: 1px solid var(--line);
    border-top: 3px solid var(--accent);
    background: linear-gradient(180deg, #121216 0%, #0d0d10 100%);
    color: var(--ink);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  }

  .growth-surface .tool-result::before{
    background: rgba(237, 86, 61, 0.16);
  }

  .growth-surface .tool-result__kicker{
    border-bottom-color: var(--line);
    color: var(--accent-live);
  }

  /* 与卡片标题重复的第二个标签，直接隐藏（修复重复文案） */
  .growth-surface .tool-result__label{
    display: none;
  }

  .growth-surface .tool-result.has-result .tool-result__kicker::after{
    background: var(--accent-live);
  }

  .growth-surface .tool-result__body{
    margin-top: clamp(28px, 3.4vw, 44px);
  }

  .growth-surface .tool-result__body strong{
    margin-top: 0;
    color: var(--ink);
  }

  .growth-surface .tool-result__body > p{
    color: var(--muted);
  }

  .growth-surface .tool-result__body ul{
    border-top-color: var(--line);
  }

  .growth-surface .tool-result__body li{
    border-bottom-color: var(--line);
    color: var(--muted);
  }

  .growth-surface .tool-result__body li::before{
    border-color: var(--accent-live);
  }

  .growth-surface .tool-result__assumption{
    border-left-color: var(--accent-live);
    background: rgba(142, 26, 12, 0.12);
    color: var(--muted) !important;
  }

  .growth-surface .pricing-breakdown{
    border-top-color: var(--line);
  }

  .growth-surface .pricing-breakdown__row{
    border-bottom-color: var(--line);
  }

  .growth-surface .pricing-breakdown__row dt{
    color: var(--muted);
  }

  .growth-surface .pricing-breakdown__row dt small{
    color: var(--soft);
  }

  .growth-surface .pricing-breakdown__row dd{
    color: var(--ink);
  }

  .growth-surface .pricing-breakdown__row:nth-last-child(-n + 3){
    background: rgba(142, 26, 12, 0.07);
  }

  .growth-surface .pricing-breakdown__row:last-child{
    border-top: 2px solid var(--line-strong);
    border-bottom-color: var(--line-strong);
  }

  .growth-surface .pricing-breakdown__row:last-child dt{
    color: var(--ink);
  }

  .growth-surface .pricing-breakdown__row:last-child dd{
    color: var(--accent-live);
  }

  .growth-surface .tool-result__actions{
    border-top-color: var(--line);
  }

  .growth-surface .tool-result__actions button{
    border-color: var(--line-strong);
    color: var(--ink);
  }

  .growth-surface .tool-result__actions button:hover,
  .growth-surface .tool-result__actions button:focus-visible{
    border-color: var(--ink);
    background: var(--ink);
    color: var(--ink-dark);
  }

  .growth-surface .tool-result__notice{
    color: var(--soft);
  }

  /* ---------------- 移动端 ---------------- */
  @media (max-width: 780px){
    .growth-surface .tool-hero__stamp{
      display: none;
    }

    .growth-surface .tool-hero::after,
    .growth-surface .offer-hero::after{
      background:
        linear-gradient(90deg, rgba(8, 8, 10, 0.94) 0%, rgba(8, 8, 10, 0.78) 100%),
        linear-gradient(0deg, #08080a 0%, rgba(8, 8, 10, 0) 34%),
        linear-gradient(135deg, transparent 58%, rgba(142, 26, 12, 0.3));
    }

    .growth-surface .tool-method__grid{
      border-block: 1px solid var(--line-strong);
    }

    .growth-surface .offer-deliverables article{
      border-right: 0;
    }
  }
}
