:root {
  --bg: #fbfafb;
  --paper: #ffffff;
  --ink: #121826;
  --muted: #65738a;
  --line: #dfe6ef;
  --soft-line: #edf1f5;
  --pink: #e80052;
  --pink-dark: #c90045;
  --blue: #1f6feb;
  --green: #0f9f6e;
  --orange: #f97316;
  --black: #07090d;
  --shadow: 0 18px 48px rgba(18, 24, 38, 0.12);
  --small-shadow: 0 8px 24px rgba(18, 24, 38, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "PingFang SC",
    "Hiragino Sans GB",
    "Microsoft YaHei",
    sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--soft-line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: inline-grid;
  grid-template-columns: repeat(3, 7px);
  gap: 3px;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--black);
  border-radius: 8px;
}

.brand-mark span {
  display: block;
  width: 7px;
  border-radius: 8px;
  background: #ffffff;
}

.brand-mark span:first-child {
  height: 18px;
}

.brand-mark span:nth-child(2) {
  height: 24px;
  background: var(--pink);
}

.brand-mark span:last-child {
  height: 18px;
}

.brand-name {
  font-size: 1.45rem;
  font-weight: 800;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 650;
}

.desktop-nav a {
  position: relative;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--pink);
  opacity: 0;
  content: "";
}

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

.desktop-nav a[aria-current="page"]::after {
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ghost-link {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 760;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--pink);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(232, 0, 82, 0.22);
}

.button.primary:hover {
  background: var(--pink-dark);
}

.button.secondary {
  background: #ffffff;
  border-color: #cfd8e6;
  color: var(--ink);
}

.button.secondary:hover {
  border-color: var(--ink);
  box-shadow: var(--small-shadow);
}

.button.light-button {
  background: #ffffff;
  color: var(--black);
}

.button.small {
  min-height: 42px;
  padding: 0 18px;
}

.button.full {
  width: 100%;
}

.menu-button {
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  background: var(--ink);
}

.mobile-nav {
  position: fixed;
  top: 76px;
  right: 16px;
  left: 16px;
  z-index: 19;
  display: none;
  padding: 12px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.mobile-nav a {
  padding: 12px 10px;
  border-radius: 6px;
  color: var(--muted);
  font-weight: 700;
}

.mobile-nav a[aria-current="page"],
.mobile-nav a:hover {
  background: #fff2f6;
  color: var(--pink);
}

.section-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(680px, calc(100svh - 160px));
  overflow: hidden;
  border-bottom: 1px solid var(--soft-line);
}

.hero-backdrop,
.service-pattern {
  position: absolute;
  inset: 0;
  background-color: #fffafa;
  background-image:
    linear-gradient(#f3dfe5 1px, transparent 1px),
    linear-gradient(90deg, #f3dfe5 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero-backdrop::after,
.service-pattern::after {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.48);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(560px, calc(100% - 48px));
  max-width: 560px;
  margin-right: auto;
  margin-left: max(24px, calc((100vw - 1180px) / 2));
  padding: 80px 0 70px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: 5.3rem;
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.45rem;
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.32;
}

.hero-subtitle {
  max-width: 520px;
  margin-bottom: 30px;
  color: #4f5f76;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid #d8e1ee;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #64748b;
  font-size: 0.88rem;
  font-weight: 700;
}

.workspace-visual {
  position: absolute;
  top: 105px;
  right: max(32px, calc((100vw - 1180px) / 2));
  width: 560px;
  height: 430px;
  background: #ffffff;
  border: 1px solid #e1e8f2;
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(18, 24, 38, 0.16);
  transform: rotate(-2deg);
}

.visual-topbar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 46px;
  padding: 0 18px;
  border-bottom: 1px solid var(--soft-line);
}

.visual-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d7dee9;
}

.visual-topbar span:nth-child(2) {
  background: var(--pink);
}

.visual-topbar span:nth-child(3) {
  background: var(--green);
}

.visual-sidebar {
  position: absolute;
  top: 46px;
  bottom: 0;
  left: 0;
  display: grid;
  align-content: start;
  gap: 14px;
  width: 76px;
  padding: 22px 20px;
  background: #f6f8fb;
  border-right: 1px solid var(--soft-line);
}

.visual-sidebar i {
  display: block;
  width: 34px;
  height: 34px;
  border: 1px solid #d9e2ee;
  border-radius: 8px;
  background: #ffffff;
}

.visual-sidebar i:first-child {
  background: var(--black);
}

.visual-board {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  padding: 64px 20px 20px 98px;
}

.visual-panel,
.visual-note,
.visual-chart {
  min-height: 104px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid #e1e7ef;
  border-radius: 8px;
  box-shadow: var(--small-shadow);
}

.visual-panel.wide {
  grid-column: span 2;
}

.visual-panel strong,
.visual-note b {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.visual-panel p,
.visual-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.visual-panel.accent-pink strong {
  color: var(--pink);
  font-size: 2.4rem;
  line-height: 1;
}

.progress-line {
  height: 7px;
  margin-top: 14px;
  overflow: hidden;
  background: #edf1f5;
  border-radius: 999px;
}

.progress-line span {
  display: block;
  height: 100%;
  background: var(--pink);
  border-radius: 999px;
}

.visual-chart {
  display: flex;
  align-items: end;
  gap: 12px;
}

.visual-chart span {
  flex: 1;
  min-height: 24px;
  border-radius: 6px 6px 0 0;
  background: var(--blue);
}

.visual-chart span:nth-child(2) {
  background: var(--green);
}

.visual-chart span:nth-child(3) {
  background: var(--orange);
}

.visual-chart span:nth-child(4) {
  background: var(--pink);
}

.section {
  padding: 92px 0;
}

.intro-band {
  background: #ffffff;
  padding-top: 34px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading.compact p:not(.eyebrow),
.section-copy p {
  color: var(--muted);
  font-size: 1.02rem;
}

.centered {
  text-align: center;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
}

.path-grid,
.deliverable-grid,
.workflow-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.path-card,
.deliverable-grid article,
.workflow-grid article,
.price-card,
.account-panel {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--small-shadow);
}

.path-card {
  padding: 26px;
}

.path-card p,
.deliverable-grid p,
.workflow-grid p,
.timeline p,
.account-panel p,
.price-card p {
  color: var(--muted);
}

.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 850;
}

.icon-box.pink {
  background: var(--pink);
}

.icon-box.blue {
  background: var(--blue);
}

.icon-box.green {
  background: var(--green);
}

.icon-box.orange {
  background: var(--orange);
}

.product-band,
.product-interface,
.service-process {
  background: #f7f9fc;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 56px;
}

.two-column.flipped {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
}

.section-copy {
  min-width: 0;
}

.clean-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 26px;
  color: #344256;
}

.clean-list li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--pink);
  border-radius: 50%;
  content: "";
}

.product-shot {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.shot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--soft-line);
  color: var(--muted);
}

.shot-header strong {
  color: var(--pink);
}

.shot-body {
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 330px;
}

.task-column {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
  background: #f7f9fc;
  border-right: 1px solid var(--soft-line);
}

.task-column button,
.tool-row button {
  min-height: 40px;
  border: 1px solid #d7e0ec;
  border-radius: 8px;
  background: #ffffff;
  color: #526174;
  font-weight: 700;
}

.task-column button.active,
.tool-row button.active {
  background: var(--black);
  border-color: var(--black);
  color: #ffffff;
}

.asset-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 20px;
}

.asset-grid article {
  min-height: 120px;
  padding: 18px;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: #ffffff;
}

.asset-grid b {
  display: block;
  margin-bottom: 8px;
}

.asset-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.dark-band {
  background: var(--black);
  color: #ffffff;
}

.section-copy.light p:not(.eyebrow) {
  color: #b7c2d4;
}

.agent-console {
  display: grid;
  gap: 12px;
  padding: 28px;
  background: #11151d;
  border: 1px solid #262f3d;
  border-radius: 8px;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.32);
}

.console-row {
  width: fit-content;
  max-width: 78%;
  padding: 13px 15px;
  border-radius: 8px;
  font-size: 0.95rem;
}

.console-row.incoming {
  background: #ffffff;
  color: var(--ink);
}

.console-row.outgoing {
  justify-self: end;
  background: var(--pink);
  color: #ffffff;
}

.service-preview {
  background: #ffffff;
}

.service-hero + .section {
  padding-top: 44px;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 38px 0 28px;
}

.service-strip article {
  min-height: 130px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.service-strip span {
  display: block;
  margin-bottom: 12px;
  color: var(--pink);
  font-weight: 800;
}

.service-strip strong {
  display: block;
  font-size: 1.28rem;
  line-height: 1.28;
}

.center-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.site-footer {
  padding: 34px 0;
  background: #ffffff;
  border-top: 1px solid var(--soft-line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
}

.footer-inner span {
  color: var(--ink);
  font-weight: 850;
}

.footer-inner p {
  margin: 0;
}

.product-hero,
.service-hero {
  min-height: min(640px, calc(100svh - 160px));
}

.product-hero-content,
.service-copy {
  max-width: 620px;
}

.service-copy {
  width: min(680px, calc(100% - 48px));
  max-width: 680px;
}

.service-copy h1 {
  font-size: 4.35rem;
  line-height: 1.05;
}

.product-backdrop {
  background-color: #fff9fb;
}

.campaign-board {
  position: absolute;
  top: 120px;
  right: max(28px, calc((100vw - 1180px) / 2));
  z-index: 1;
  width: 560px;
  height: 380px;
}

.campaign-card {
  position: absolute;
  width: 280px;
  min-height: 138px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.campaign-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--pink);
  font-size: 0.82rem;
  font-weight: 850;
}

.campaign-card b {
  display: block;
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.campaign-card p {
  margin: 0;
  color: var(--muted);
}

.campaign-card.c1 {
  top: 0;
  left: 40px;
}

.campaign-card.c2 {
  top: 126px;
  right: 0;
}

.campaign-card.c3 {
  bottom: 0;
  left: 0;
}

.metrics-band {
  padding: 34px 0;
  background: var(--black);
}

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

.metric-grid article {
  padding: 24px;
  border: 1px solid #242c38;
  border-radius: 8px;
  background: #11151d;
  color: #ffffff;
  text-align: center;
}

.metric-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--pink);
  font-size: 2.1rem;
  line-height: 1;
}

.metric-grid span {
  color: #c4cedd;
}

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

.workflow-grid article {
  min-height: 250px;
  padding: 24px;
}

.workflow-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--pink);
  font-size: 1.3rem;
  font-weight: 850;
}

.interface-preview {
  display: grid;
  grid-template-columns: 150px 1fr;
  overflow: hidden;
  min-height: 430px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.interface-sidebar {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
  background: #f5f7fb;
  border-right: 1px solid var(--soft-line);
}

.interface-sidebar strong {
  margin-bottom: 18px;
}

.interface-sidebar span {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 700;
}

.interface-sidebar span:first-of-type {
  background: var(--black);
  color: #ffffff;
}

.interface-main {
  padding: 26px;
}

.prompt-bar {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid #dce4ef;
  border-radius: 8px;
  color: var(--muted);
}

.tool-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.result-list {
  display: grid;
  gap: 12px;
}

.result-list article {
  padding: 18px;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: #ffffff;
}

.result-list p {
  margin: 6px 0 0;
  color: var(--muted);
}

.service-pattern {
  background-color: #ffffff;
}

.service-dashboard {
  position: absolute;
  right: max(26px, calc((100vw - 1180px) / 2));
  bottom: 92px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: 640px;
}

.service-dashboard div {
  min-height: 138px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-bottom: 5px solid var(--pink);
  border-radius: 8px;
  box-shadow: var(--small-shadow);
}

.service-dashboard div:nth-child(1) {
  border-bottom-color: var(--blue);
}

.service-dashboard div:nth-child(3) {
  border-bottom-color: var(--orange);
}

.service-dashboard span {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-weight: 750;
}

.service-dashboard strong {
  display: block;
  font-size: 1.25rem;
  line-height: 1.3;
}

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

.deliverable-grid article {
  padding: 26px;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline article {
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.timeline span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--pink);
  font-weight: 850;
}

.timeline strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.14rem;
}

.pricing-hero {
  padding: 76px 0 42px;
  background: #ffffff;
  border-bottom: 1px solid var(--soft-line);
}

.pricing-hero h1,
.account-header h1 {
  margin-bottom: 18px;
  font-size: 3.4rem;
  line-height: 1.08;
}

.pricing-hero p {
  max-width: 720px;
  margin: 0 auto 24px;
  color: var(--muted);
  font-size: 1.08rem;
}

.billing-toggle {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f6f8fb;
}

.billing-toggle button {
  min-width: 86px;
  min-height: 38px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
}

.billing-toggle button.active {
  background: #ffffff;
  color: var(--pink);
  box-shadow: var(--small-shadow);
}

.pricing-section {
  padding-top: 48px;
}

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

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 26px;
}

.price-card.featured {
  border-color: var(--pink);
  box-shadow: 0 18px 48px rgba(232, 0, 82, 0.16);
}

.plan-label {
  color: var(--pink);
  font-size: 0.85rem;
  font-weight: 850;
}

.price-card h2 {
  margin: 10px 0 6px;
  font-size: 1.7rem;
}

.price {
  margin: 8px 0 12px;
}

.price span {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.price small {
  margin-left: 4px;
  color: var(--muted);
}

.price.custom span {
  font-size: 2.2rem;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
}

.price-card li {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--soft-line);
  color: #344256;
}

.price-card li.muted {
  color: #a0aabc;
}

.price-card .button {
  margin-top: auto;
}

.entitlement-section {
  background: #ffffff;
}

.entitlement-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.entitlement-table > div {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, minmax(0, 1fr));
}

.entitlement-table > div:first-child {
  background: var(--black);
  color: #ffffff;
}

.entitlement-table strong,
.entitlement-table span {
  min-height: 58px;
  padding: 16px;
  border-right: 1px solid var(--soft-line);
  border-bottom: 1px solid var(--soft-line);
}

.entitlement-table span:first-child {
  font-weight: 800;
}

.entitlement-table > div:last-child span {
  border-bottom: 0;
}

.entitlement-table strong:last-child,
.entitlement-table span:last-child {
  border-right: 0;
}

.account-main {
  background: #f7f9fc;
}

.account-section {
  padding-top: 68px;
}

.account-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.account-header p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
}

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

.account-panel {
  padding: 24px;
}

.account-panel span {
  display: block;
  margin-bottom: 12px;
  color: var(--pink);
  font-size: 0.86rem;
  font-weight: 850;
}

.account-panel h2 {
  margin-bottom: 8px;
  font-size: 1.5rem;
}

.account-panel a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--pink);
  font-weight: 850;
}

.balance-panel {
  background: var(--black);
  color: #ffffff;
}

.balance-panel p,
.balance-panel small {
  color: #b7c2d4;
}

.balance-meter {
  height: 10px;
  margin: 24px 0 10px;
  overflow: hidden;
  background: #2a3240;
  border-radius: 999px;
}

.balance-meter span {
  display: block;
  height: 100%;
  margin: 0;
  background: var(--pink);
}

.status-button {
  display: inline-flex;
  min-height: 38px;
  margin-top: 14px;
  padding: 0 14px;
  border: 1px solid #cfd8e6;
  border-radius: 8px;
  background: #ffffff;
  color: var(--muted);
  font-weight: 800;
}

.status-button.active {
  border-color: #b9eadb;
  background: #ecfbf6;
  color: var(--green);
}

.account-flow {
  margin-top: 56px;
}

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

.flow-line article {
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.flow-line span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--pink);
  color: #ffffff;
  font-weight: 850;
}

.flow-line strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.flow-line p {
  margin: 0;
  color: var(--muted);
}

.app-body {
  min-height: 100vh;
  background: #ffffff;
}

.growx-app-shell {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  min-height: 100vh;
}

.app-sidebar {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
  padding: 18px 8px;
  background: #ffffff;
  border-right: 1px solid var(--soft-line);
}

.app-logo {
  display: inline-flex;
  width: fit-content;
  margin: 2px 8px 28px;
}

.app-menu,
.app-menu-group {
  display: grid;
  gap: 8px;
}

.app-menu a,
.app-menu-group a,
.app-sidebar-bottom a {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  color: #22252c;
  font-weight: 650;
}

.app-menu a.active,
.app-menu a:hover,
.app-menu-group a:hover,
.app-sidebar-bottom a:hover {
  background: #f3f4f6;
}

.app-menu-group {
  margin-top: 36px;
}

.app-menu-group > span {
  padding: 0 12px 8px;
  color: #a0a7b3;
  font-size: 0.88rem;
}

.app-sidebar-bottom {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.app-sidebar-bottom button {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--black);
  color: #ffffff;
  font-weight: 800;
}

.app-workspace {
  position: relative;
  min-width: 0;
  min-height: 100vh;
  padding-bottom: 80px;
  background:
    radial-gradient(circle at 50% 35%, rgba(232, 0, 82, 0.035), transparent 360px),
    #ffffff;
}

.app-topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  padding: 0 30px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
}

.app-topbar > div {
  display: flex;
  gap: 10px;
}

.app-text-link {
  color: var(--muted);
  font-weight: 750;
}

.app-hero {
  display: grid;
  justify-items: center;
  padding: 250px 24px 90px;
}

.app-hero h1 {
  margin-bottom: 34px;
  font-size: 2.55rem;
  line-height: 1.15;
  text-align: center;
}

.prompt-composer {
  width: min(880px, 100%);
  min-height: 148px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid #e1e5eb;
  border-radius: 16px;
  box-shadow: 0 14px 38px rgba(18, 24, 38, 0.1);
}

.prompt-placeholder {
  min-height: 62px;
  color: #a1a8b3;
  font-size: 1.06rem;
}

.composer-bottom {
  display: grid;
  grid-template-columns: 36px max-content 1fr 42px;
  align-items: center;
  gap: 12px;
}

.composer-bottom button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font-size: 1.2rem;
}

.composer-bottom span {
  color: #0b8cff;
  font-weight: 750;
}

.composer-bottom strong {
  justify-self: end;
  color: #22252c;
  font-weight: 700;
}

.composer-bottom .send-button {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #b8bbc2;
  color: #ffffff;
}

.skill-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.skill-chips button {
  min-height: 36px;
  padding: 0 16px;
  border: 1px solid #dfe4eb;
  border-radius: 999px;
  background: #ffffff;
  color: #30343b;
  font-weight: 650;
}

.app-dashboard {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
  padding: 36px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.dashboard-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.dashboard-heading h2 {
  font-size: 2rem;
}

.dashboard-heading p:not(.eyebrow) {
  max-width: 690px;
  color: var(--muted);
}

.product-account-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 22px;
}

.product-balance,
.product-status-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--small-shadow);
}

.product-status-card {
  background: #ffffff;
}

.product-balance span,
.product-status-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--pink);
  font-size: 0.86rem;
  font-weight: 850;
}

.product-balance h3,
.product-status-card h3 {
  margin-bottom: 8px;
  font-size: 1.45rem;
}

.product-status-card p {
  color: var(--muted);
}

.product-status-card a {
  color: var(--pink);
  font-weight: 850;
}

.embedded-pricing {
  margin-top: 18px;
}

.price-card h2,
.price-card h3 {
  margin: 10px 0 6px;
  font-size: 1.7rem;
}

.desktop-promo {
  width: min(270px, calc(100% - 56px));
  margin: 24px 28px 0 auto;
  padding: 14px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--small-shadow);
}

.desktop-promo > button {
  position: absolute;
  top: -16px;
  right: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #ffffff;
  color: var(--muted);
  font-size: 1.1rem;
}

.desktop-promo-image {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 118px;
  margin-bottom: 14px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(31, 111, 235, 0.86), rgba(15, 159, 110, 0.55)),
    #dbeafe;
}

.desktop-promo-image span {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.86);
}

.desktop-promo h3 {
  margin-bottom: 6px;
  font-size: 1.08rem;
}

.desktop-promo p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.team-hero {
  background: #ffffff;
}

.team-backdrop {
  background-color: #fffafa;
}

.team-copy {
  width: min(680px, calc(100% - 48px));
  max-width: 680px;
}

.team-copy h1 {
  font-size: 4.35rem;
  line-height: 1.05;
}

.team-visual {
  position: absolute;
  right: max(34px, calc((100vw - 1180px) / 2));
  bottom: 86px;
  z-index: 1;
  display: grid;
  gap: 14px;
  width: 480px;
}

.team-orbit-card {
  min-height: 112px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--small-shadow);
}

.team-orbit-card:nth-child(2) {
  margin-left: 64px;
  border-left: 5px solid var(--pink);
}

.team-orbit-card:nth-child(3) {
  margin-left: 28px;
  border-left: 5px solid var(--green);
}

.team-orbit-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--pink);
  font-size: 0.82rem;
  font-weight: 850;
}

.team-orbit-card strong {
  font-size: 1.22rem;
}

.team-band {
  background: #ffffff;
}

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

.team-principles article,
.role-stack article {
  padding: 26px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--small-shadow);
}

.team-principles span {
  display: block;
  margin-bottom: 24px;
  color: var(--pink);
  font-size: 1.2rem;
  font-weight: 850;
}

.team-principles p,
.role-stack p {
  color: var(--muted);
}

.team-roles-section {
  background: #f7f9fc;
}

.role-stack {
  display: grid;
  gap: 14px;
}

.role-stack strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.12rem;
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 18px;
  }

  .workspace-visual,
  .campaign-board,
  .service-dashboard {
    opacity: 0.32;
    right: 24px;
  }

  .pricing-grid,
  .deliverable-grid,
  .workflow-grid,
  .account-grid,
  .product-account-grid,
  .team-principles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-visual {
    opacity: 0.32;
    right: 24px;
  }
}

@media (max-width: 860px) {
  .site-header {
    height: 70px;
    padding: 0 18px;
  }

  .desktop-nav,
  .ghost-link {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .mobile-nav {
    top: 70px;
  }

  .section-inner {
    width: min(100% - 32px, 680px);
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 86px 0 52px;
  }

  h1 {
    font-size: 3.6rem;
  }

  .service-copy h1 {
    font-size: 3.2rem;
  }

  .team-copy h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2rem;
  }

  .workspace-visual,
  .campaign-board,
  .service-dashboard,
  .team-visual,
  .desktop-promo {
    display: none;
  }

  .hero-backdrop::after,
  .service-pattern::after {
    background: rgba(255, 255, 255, 0.68);
  }

  .section {
    padding: 68px 0;
  }

  .two-column,
  .two-column.flipped,
  .shot-body,
  .interface-preview {
    grid-template-columns: 1fr;
  }

  .visual-sidebar,
  .task-column,
  .interface-sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--soft-line);
  }

  .task-column,
  .interface-sidebar {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
    padding: 14px;
  }

  .interface-sidebar strong {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .service-strip,
  .path-grid,
  .metric-grid,
  .pricing-grid,
  .deliverable-grid,
  .workflow-grid,
  .account-grid,
  .flow-line,
  .product-account-grid,
  .team-principles {
    grid-template-columns: 1fr;
  }

  .growx-app-shell {
    grid-template-columns: 1fr;
  }

  .app-sidebar {
    position: static;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--soft-line);
  }

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

  .app-menu-group {
    margin-top: 14px;
  }

  .app-menu-group > span {
    grid-column: 1 / -1;
  }

  .app-sidebar-bottom {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 18px;
  }

  .app-hero {
    padding: 88px 16px 62px;
  }

  .app-dashboard {
    width: min(100% - 32px, 680px);
    padding: 22px;
  }

  .dashboard-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-inner,
  .account-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .entitlement-table {
    overflow-x: auto;
  }

  .entitlement-table > div {
    min-width: 720px;
  }
}

@media (max-width: 560px) {
  .brand-name {
    font-size: 1.18rem;
  }

  .header-actions .button {
    display: none;
  }

  h1 {
    font-size: 3rem;
  }

  .service-copy h1 {
    font-size: 2.65rem;
  }

  .team-copy h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-actions,
  .center-actions {
    flex-direction: column;
  }

  .hero-actions .button,
  .center-actions .button {
    width: 100%;
  }

  .asset-grid,
  .tool-row {
    grid-template-columns: 1fr;
  }

  .task-column {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-hero h1,
  .account-header h1 {
    font-size: 2.45rem;
  }

  .app-topbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 16px;
  }

  .app-topbar > div,
  .app-topbar .button {
    width: 100%;
  }

  .app-topbar > div {
    flex-direction: column;
  }

  .app-hero h1 {
    font-size: 2rem;
  }

  .composer-bottom {
    grid-template-columns: 36px 1fr 42px;
  }

  .composer-bottom strong {
    display: none;
  }

  .app-menu,
  .app-menu-group,
  .app-sidebar-bottom {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: 0;
  }
}

/* GrowX refreshed layout */
.product-header {
  height: 88px;
  padding: 0 44px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 0;
}

.growx-brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.growx-logo {
  display: block;
  height: 32px;
  width: auto;
}

.product-nav {
  position: absolute;
  left: 50%;
  gap: 36px;
  color: #5f6368;
  font-size: 1rem;
  transform: translateX(-50%);
}

.product-nav a,
.nav-trigger {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 4px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-weight: 600;
  transition: color 160ms ease;
}

.product-nav a::after {
  display: none;
}

.product-nav a:hover,
.nav-trigger:hover {
  background: transparent;
  color: #0a0a0a;
}

.product-nav a[aria-current="page"],
.nav-trigger[aria-current="page"] {
  background: transparent;
  color: #0a0a0a;
  font-weight: 700;
}

.product-header .button.dark {
  border-radius: 999px;
  padding: 0 22px;
}

.nav-dropdown,
.trial-dropdown {
  position: relative;
}

.nav-menu,
.trial-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 50;
  display: grid;
  gap: 4px;
  width: 380px;
  padding: 26px;
  background: rgba(247, 247, 247, 0.98);
  border: 1px solid #ececec;
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.trial-menu {
  right: 0;
  left: auto;
  width: 300px;
  transform: translateY(8px);
}

.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu,
.trial-dropdown:hover .trial-menu,
.trial-dropdown:focus-within .trial-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.trial-dropdown:hover .trial-menu,
.trial-dropdown:focus-within .trial-menu {
  transform: translateY(0);
}

.nav-menu a,
.trial-menu a {
  display: grid;
  gap: 7px;
  min-height: auto;
  padding: 12px 14px;
  border-radius: 10px;
  color: #111111;
}

.nav-menu a:hover,
.trial-menu a:hover {
  background: #ffffff;
}

.nav-menu strong,
.trial-menu strong {
  font-size: 1rem;
}

.nav-menu span,
.trial-menu span {
  color: #6f7378;
  font-size: 0.9rem;
  line-height: 1.45;
}

.button.dark {
  background: #050505;
  color: #ffffff;
  box-shadow: none;
}

.button.dark:hover {
  background: #242424;
}

.hero-kicker {
  margin-bottom: 28px;
  color: #3f4145;
  font-size: 1rem;
}

.service-simple-hero h1,
.chat-pricing-hero h1 {
  max-width: 860px;
  margin: 0 auto 28px;
  color: #050505;
  font-size: clamp(3.7rem, 8vw, 6.7rem);
  font-weight: 860;
  line-height: 0.94;
  text-align: center;
}

.service-simple-hero p,
.chat-pricing-hero p {
  max-width: 760px;
  margin: 0 auto 32px;
  color: #24272c;
  font-size: 1.16rem;
  line-height: 1.7;
  text-align: center;
}

.hero-text-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 12px;
  color: #111111;
  font-weight: 780;
}

.hero-text-link::after {
  margin-left: 8px;
  content: "↗";
}

.minimal-section {
  background: #ffffff;
}

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

.minimal-feature-grid article {
  min-height: 240px;
  padding: 26px;
  background: #f6f6f6;
  border: 1px solid #ececec;
  border-radius: 10px;
}

.minimal-feature-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--pink);
  font-weight: 850;
}

.minimal-feature-grid p {
  color: #646970;
}

.service-simple-hero {
  padding: 170px 0 96px;
  background: #ffffff;
}

.service-simple-hero h1 {
  max-width: 980px;
  font-size: clamp(3.2rem, 7vw, 5.8rem);
}

.chat-pricing-hero {
  padding: 130px 0 44px;
  background: #ffffff;
  border-bottom: 0;
}

.chat-pricing-hero h1 {
  max-width: 940px;
  font-size: clamp(3rem, 4.9vw, 4.35rem);
}

.plan-tabs {
  margin-top: 18px;
}

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

.chat-pricing-grid.hidden {
  display: none;
}

.chat-pricing-grid .price-card {
  min-height: 560px;
  border-color: #e3e3e3;
  box-shadow: none;
}

.chat-pricing-grid .price-card.featured {
  border-color: #0a0a0a;
  box-shadow: none;
}

.comparison-section {
  background: #ffffff;
}

.comparison-table {
  overflow: hidden;
  border: 1px solid #e4e4e4;
  border-radius: 12px;
}

.comparison-table > div {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, minmax(0, 1fr));
}

.comparison-table strong,
.comparison-table span {
  min-height: 58px;
  padding: 16px;
  border-right: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}

.comparison-table strong {
  background: #f7f7f7;
}

.comparison-table span:first-child {
  font-weight: 800;
}

.comparison-table strong:last-child,
.comparison-table span:last-child {
  border-right: 0;
}

.comparison-table > div:last-child span {
  border-bottom: 0;
}

@media (max-width: 980px) {
  .product-header {
    padding: 0 18px;
  }

  .product-nav {
    position: static;
    transform: none;
  }

  .minimal-feature-grid,
  .chat-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .product-nav {
    display: none;
  }

  .minimal-feature-grid,
  .chat-pricing-grid {
    grid-template-columns: 1fr;
  }

  .comparison-table {
    overflow-x: auto;
  }

  .comparison-table > div {
    min-width: 760px;
  }
}

@media (max-width: 560px) {
  .product-header {
    height: 72px;
  }

  .growx-logo {
    height: 26px;
  }

  .service-simple-hero h1,
  .chat-pricing-hero h1 {
    font-size: 3.05rem;
  }

  .service-simple-hero p,
  .chat-pricing-hero p {
    font-size: 1rem;
  }
}

/* ============================================================
   GrowX landing (index.html, body[data-page="home"]) redesign
   Scoped to home page; no shared selector overrides.
   Dials: VARIANCE 8 / MOTION 7 / DENSITY 4
   ============================================================ */

body[data-page="home"] {
  --grx-paper: #fbfaf8;
  --grx-ink: #0a0a0a;
  --grx-ink-soft: #1f2228;
  --grx-ink-mute: #5e6573;
  --grx-ink-faint: #8d93a0;
  --grx-hairline: #ecebe7;
  --grx-hairline-strong: #d8d6cf;
  --grx-pink: #e80052;
  --grx-pink-dark: #b40040;
  --grx-pink-soft: #ffe6ef;
  --grx-cinema: #0c0d10;
  --grx-display: "Geist", "Geist Display", "PingFang SC", "Hiragino Sans GB",
    "Microsoft YaHei", -apple-system, BlinkMacSystemFont, sans-serif;
  --grx-mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --grx-r-surface: 16px;
  --grx-r-button: 8px;
  --grx-r-media: 24px;
  --grx-ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --grx-page-max: 1280px;
  --grx-page-gutter: clamp(20px, 4vw, 56px);
  background: var(--grx-paper);
  color: var(--grx-ink);
}

body[data-page="home"] .grx-page {
  font-family: var(--grx-display);
  font-feature-settings: "ss01", "ss02", "cv11";
  letter-spacing: -0.005em;
}

body[data-page="home"] .site-footer {
  background: var(--grx-paper);
  border-top: 1px solid var(--grx-hairline);
  font-family: var(--grx-display);
}

body[data-page="home"] .footer-inner {
  padding: 56px 0;
  color: var(--grx-ink-mute);
}

body[data-page="home"] .footer-inner span {
  color: var(--grx-ink);
  font-weight: 700;
}

/* Shared reveal primitive: hidden until IntersectionObserver toggles .is-in */
@media (prefers-reduced-motion: no-preference) {
  body[data-page="home"] [data-grx-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition:
      opacity 0.9s var(--grx-ease),
      transform 0.9s var(--grx-ease);
    will-change: opacity, transform;
  }
  body[data-page="home"] [data-grx-reveal].is-in {
    opacity: 1;
    transform: translateY(0);
  }
  body[data-page="home"] [data-grx-reveal][data-grx-delay="1"] { transition-delay: 80ms; }
  body[data-page="home"] [data-grx-reveal][data-grx-delay="2"] { transition-delay: 160ms; }
  body[data-page="home"] [data-grx-reveal][data-grx-delay="3"] { transition-delay: 240ms; }
}

/* ----------- 1. HERO: asymmetric editorial split ------------ */

body[data-page="home"] .grx-hero {
  position: relative;
  min-height: 100dvh;
  padding: 96px var(--grx-page-gutter) 80px;
  background: var(--grx-paper);
  overflow: hidden;
}

body[data-page="home"] .grx-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  align-items: center;
  gap: clamp(32px, 5vw, 96px);
  max-width: var(--grx-page-max);
  margin: 0 auto;
  min-height: calc(100dvh - 176px);
}

body[data-page="home"] .grx-hero-copy {
  padding-right: clamp(0px, 2vw, 24px);
}

body[data-page="home"] .grx-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 36px;
  padding: 8px 14px 8px 12px;
  border: 1px solid var(--grx-hairline);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  color: var(--grx-ink-soft);
  font-family: var(--grx-display);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0;
}

body[data-page="home"] .grx-eyebrow-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grx-pink);
  box-shadow: 0 0 0 4px rgba(232, 0, 82, 0.14);
}

body[data-page="home"] .grx-hero-title {
  margin: 0 0 32px;
  color: var(--grx-ink);
  font-family: var(--grx-display);
  font-size: clamp(3.4rem, 7vw, 6.4rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

body[data-page="home"] .grx-hero-rise {
  display: inline-block;
}

@media (prefers-reduced-motion: no-preference) {
  body[data-page="home"] .grx-hero-copy.is-in .grx-hero-rise {
    animation: grx-headline-in 1s var(--grx-ease) both;
    animation-delay: 80ms;
  }
}

@keyframes grx-headline-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

body[data-page="home"] .grx-hero-lede {
  max-width: 32em;
  margin: 0 0 44px;
  color: var(--grx-ink-mute);
  font-size: 1.18rem;
  line-height: 1.55;
  letter-spacing: -0.005em;
}

body[data-page="home"] .grx-hero-actions {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

body[data-page="home"] .grx-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: var(--grx-r-button);
  font-family: var(--grx-display);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.003em;
  white-space: nowrap;
  transition:
    transform 0.24s var(--grx-ease),
    background 0.24s var(--grx-ease),
    border-color 0.24s var(--grx-ease),
    box-shadow 0.24s var(--grx-ease);
}

body[data-page="home"] .grx-cta--primary {
  background: var(--grx-ink);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(10, 10, 10, 0.18);
}

body[data-page="home"] .grx-cta--primary:hover {
  background: var(--grx-pink);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(232, 0, 82, 0.28);
}

body[data-page="home"] .grx-cta--ghost {
  background: transparent;
  border-color: var(--grx-hairline-strong);
  color: var(--grx-ink);
  padding: 0 22px;
}

body[data-page="home"] .grx-cta--ghost:hover {
  border-color: var(--grx-ink);
  transform: translateY(-2px);
}

body[data-page="home"] .grx-cta-arrow {
  display: inline-block;
  transition: transform 0.24s var(--grx-ease);
}

body[data-page="home"] .grx-cta--ghost:hover .grx-cta-arrow {
  transform: translateY(3px);
}

body[data-page="home"] .grx-hero-figure {
  position: relative;
  margin: 0;
  border-radius: var(--grx-r-media);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #efeeea 0%, #e3e1da 100%);
  box-shadow:
    0 32px 80px rgba(15, 18, 24, 0.16),
    0 2px 4px rgba(15, 18, 24, 0.06);
}

body[data-page="home"] .grx-hero-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (prefers-reduced-motion: no-preference) {
  body[data-page="home"] .grx-hero-figure.is-in img {
    animation: grx-hero-img 1.2s var(--grx-ease) both;
  }
}

@keyframes grx-hero-img {
  from { transform: scale(1.06); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* --------- 2. CAPABILITIES INTRO + STICKY STACK ------------- */

body[data-page="home"] .grx-cap-intro {
  padding: clamp(80px, 12vw, 160px) var(--grx-page-gutter) clamp(40px, 6vw, 80px);
  background: var(--grx-paper);
}

body[data-page="home"] .grx-cap-intro-inner {
  max-width: var(--grx-page-max);
  margin: 0 auto;
}

body[data-page="home"] .grx-eyebrow {
  display: inline-block;
  margin: 0 0 20px;
  padding: 6px 10px;
  border: 1px solid var(--grx-hairline);
  border-radius: 999px;
  color: var(--grx-ink-soft);
  font-family: var(--grx-mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

body[data-page="home"] .grx-cap-intro-title {
  max-width: 18ch;
  margin: 0 0 28px;
  color: var(--grx-ink);
  font-family: var(--grx-display);
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

body[data-page="home"] .grx-cap-intro-lede {
  max-width: 38em;
  margin: 0;
  color: var(--grx-ink-mute);
  font-size: 1.1rem;
  line-height: 1.6;
}

body[data-page="home"] .grx-cap-stack {
  position: relative;
  background: var(--grx-paper);
}

body[data-page="home"] .grx-scene {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  min-height: 100dvh;
  padding: 60px var(--grx-page-gutter);
  background: var(--grx-paper);
}

body[data-page="home"] .grx-scene + .grx-scene {
  border-top: 1px solid var(--grx-hairline);
}

@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    body[data-page="home"] .grx-scene {
      animation: grx-scene-stack linear both;
      animation-timeline: view();
      animation-range: exit 0% exit 100%;
    }
  }
}

@keyframes grx-scene-stack {
  to { transform: scale(0.94); opacity: 0.55; }
}

body[data-page="home"] .grx-scene-inner {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
  width: 100%;
  max-width: var(--grx-page-max);
  margin: 0 auto;
}

body[data-page="home"] .grx-scene-inner--reverse {
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
}

body[data-page="home"] .grx-scene-media {
  position: relative;
  margin: 0;
  border-radius: var(--grx-r-media);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #efeeea;
  box-shadow:
    0 28px 60px rgba(15, 18, 24, 0.12),
    0 1px 2px rgba(15, 18, 24, 0.04);
}

body[data-page="home"] .grx-scene-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body[data-page="home"] .grx-scene-copy {
  padding-right: clamp(0px, 1.5vw, 24px);
}

body[data-page="home"] .grx-scene-index {
  margin: 0 0 16px;
  color: var(--grx-pink);
  font-family: var(--grx-mono);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

body[data-page="home"] .grx-scene-title {
  margin: 0 0 22px;
  color: var(--grx-ink);
  font-family: var(--grx-display);
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.022em;
}

body[data-page="home"] .grx-scene-lede {
  margin: 0 0 28px;
  color: var(--grx-ink-mute);
  font-size: 1.08rem;
  line-height: 1.6;
  max-width: 32em;
}

body[data-page="home"] .grx-scene-points {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body[data-page="home"] .grx-scene-points li {
  position: relative;
  padding-left: 24px;
  color: var(--grx-ink-soft);
  font-size: 0.98rem;
  line-height: 1.5;
}

body[data-page="home"] .grx-scene-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 12px;
  height: 1px;
  background: var(--grx-ink);
}

/* Scene 03: editorial full-bleed image + overlay text */
body[data-page="home"] .grx-scene--03 {
  padding: 0;
  background: var(--grx-cinema);
}

body[data-page="home"] .grx-scene-fullbleed {
  position: relative;
  width: 100%;
  min-height: 100dvh;
  overflow: hidden;
}

body[data-page="home"] .grx-scene-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

body[data-page="home"] .grx-scene-fullbleed::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(12, 13, 16, 0.78) 0%,
    rgba(12, 13, 16, 0.5) 38%,
    rgba(12, 13, 16, 0.15) 100%
  );
  z-index: 1;
}

body[data-page="home"] .grx-scene-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100dvh;
  max-width: var(--grx-page-max);
  margin: 0 auto;
  padding: 80px var(--grx-page-gutter);
}

body[data-page="home"] .grx-scene-overlay .grx-scene-index {
  color: var(--grx-pink);
}

body[data-page="home"] .grx-scene-title--light {
  color: #fdfcfa;
  max-width: 16ch;
}

body[data-page="home"] .grx-scene-lede--light {
  color: rgba(253, 252, 250, 0.78);
  max-width: 28em;
}

/* Scene 04: 2-col bento (big image + 2 stacked text cells) */
body[data-page="home"] .grx-scene-bento {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
  max-width: var(--grx-page-max);
  margin: 0 auto;
  min-height: 78dvh;
}

body[data-page="home"] .grx-bento-media {
  grid-row: 1 / span 2;
  margin: 0;
  border-radius: var(--grx-r-media);
  overflow: hidden;
  background: #efeeea;
  box-shadow:
    0 24px 56px rgba(15, 18, 24, 0.12),
    0 1px 2px rgba(15, 18, 24, 0.04);
}

body[data-page="home"] .grx-bento-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body[data-page="home"] .grx-bento-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 36px;
  border-radius: var(--grx-r-surface);
  background: #ffffff;
  border: 1px solid var(--grx-hairline);
}

body[data-page="home"] .grx-bento-text--top {
  background: var(--grx-ink);
  border-color: var(--grx-ink);
}

body[data-page="home"] .grx-bento-text--top .grx-scene-index {
  color: var(--grx-pink);
}

body[data-page="home"] .grx-bento-text--top .grx-scene-title {
  color: #fdfcfa;
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  margin-bottom: 14px;
}

body[data-page="home"] .grx-bento-text--top .grx-scene-lede {
  color: rgba(253, 252, 250, 0.74);
  font-size: 0.98rem;
  margin: 0;
}

body[data-page="home"] .grx-bento-meta {
  margin: 0 0 12px;
  color: var(--grx-pink);
  font-family: var(--grx-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

body[data-page="home"] .grx-bento-meta-body {
  margin: 0;
  color: var(--grx-ink-soft);
  font-size: 1rem;
  line-height: 1.55;
}

/* ----------- 3. WORKSPACE SHOWCASE ------------ */

body[data-page="home"] .grx-workspace {
  position: relative;
  padding: clamp(96px, 14vw, 180px) var(--grx-page-gutter)
    clamp(96px, 14vw, 180px);
  background: var(--grx-paper);
  border-top: 1px solid var(--grx-hairline);
}

body[data-page="home"] .grx-workspace-inner {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
  max-width: var(--grx-page-max);
  margin: 0 auto;
}

body[data-page="home"] .grx-workspace-media {
  position: relative;
  border-radius: var(--grx-r-media);
  overflow: hidden;
  background: #efeeea;
  aspect-ratio: 16 / 9;
  box-shadow:
    0 36px 80px rgba(15, 18, 24, 0.18),
    0 2px 6px rgba(15, 18, 24, 0.06);
}

body[data-page="home"] .grx-workspace-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (prefers-reduced-motion: no-preference) {
  body[data-page="home"] .grx-workspace-media.is-in img {
    animation: grx-workspace-img 1s var(--grx-ease) both;
  }
}

@keyframes grx-workspace-img {
  from { transform: scale(1.04); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

body[data-page="home"] .grx-workspace-aside {
  position: sticky;
  top: 120px;
  padding-top: 4px;
}

body[data-page="home"] .grx-workspace-title {
  margin: 0 0 36px;
  color: var(--grx-ink);
  font-family: var(--grx-display);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.022em;
}

body[data-page="home"] .grx-workspace-points {
  display: grid;
  gap: 26px;
  margin: 0 0 40px;
  padding: 0;
  list-style: none;
}

body[data-page="home"] .grx-workspace-points li {
  display: grid;
  gap: 6px;
  padding-top: 18px;
  border-top: 1px solid var(--grx-hairline);
}

body[data-page="home"] .grx-workspace-points li:first-child {
  padding-top: 0;
  border-top: 0;
}

body[data-page="home"] .grx-workspace-points strong {
  font-family: var(--grx-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--grx-ink);
  letter-spacing: -0.005em;
}

body[data-page="home"] .grx-workspace-points span {
  color: var(--grx-ink-mute);
  font-size: 0.98rem;
  line-height: 1.55;
}

body[data-page="home"] .grx-cta--workspace {
  margin-top: 4px;
}

/* ----------- 4. RESPONSIVE: < 1024px and < 768px ------------ */

@media (max-width: 1024px) {
  body[data-page="home"] .grx-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    min-height: auto;
  }
  body[data-page="home"] .grx-hero {
    padding-top: 80px;
  }
  body[data-page="home"] .grx-hero-figure {
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
  }
  body[data-page="home"] .grx-workspace-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  body[data-page="home"] .grx-workspace-aside {
    position: static;
    top: auto;
  }
}

@media (max-width: 768px) {
  body[data-page="home"] {
    --grx-page-gutter: 20px;
  }
  body[data-page="home"] .grx-hero {
    padding: 56px var(--grx-page-gutter) 64px;
  }
  body[data-page="home"] .grx-hero-title {
    font-size: clamp(2.6rem, 11vw, 3.6rem);
  }
  body[data-page="home"] .grx-hero-lede {
    font-size: 1.05rem;
  }
  body[data-page="home"] .grx-cta {
    min-height: 48px;
    padding: 0 22px;
    font-size: 0.98rem;
  }
  body[data-page="home"] .grx-cap-intro {
    padding-top: 80px;
    padding-bottom: 32px;
  }
  body[data-page="home"] .grx-cap-intro-title {
    font-size: clamp(2rem, 8.5vw, 2.8rem);
  }
  /* Disable sticky stacking on mobile: each scene becomes its own block */
  body[data-page="home"] .grx-scene {
    position: relative;
    top: auto;
    min-height: auto;
    padding: 80px var(--grx-page-gutter);
  }
  body[data-page="home"] .grx-scene-inner,
  body[data-page="home"] .grx-scene-inner--reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  body[data-page="home"] .grx-scene-inner--reverse .grx-scene-media {
    order: -1;
  }
  body[data-page="home"] .grx-scene--03 {
    padding: 0;
  }
  body[data-page="home"] .grx-scene-fullbleed,
  body[data-page="home"] .grx-scene-overlay {
    min-height: 86dvh;
  }
  body[data-page="home"] .grx-scene-overlay {
    padding: 64px var(--grx-page-gutter);
  }
  body[data-page="home"] .grx-scene-bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: auto;
  }
  body[data-page="home"] .grx-bento-media {
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }
  body[data-page="home"] .grx-bento-text {
    padding: 28px 24px;
  }
  body[data-page="home"] .grx-scene-title {
    font-size: clamp(1.9rem, 6vw, 2.4rem);
  }
  body[data-page="home"] .grx-workspace {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  /* Disable view-timeline scene transform on mobile to avoid jitter */
  body[data-page="home"] .grx-scene {
    animation: none;
  }
}

/* prefers-reduced-motion: kill all transform/opacity animations,
   keep layout intact for everyone */
@media (prefers-reduced-motion: reduce) {
  body[data-page="home"] [data-grx-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  body[data-page="home"] .grx-hero-rise {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  body[data-page="home"] .grx-hero-figure img,
  body[data-page="home"] .grx-workspace-media img {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  body[data-page="home"] .grx-scene {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
