:root {
  --ink-950: #071c21;
  --ink-900: #0a272d;
  --ink-800: #12383e;
  --ink-700: #285158;
  --brand-900: #034e56;
  --brand-700: #066d77;
  --brand-600: #087f83;
  --mint-400: #75dccb;
  --mint-300: #b3decd;
  --mint-200: #d4eee4;
  --surface: #f8faf9;
  --surface-2: #eef5f2;
  --surface-3: #e4efeb;
  --line: #cfe0db;
  --line-dark: rgba(179, 222, 205, 0.16);
  --white: #ffffff;
  --muted: #5e7377;
  --glow: rgba(117, 220, 203, 0.28);
  --shadow-sm: 0 14px 40px rgba(7, 28, 33, 0.07);
  --shadow-lg: 0 30px 90px rgba(4, 21, 25, 0.24);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1240px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink-800);
  background: var(--surface);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

::selection {
  color: var(--ink-950);
  background: var(--mint-300);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  display: block;
  max-width: 100%;
}

ul,
ol,
dl {
  margin-top: 0;
}

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

h1,
h2,
h3 {
  color: var(--ink-950);
  font-family: "Montserrat", "Inter", sans-serif;
  font-weight: 600;
  text-wrap: balance;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.35rem, 4.7vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

h3 {
  font-size: 1.24rem;
  line-height: 1.28;
  letter-spacing: -0.02em;
}

:focus-visible {
  outline: 3px solid var(--mint-400);
  outline-offset: 4px;
}

.container {
  width: min(var(--container), calc(100% - 64px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(92px, 10vw, 148px);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  border-radius: 10px;
  color: var(--ink-950);
  background: var(--mint-300);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.scroll-progress {
  position: fixed;
  z-index: 120;
  inset: 0 0 auto;
  height: 2px;
  background: transparent;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--mint-400), var(--mint-300));
  box-shadow: 0 0 16px var(--mint-400);
  transform: scaleX(0);
  transform-origin: left;
}

.eyebrow,
.section-label,
.section-number,
.card-label {
  margin-bottom: 18px;
  color: var(--brand-700);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-label.light {
  color: var(--mint-400);
}

.section-number {
  color: #6d868a;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease;
}

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 220ms ease;
}

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

.button:hover svg {
  transform: translateX(3px);
}

.button-primary {
  color: var(--ink-950);
  background: var(--mint-300);
  box-shadow: 0 12px 34px rgba(117, 220, 203, 0.16);
}

.button-primary:hover {
  background: #c7e9dc;
  box-shadow: 0 18px 42px rgba(117, 220, 203, 0.24);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(179, 222, 205, 0.32);
  background: rgba(179, 222, 205, 0.06);
}

.button-ghost:hover {
  border-color: rgba(179, 222, 205, 0.68);
  background: rgba(179, 222, 205, 0.11);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  padding: 18px 24px;
  transition: padding 240ms ease;
}

.header-inner {
  display: flex;
  width: min(1340px, 100%);
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-inline: auto;
  padding: 8px 10px 8px 14px;
  border: 1px solid transparent;
  border-radius: 17px;
  color: var(--white);
  transition:
    min-height 240ms ease,
    color 240ms ease,
    border-color 240ms ease,
    background 240ms ease,
    box-shadow 240ms ease;
}

.site-header.is-scrolled {
  padding-top: 10px;
}

.site-header.is-scrolled .header-inner,
.site-header.is-open .header-inner {
  min-height: 62px;
  color: var(--ink-950);
  border-color: rgba(207, 224, 219, 0.78);
  background: rgba(248, 250, 249, 0.98);
  box-shadow: 0 12px 40px rgba(7, 28, 33, 0.08);
}

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

.brand-symbol {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  overflow: hidden;
}

.brand-symbol img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand-name {
  display: grid;
  gap: 2px;
}

.brand-name strong {
  color: currentColor;
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
  line-height: 1;
}

.brand-name small {
  color: currentColor;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.065em;
  opacity: 0.66;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 34px);
  font-size: 0.84rem;
  font-weight: 600;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  padding-block: 12px;
  opacity: 0.82;
  transition: color 180ms ease, opacity 180ms ease;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--mint-400);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav > a:hover,
.site-nav > a.is-active {
  opacity: 1;
}

.site-nav > a:hover::after,
.site-nav > a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid rgba(179, 222, 205, 0.42);
  border-radius: 10px;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-cta:hover {
  color: var(--ink-950);
  border-color: var(--mint-300);
  background: var(--mint-300);
}

.site-header.is-scrolled .nav-cta,
.site-header.is-open .nav-cta {
  color: var(--white);
  border-color: var(--brand-700);
  background: var(--brand-700);
}

.nav-toggle {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 940px;
  display: grid;
  align-items: center;
  padding: 156px 0 116px;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 40%, rgba(6, 109, 119, 0.34), transparent 28%),
    radial-gradient(circle at 84% 32%, rgba(117, 220, 203, 0.11), transparent 16%),
    linear-gradient(145deg, #05171b 0%, var(--ink-950) 50%, #08272d 100%);
  isolation: isolate;
  overflow: hidden;
}

.hero-grid-lines,
.contact-grid-lines {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(179, 222, 205, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(179, 222, 205, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black 0%, rgba(0, 0, 0, 0.9) 65%, transparent 100%);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.hero-glow-one {
  top: 9%;
  right: -10%;
  width: 44vw;
  height: 44vw;
  border: 1px solid rgba(117, 220, 203, 0.1);
  box-shadow:
    inset 0 0 90px rgba(117, 220, 203, 0.035),
    0 0 160px rgba(6, 109, 119, 0.1);
  animation: float-orb 20s ease-in-out infinite alternate;
}

.hero-glow-two {
  bottom: -22%;
  left: -12%;
  width: 36vw;
  height: 36vw;
  background: rgba(6, 109, 119, 0.08);
  filter: blur(70px);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  align-items: center;
  gap: clamp(52px, 7vw, 108px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--mint-300);
}

.hero .eyebrow > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint-400);
  box-shadow: 0 0 0 5px rgba(117, 220, 203, 0.1), 0 0 18px var(--mint-400);
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 26px;
  color: var(--white);
  font-size: clamp(3.75rem, 6.8vw, 6.65rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.hero h1 em {
  display: block;
  color: var(--mint-300);
  font-style: normal;
  font-weight: 500;
}

.hero-lead {
  max-width: 670px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 38px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 600;
  list-style: none;
}

.hero-proof li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-proof li span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mint-400);
  box-shadow: 0 0 10px rgba(117, 220, 203, 0.7);
}

.intelligence-stage {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
}

.stage-watermark {
  position: absolute;
  z-index: -1;
  width: min(660px, 120%);
  opacity: 0.055;
  filter: grayscale(1) brightness(3);
  transform: rotate(-5deg) scale(1.05);
}

.intelligence-panel {
  position: relative;
  width: min(100%, 520px);
  padding: 24px;
  border: 1px solid rgba(179, 222, 205, 0.2);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(179, 222, 205, 0.025)),
    rgba(6, 34, 40, 0.66);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.32),
    inset 0 1px rgba(255, 255, 255, 0.08),
    0 0 60px rgba(117, 220, 203, 0.06);
  backdrop-filter: blur(22px) saturate(120%);
  overflow: hidden;
}

.intelligence-panel::before {
  display: none;
}

.panel-topline,
.card-topline,
.form-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.panel-topline > div {
  display: grid;
  gap: 4px;
}

.panel-kicker,
.card-topline,
.form-topline {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.panel-topline strong {
  color: var(--white);
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 1.1rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(117, 220, 203, 0.22);
  border-radius: 99px;
  color: var(--mint-300);
  background: rgba(117, 220, 203, 0.07);
  font-size: 0.61rem;
  font-weight: 700;
  white-space: nowrap;
}

.status-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint-400);
  box-shadow: 0 0 10px var(--mint-400);
}

.opportunity-map {
  position: relative;
  width: 252px;
  height: 252px;
  display: grid;
  place-items: center;
  margin: 28px auto 24px;
}

.opportunity-map::before,
.opportunity-map::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.opportunity-map::before {
  inset: 13%;
  border: 1px dashed rgba(179, 222, 205, 0.15);
}

.opportunity-map::after {
  inset: 30%;
  border: 1px solid rgba(117, 220, 203, 0.12);
  background: radial-gradient(circle, rgba(117, 220, 203, 0.1), transparent 72%);
}

.orbit {
  position: absolute;
  border-radius: 50%;
}

.orbit-one {
  inset: 2%;
  border: 1px solid rgba(179, 222, 205, 0.18);
  box-shadow: inset 0 0 50px rgba(117, 220, 203, 0.025);
}

.orbit-two {
  inset: 19%;
  border: 1px solid rgba(179, 222, 205, 0.11);
}

.scan-line {
  position: absolute;
  z-index: 1;
  width: 49%;
  height: 1px;
  left: 50%;
  background: linear-gradient(90deg, rgba(117, 220, 203, 0.75), transparent);
  box-shadow: 0 0 12px rgba(117, 220, 203, 0.4);
  transform-origin: left center;
  animation: scan 8s linear infinite;
}

.map-node {
  position: absolute;
  z-index: 2;
  width: 8px;
  height: 8px;
  border: 1px solid var(--mint-300);
  border-radius: 50%;
  background: var(--brand-900);
  box-shadow: 0 0 0 5px rgba(117, 220, 203, 0.08), 0 0 15px rgba(117, 220, 203, 0.5);
}

.node-one { top: 15%; right: 20%; }
.node-two { right: 8%; bottom: 29%; }
.node-three { bottom: 12%; left: 25%; }

.map-core {
  position: relative;
  z-index: 3;
  width: 112px;
  height: 112px;
  display: grid;
  grid-template-columns: auto auto;
  align-content: center;
  justify-content: center;
  border: 1px solid rgba(179, 222, 205, 0.2);
  border-radius: 50%;
  background: rgba(7, 28, 33, 0.82);
  box-shadow: 0 0 40px rgba(117, 220, 203, 0.11);
}

.map-core small {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.map-core strong {
  color: var(--white);
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 2.5rem;
  line-height: 1;
}

.map-core span {
  align-self: end;
  padding-bottom: 4px;
  color: var(--mint-400);
  font-size: 0.65rem;
}

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

.metric-grid article {
  min-width: 0;
  padding: 13px 12px;
  border: 1px solid rgba(179, 222, 205, 0.11);
  border-radius: 12px;
  background: rgba(179, 222, 205, 0.035);
}

.metric-grid span,
.metric-grid small {
  display: block;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.52rem;
  line-height: 1.4;
}

.metric-grid strong {
  display: block;
  margin-block: 3px;
  color: var(--white);
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 1.1rem;
  line-height: 1;
}

.signal-bars {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

.signal-bars > div {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 12px;
}

.signal-bars span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.6rem;
}

.signal-bars i {
  height: 4px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.signal-bars b {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand-700), var(--mint-400));
  box-shadow: 0 0 12px rgba(117, 220, 203, 0.35);
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1) 400ms;
}

.intelligence-stage.is-visible .signal-bars b {
  width: var(--bar);
}

.floating-chip {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid rgba(179, 222, 205, 0.18);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(7, 28, 33, 0.78);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
  font-size: 0.65rem;
  font-weight: 600;
  animation: float-chip 6s ease-in-out infinite alternate;
}

.floating-chip span {
  color: var(--mint-400);
  font-family: "Montserrat", "Inter", sans-serif;
}

.chip-one { top: -10%; left: 8%; }
.chip-two { top: 42%; right: -5%; animation-delay: -2s; }
.chip-three { bottom: -10%; left: 8%; animation-delay: -4s; }

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 21px;
  height: 34px;
  border: 1px solid rgba(179, 222, 205, 0.25);
  border-radius: 99px;
}

.scroll-cue span::after {
  display: block;
  width: 3px;
  height: 6px;
  margin: 7px auto;
  border-radius: 99px;
  background: var(--mint-400);
  content: "";
  animation: scroll-dot 2s ease-in-out infinite;
}

.signal-strip {
  position: relative;
  z-index: 2;
  overflow: hidden;
  color: var(--ink-950);
  background: var(--mint-300);
}

.signal-strip > div {
  display: flex;
  min-width: max-content;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 42px);
  padding: 17px 32px;
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-strip i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brand-700);
}

/* Intro */
.intro {
  background: var(--surface);
}

.intro-layout {
  display: grid;
  grid-template-columns: 0.55fr 1.6fr 1fr;
  align-items: start;
  gap: clamp(34px, 6vw, 90px);
}

.intro-copy h2 {
  max-width: 760px;
}

.intro-text {
  padding-top: 44px;
  border-top: 1px solid var(--line);
}

.intro-text p {
  color: var(--muted);
}

.intro-text p:last-child {
  margin-bottom: 0;
}

/* Founder service */
.founder-service {
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 88% 18%, rgba(6, 109, 119, 0.28), transparent 26%),
    linear-gradient(145deg, var(--ink-950), #0a2a30);
  overflow: hidden;
}

.founder-service::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(179, 222, 205, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(179, 222, 205, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  mask-image: radial-gradient(circle at 60% 40%, black, transparent 70%);
  pointer-events: none;
}

.founder-service h2,
.founder-service h3 {
  color: var(--white);
}

.founder-heading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  align-items: end;
  gap: clamp(40px, 8vw, 120px);
  margin-bottom: 58px;
}

.founder-heading p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
}

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

.founder-map-card,
.analysis-card {
  position: relative;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(12px);
  overflow: hidden;
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.founder-map-card:hover,
.analysis-card:hover {
  border-color: rgba(117, 220, 203, 0.34);
  transform: translateY(-4px);
}

.founder-map-card {
  min-height: 600px;
  grid-column: span 2;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background:
    radial-gradient(circle at 50% 48%, rgba(117, 220, 203, 0.1), transparent 34%),
    rgba(255, 255, 255, 0.035);
}

.card-topline span:last-child {
  color: var(--mint-400);
}

.decision-map {
  position: relative;
  flex: 1;
  min-height: 440px;
  display: grid;
  place-items: center;
  margin-block: 12px;
}

.decision-map::before,
.decision-map::after {
  position: absolute;
  border: 1px solid rgba(179, 222, 205, 0.1);
  border-radius: 50%;
  content: "";
}

.decision-map::before {
  width: min(76%, 410px);
  aspect-ratio: 1;
}

.decision-map::after {
  width: min(48%, 260px);
  aspect-ratio: 1;
  border-style: dashed;
}

.decision-core {
  position: relative;
  z-index: 2;
  width: 158px;
  height: 158px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(179, 222, 205, 0.22);
  border-radius: 50%;
  background: rgba(7, 28, 33, 0.9);
  box-shadow: 0 0 70px rgba(117, 220, 203, 0.12);
}

.decision-core img {
  width: 76px;
  margin-bottom: -25px;
}

.decision-core span {
  color: var(--white);
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 0.78rem;
}

.decision-tag {
  position: absolute;
  z-index: 3;
  min-width: 104px;
  padding: 10px 13px;
  border: 1px solid rgba(179, 222, 205, 0.17);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.73);
  background: rgba(7, 28, 33, 0.78);
  font-size: 0.66rem;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.decision-tag::before {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mint-400);
  box-shadow: 0 0 8px var(--mint-400);
  content: "";
}

.tag-population { top: 11%; left: 15%; }
.tag-population::before { right: -29%; bottom: -21px; }
.tag-audience { top: 10%; right: 14%; }
.tag-audience::before { bottom: -33px; left: -12%; }
.tag-demand { top: 46%; right: 4%; }
.tag-demand::before { bottom: -25px; left: -22%; }
.tag-location { right: 14%; bottom: 9%; }
.tag-location::before { top: -28px; left: -12%; }
.tag-competition { bottom: 9%; left: 15%; }
.tag-competition::before { top: -29px; right: -17%; }
.tag-channels { top: 46%; left: 4%; }
.tag-channels::before { top: -21px; right: -23%; }

.deliverable-line {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.deliverable-line i {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(117, 220, 203, 0.3), rgba(117, 220, 203, 0.06));
}

.analysis-card {
  min-height: 293px;
  padding: 25px;
}

.analysis-card::after,
.service-card::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 36px;
  height: 66px;
  background: linear-gradient(135deg, transparent 49%, rgba(117, 220, 203, 0.34) 50%);
  content: "";
  clip-path: polygon(100% 0, 100% 100%, 0 68%);
  opacity: 0.5;
}

.analysis-number,
.card-index {
  position: absolute;
  top: 22px;
  right: 25px;
  color: rgba(255, 255, 255, 0.24);
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 0.68rem;
}

.mini-icon,
.service-icon {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(179, 222, 205, 0.2);
  border-radius: 12px;
  color: var(--mint-400);
  background: rgba(117, 220, 203, 0.06);
}

.mini-icon svg,
.service-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.analysis-card h3 {
  max-width: 240px;
  margin-bottom: 12px;
}

.analysis-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.88rem;
  line-height: 1.65;
}

.accent-analysis {
  border-color: rgba(117, 220, 203, 0.25);
  background: linear-gradient(145deg, rgba(117, 220, 203, 0.11), rgba(117, 220, 203, 0.03));
}

.founder-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 14px;
  padding: 26px 30px;
  border: 1px solid rgba(179, 222, 205, 0.17);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
}

.founder-cta > div {
  display: grid;
}

.founder-cta span {
  color: var(--mint-400);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founder-cta strong {
  color: var(--white);
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
}

/* Services */
.services {
  background: var(--surface-2);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: clamp(40px, 8vw, 112px);
  margin-bottom: 54px;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
}

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

.service-card {
  position: relative;
  min-height: 330px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 4px 20px rgba(7, 28, 33, 0.025);
  overflow: hidden;
  transition: transform 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}

.service-card:hover {
  border-color: #9dc9bc;
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.service-card .card-index {
  color: #8aa19d;
}

.service-card .service-icon {
  color: var(--brand-700);
  border-color: #c3ded6;
  background: var(--surface-2);
}

.service-card .card-label {
  margin-bottom: 10px;
  font-size: 0.63rem;
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: 1.4rem;
}

.service-card p:not(.card-label) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.service-featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 82px 1fr;
  align-items: end;
  background:
    radial-gradient(circle at 10% 100%, rgba(117, 220, 203, 0.18), transparent 32%),
    var(--white);
}

.service-featured .service-icon {
  width: 60px;
  height: 60px;
  margin: 0;
}

.service-featured .service-icon svg {
  width: 27px;
  height: 27px;
}

.service-featured h3 {
  max-width: 590px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.service-featured p:not(.card-label) {
  max-width: 670px;
}

.service-featured a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--brand-700);
  font-size: 0.82rem;
  font-weight: 700;
}

.service-featured a span,
.text-link span {
  transition: transform 180ms ease;
}

.service-featured a:hover span,
.text-link:hover span {
  transform: translate(3px, -3px);
}

/* Method */
.method {
  color: rgba(255, 255, 255, 0.66);
  background: var(--ink-950);
  overflow: hidden;
}

.method h2,
.method h3 {
  color: var(--white);
}

.method-heading {
  position: relative;
}

.method-heading > p {
  color: rgba(255, 255, 255, 0.52);
}

.method-orb {
  position: absolute;
  top: -220px;
  right: -100px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(117, 220, 203, 0.08);
  border-radius: 50%;
  box-shadow: inset 0 0 120px rgba(117, 220, 203, 0.03);
}

.method-orb::before,
.method-orb::after {
  position: absolute;
  border: 1px solid rgba(117, 220, 203, 0.07);
  border-radius: 50%;
  content: "";
}

.method-orb::before { inset: 90px; }
.method-orb::after { inset: 180px; }

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 70px 0 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 24px 0 0;
  border-top: 1px solid rgba(179, 222, 205, 0.16);
}

.process-list li:not(:last-child)::after {
  position: absolute;
  top: -3px;
  right: 20px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mint-400);
  box-shadow: 0 0 12px rgba(117, 220, 203, 0.7);
  content: "";
}

.process-list > li > span {
  display: inline-block;
  width: fit-content;
  margin-top: 18px;
  color: var(--mint-400);
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 0.74rem;
}

.process-list h3 {
  margin-bottom: 10px;
}

.process-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.82rem;
  line-height: 1.55;
}

/* Outcomes */
.outcomes {
  background: var(--surface);
}

.outcomes-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
  gap: clamp(50px, 9vw, 130px);
}

.outcomes-copy {
  position: sticky;
  top: 130px;
}

.outcomes-copy h2 {
  margin-bottom: 28px;
}

.outcomes-copy > p:not(.section-number, .section-label) {
  color: var(--muted);
}

.outcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.outcome-grid article {
  position: relative;
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-2);
  overflow: hidden;
}

.outcome-grid article:nth-child(2),
.outcome-grid article:nth-child(3) {
  background: var(--ink-950);
}

.outcome-grid article:nth-child(2) h3,
.outcome-grid article:nth-child(3) h3 {
  color: var(--white);
}

.outcome-grid article:nth-child(2) p,
.outcome-grid article:nth-child(3) p {
  color: rgba(255, 255, 255, 0.5);
}

.outcome-grid article::after {
  position: absolute;
  right: -55px;
  bottom: -55px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(6, 109, 119, 0.12);
  border-radius: 50%;
  content: "";
}

.outcome-grid article span {
  display: block;
  margin-bottom: 74px;
  color: var(--brand-700);
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 0.72rem;
}

.outcome-grid article:nth-child(2) span,
.outcome-grid article:nth-child(3) span {
  color: var(--mint-400);
}

.outcome-grid h3 {
  margin-bottom: 10px;
}

.outcome-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

/* FAQ */
.faq {
  background: var(--surface-2);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(52px, 9vw, 130px);
}

.faq-heading {
  position: sticky;
  top: 130px;
}

.faq-heading h2 {
  margin-bottom: 26px;
}

.faq-heading > p:last-child {
  color: var(--muted);
}

.accordion {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  width: 100%;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border: 0;
  color: var(--ink-950);
  background: transparent;
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-item button > span {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background 180ms ease, border-color 180ms ease;
}

.faq-item button > span::before,
.faq-item button > span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background: var(--brand-700);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-item button > span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item button[aria-expanded="true"] > span {
  border-color: var(--mint-300);
  background: var(--mint-300);
}

.faq-item button[aria-expanded="true"] > span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  padding: 0 70px 24px 0;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
}

/* Contact */
.contact {
  color: rgba(255, 255, 255, 0.68);
  background:
    radial-gradient(circle at 78% 30%, rgba(6, 109, 119, 0.28), transparent 29%),
    var(--ink-950);
  overflow: hidden;
}

.contact h2 {
  color: var(--white);
}

.contact-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(440px, 1.14fr);
  align-items: center;
  gap: clamp(60px, 10vw, 144px);
}

.contact-copy h2 {
  margin-bottom: 24px;
}

.contact-copy > p:not(.section-label) {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.55);
}

.contact-copy ul {
  display: grid;
  gap: 14px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.contact-copy li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.83rem;
}

.contact-copy li span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(179, 222, 205, 0.18);
  border-radius: 50%;
  color: var(--mint-400);
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 0.58rem;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(179, 222, 205, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
}

.form-topline {
  align-items: center;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.52);
}

.form-topline i {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(117, 220, 203, 0.3), transparent);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

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

.contact-form label > span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.72rem;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(179, 222, 205, 0.16);
  border-radius: 11px;
  outline: 0;
  color: var(--white);
  background: rgba(7, 28, 33, 0.56);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form input,
.contact-form select {
  min-height: 52px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 132px;
  padding: 13px 14px;
  resize: vertical;
}

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

.contact-form select option {
  color: var(--ink-950);
  background: var(--white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--mint-400);
  background: rgba(7, 28, 33, 0.78);
  box-shadow: 0 0 0 3px rgba(117, 220, 203, 0.1);
}

.contact-form .is-invalid {
  border-color: #f29b8d;
  box-shadow: 0 0 0 3px rgba(242, 155, 141, 0.1);
}

.contact-form .button {
  width: 100%;
  margin-top: 2px;
}

.form-note,
.form-status {
  margin: 0;
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.64rem;
  line-height: 1.55;
}

.form-status:not(:empty) {
  padding: 10px 12px;
  border: 1px solid rgba(117, 220, 203, 0.2);
  border-radius: 9px;
  color: var(--mint-300);
  background: rgba(117, 220, 203, 0.06);
}

/* Footer */
.site-footer {
  color: rgba(255, 255, 255, 0.6);
  background: #041317;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding-block: 54px;
}

.footer-brand {
  color: var(--white);
}

.footer-main > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.83rem;
}

.footer-main nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
  font-size: 0.73rem;
  font-weight: 600;
}

.footer-main nav a:hover {
  color: var(--mint-300);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 20px;
  border-top: 1px solid rgba(179, 222, 205, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.64rem;
  letter-spacing: 0.04em;
}

.footer-bottom p:last-child {
  color: var(--mint-400);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Motion */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 600ms ease,
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-grid .reveal:nth-child(2),
.founder-bento .reveal:nth-child(2),
.outcome-grid .reveal:nth-child(2) { transition-delay: 70ms; }
.service-grid .reveal:nth-child(3),
.founder-bento .reveal:nth-child(3),
.outcome-grid .reveal:nth-child(3) { transition-delay: 140ms; }
.service-grid .reveal:nth-child(4),
.founder-bento .reveal:nth-child(4),
.outcome-grid .reveal:nth-child(4) { transition-delay: 210ms; }
.service-grid .reveal:nth-child(5),
.founder-bento .reveal:nth-child(5) { transition-delay: 280ms; }
.service-grid .reveal:nth-child(6),
.founder-bento .reveal:nth-child(6) { transition-delay: 350ms; }
.founder-bento .reveal:nth-child(7) { transition-delay: 420ms; }

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

@keyframes float-orb {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-3%, 4%, 0) scale(1.06); }
}

@keyframes float-chip {
  from { transform: translateY(-5px); }
  to { transform: translateY(7px); }
}

@keyframes scroll-dot {
  0%, 100% { opacity: 0.25; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(11px); }
}

/* Responsive */
@media (max-width: 1120px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.8fr);
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(3.65rem, 7vw, 5.7rem);
  }

  .floating-chip {
    display: none;
  }

  .founder-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .founder-map-card {
    grid-column: span 2;
    grid-row: auto;
  }

  .process-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 0;
  }

  .process-list li {
    min-height: 220px;
  }
}

@media (max-width: 920px) {
  .container {
    width: min(var(--container), calc(100% - 40px));
  }

  .site-header {
    padding: 10px 12px;
  }

  .header-inner {
    min-height: 60px;
    padding-inline: 10px 8px;
  }

  .nav-toggle {
    position: relative;
    z-index: 102;
    width: 46px;
    height: 46px;
    display: grid;
    align-content: center;
    gap: 7px;
    padding: 12px;
    border: 1px solid rgba(179, 222, 205, 0.2);
    border-radius: 11px;
    color: inherit;
    background: rgba(179, 222, 205, 0.06);
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 101;
    inset: 82px 12px auto;
    display: grid;
    gap: 2px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    color: var(--ink-950);
    background: rgba(248, 250, 249, 0.97);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav > a:not(.nav-cta) {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 9px;
  }

  .site-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .site-nav > a:not(.nav-cta):hover {
    background: var(--surface-2);
  }

  .nav-cta,
  .site-header.is-scrolled .nav-cta,
  .site-header.is-open .nav-cta {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 6px;
    color: var(--white);
    background: var(--brand-700);
  }

  .hero {
    min-height: auto;
    padding: 138px 0 92px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 740px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 10vw, 5.5rem);
  }

  .intelligence-stage {
    width: min(620px, 100%);
    min-height: 570px;
    margin-inline: auto;
  }

  .scroll-cue {
    display: none;
  }

  .intro-layout,
  .founder-heading,
  .section-heading,
  .outcomes-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .intro-layout {
    gap: 28px;
  }

  .intro-text {
    padding-top: 28px;
  }

  .founder-heading,
  .section-heading {
    gap: 28px;
  }

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

  .outcomes-copy,
  .faq-heading {
    position: static;
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout {
    gap: 50px;
  }

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

  .footer-main > p {
    grid-row: 2;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .section {
    padding-block: 82px;
  }

  .brand-symbol {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .brand-symbol img {
    width: 42px;
    height: 42px;
  }

  .brand-name small {
    display: none;
  }

  .hero {
    padding: 120px 0 76px;
  }

  .hero-grid-lines,
  .contact-grid-lines {
    background-size: 36px 36px;
  }

  .hero .eyebrow {
    margin-bottom: 18px;
    font-size: 0.64rem;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(2.8rem, 14.5vw, 4.1rem);
    line-height: 0.98;
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-proof {
    display: grid;
    gap: 9px;
    margin-top: 28px;
  }

  .intelligence-stage {
    min-height: 520px;
    margin-top: 12px;
  }

  .intelligence-panel {
    padding: 18px;
    border-radius: 20px;
  }

  .panel-topline {
    align-items: center;
  }

  .panel-kicker {
    font-size: 0.5rem;
  }

  .panel-topline strong {
    font-size: 0.98rem;
  }

  .status-pill {
    font-size: 0.54rem;
  }

  .opportunity-map {
    width: 216px;
    height: 216px;
    margin-block: 20px;
  }

  .map-core {
    width: 96px;
    height: 96px;
  }

  .map-core strong {
    font-size: 2.05rem;
  }

  .metric-grid {
    gap: 5px;
  }

  .metric-grid article {
    padding: 11px 8px;
  }

  .metric-grid strong {
    font-size: 0.95rem;
  }

  .metric-grid span,
  .metric-grid small {
    font-size: 0.47rem;
  }

  .signal-strip {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .signal-strip::-webkit-scrollbar {
    display: none;
  }

  .signal-strip > div {
    justify-content: flex-start;
    padding-inline: 18px;
  }

  .founder-bento,
  .service-grid,
  .process-list,
  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .founder-map-card,
  .service-featured {
    grid-column: auto;
  }

  .founder-map-card {
    min-height: 520px;
    padding: 20px;
  }

  .decision-map {
    min-height: 390px;
  }

  .decision-map::before {
    width: 92%;
  }

  .decision-map::after {
    width: 58%;
  }

  .decision-core {
    width: 126px;
    height: 126px;
  }

  .decision-tag {
    min-width: auto;
    padding: 8px 9px;
    font-size: 0.57rem;
  }

  .tag-population { top: 8%; left: 2%; }
  .tag-audience { top: 8%; right: 2%; }
  .tag-demand { top: 46%; right: -1%; }
  .tag-location { right: 2%; bottom: 7%; }
  .tag-competition { bottom: 7%; left: 2%; }
  .tag-channels { top: 46%; left: -1%; }

  .deliverable-line {
    gap: 5px;
    font-size: 0.44rem;
  }

  .analysis-card,
  .service-card {
    min-height: auto;
  }

  .analysis-card {
    padding: 24px;
  }

  .founder-cta {
    align-items: stretch;
    flex-direction: column;
    padding: 22px;
  }

  .service-featured {
    display: block;
  }

  .service-featured .service-icon {
    margin-bottom: 28px;
  }

  .process-list {
    gap: 0;
  }

  .process-list li {
    min-height: auto;
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 14px;
    padding: 24px 0;
    border-top: 1px solid rgba(179, 222, 205, 0.16);
  }

  .process-list li::after {
    display: none;
  }

  .process-list > li > span {
    margin: 0;
  }

  .outcome-grid article {
    min-height: 220px;
  }

  .outcome-grid article span {
    margin-bottom: 54px;
  }

  .faq-answer {
    padding-right: 20px;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-form {
    padding: 22px;
    border-radius: 22px;
  }

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

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-main > p {
    grid-row: auto;
  }

  .footer-main nav {
    justify-content: flex-start;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

/* Reference-inspired ARQUENTO gateway refinement */
:root {
  --ink-950: #0f1b24;
  --ink-900: #12262e;
  --ink-800: #183b42;
  --brand-900: #095452;
  --brand-700: #0d6e6b;
  --brand-600: #22b58f;
  --mint-400: #22b58f;
  --mint-300: #94e3c0;
  --mint-200: #c8f0df;
  --surface: #f5f7f9;
  --surface-2: #edf3f3;
  --surface-3: #e2eceb;
  --line: #cedcda;
}

.hero {
  background:
    radial-gradient(circle at 76% 42%, rgba(13, 110, 107, 0.2), transparent 32%),
    linear-gradient(145deg, #0b1720 0%, var(--ink-950) 62%, #10262e 100%);
}

.hero-layout {
  grid-template-columns: minmax(0, 0.94fr) minmax(500px, 1.06fr);
  gap: clamp(38px, 5vw, 76px);
}

.hero-copy::before {
  opacity: 0.18;
}

.hero-copy::after {
  display: none;
}

.hero h1 {
  max-width: 720px;
  letter-spacing: -0.04em;
}

.hero h1 em {
  color: var(--mint-300);
  background: none;
  -webkit-text-fill-color: currentColor;
}

.hero .eyebrow,
.gateway-caption span,
.gateway-signal,
.gateway-metrics article > span {
  letter-spacing: 0.14em;
}

.hero-proof li span,
.signal-strip i {
  border-radius: 0;
  transform: rotate(45deg);
}

.button-primary {
  color: var(--white);
}

.button-primary::before {
  background: var(--brand-600);
}

.button-primary:hover::before {
  background: #35c49e;
}

.gateway-stage {
  position: relative;
  min-height: 660px;
  isolation: isolate;
}

.gateway-stage::before {
  position: absolute;
  z-index: -1;
  inset: 28px -28px 22px 44px;
  border: 1px solid rgba(148, 227, 192, 0.13);
  clip-path: var(--portal-lg);
  content: "";
  transform: rotate(2deg);
}

.gateway-stage::after {
  position: absolute;
  z-index: 1;
  top: 38px;
  right: -6px;
  width: 14px;
  height: calc(100% - 86px);
  background: linear-gradient(180deg, var(--mint-300), rgba(34, 181, 143, 0.08));
  clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 88%);
  content: "";
  opacity: 0.52;
  pointer-events: none;
}

.gateway-visual {
  position: absolute;
  inset: 0;
  margin: 0;
  background: var(--ink-950);
  clip-path: polygon(
    7% 0,
    calc(100% - 54px) 0,
    100% 36px,
    100% calc(100% - 44px),
    calc(100% - 26px) 100%,
    0 100%,
    0 10%
  );
  filter: drop-shadow(0 34px 72px rgba(0, 0, 0, 0.28));
  overflow: hidden;
}

.gateway-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  filter: saturate(0.88) contrast(1.04);
}

.gateway-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 23, 32, 0.76) 0%, rgba(11, 23, 32, 0.18) 40%, transparent 70%),
    linear-gradient(0deg, rgba(11, 23, 32, 0.72) 0%, transparent 36%);
  pointer-events: none;
}

.gateway-caption {
  position: absolute;
  z-index: 2;
  top: 34px;
  left: 48px;
  display: grid;
  gap: 7px;
  color: var(--white);
}

.gateway-caption span {
  color: var(--mint-300);
  font-size: 0.56rem;
  font-weight: 700;
}

.gateway-caption strong {
  font-family: var(--brand-font);
  font-size: 1.18rem;
  line-height: 1.24;
}

.gateway-metrics {
  position: absolute;
  z-index: 4;
  right: 18px;
  bottom: 34px;
  left: -18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.gateway-metrics article {
  min-width: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 13px 12px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(10, 29, 37, 0.82);
  box-shadow: inset 0 0 0 1px rgba(148, 227, 192, 0.14);
  clip-path: var(--portal-sm);
  backdrop-filter: blur(14px);
}

.gateway-metrics article > span {
  color: var(--mint-300);
  font-family: var(--brand-font);
  font-size: 0.56rem;
  font-weight: 700;
}

.gateway-metrics article div {
  min-width: 0;
  display: grid;
}

.gateway-metrics strong {
  color: var(--white);
  font-family: var(--brand-font);
  font-size: 0.78rem;
  line-height: 1.2;
}

.gateway-metrics small {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.52rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gateway-signal {
  position: absolute;
  z-index: 4;
  top: -14px;
  right: 28px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.54rem;
  font-weight: 700;
  text-transform: uppercase;
}

.gateway-signal i {
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, var(--mint-400), transparent);
}

.gateway-pixels {
  position: absolute;
  z-index: 5;
  top: 128px;
  left: -8px;
  display: grid;
  grid-template-columns: repeat(4, 9px);
  gap: 10px;
  transform: rotate(-4deg);
}

.gateway-pixels i {
  width: 9px;
  height: 9px;
  background: var(--mint-400);
  box-shadow: 0 0 12px rgba(34, 181, 143, 0.24);
  opacity: 0.72;
}

.gateway-pixels i:nth-child(2),
.gateway-pixels i:nth-child(7),
.gateway-pixels i:nth-child(12) {
  width: 5px;
  height: 5px;
  margin: 2px;
  opacity: 0.42;
}

.gateway-pixels i:nth-child(4n + 1) {
  transform: translateX(-9px);
}

.signal-strip {
  color: var(--ink-950);
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.signal-strip i {
  background: var(--brand-600);
}

.section-label {
  width: fit-content;
  display: inline-flex;
  padding: 6px 24px 6px 12px;
  color: var(--white);
  background: var(--brand-700);
  clip-path: polygon(0 0, 100% 0, calc(100% - 13px) 100%, 0 100%);
}

.section-label.light {
  color: var(--ink-950);
  background: var(--mint-300);
}

.services {
  background: var(--surface);
}

.service-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

.service-featured {
  min-height: 280px;
  grid-column: 1 / -1;
  margin-bottom: 28px;
  padding: 38px 42px;
}

.service-card:not(.service-featured) {
  min-height: 310px;
  padding: 34px 23px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  clip-path: none;
  filter: none;
}

.service-card:not(.service-featured):nth-child(2) {
  border-left: 0;
}

.service-card:not(.service-featured)::after {
  display: none;
}

.service-card:not(.service-featured):hover {
  border-color: var(--line);
  background: rgba(148, 227, 192, 0.08);
  box-shadow: none;
  transform: translateY(-4px);
}

.service-card:not(.service-featured) .service-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  color: var(--brand-700);
  background: transparent;
  clip-path: none;
}

.service-card:not(.service-featured) .service-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.45;
}

.service-card:not(.service-featured) h3 {
  font-size: 1.08rem;
}

.service-card:not(.service-featured) p:not(.card-label) {
  font-size: 0.82rem;
}

@media (max-width: 1120px) {
  .hero-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
  }

  .gateway-stage {
    min-height: 610px;
  }

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

  .service-featured {
    grid-column: 1 / -1;
  }

  .service-card:not(.service-featured):nth-child(5) {
    border-left: 0;
  }
}

@media (max-width: 920px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .gateway-stage {
    width: min(650px, 100%);
    min-height: 640px;
    margin: 24px auto 0;
  }

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

  .service-card:not(.service-featured):nth-child(2n) {
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .hero-copy::before {
    opacity: 0.1;
  }

  .gateway-stage {
    min-height: 570px;
  }

  .gateway-stage::before {
    inset: 20px -4px 14px 18px;
  }

  .gateway-stage::after {
    right: 2px;
    width: 9px;
  }

  .gateway-visual {
    clip-path: polygon(
      5% 0,
      calc(100% - 34px) 0,
      100% 24px,
      100% calc(100% - 30px),
      calc(100% - 18px) 100%,
      0 100%,
      0 7%
    );
  }

  .gateway-visual img {
    object-position: 70% center;
  }

  .gateway-caption {
    top: 24px;
    left: 26px;
  }

  .gateway-caption strong {
    font-size: 1rem;
  }

  .gateway-pixels {
    top: 105px;
    left: 2px;
    grid-template-columns: repeat(3, 7px);
    gap: 7px;
  }

  .gateway-pixels i {
    width: 7px;
    height: 7px;
  }

  .gateway-pixels i:nth-child(n + 10) {
    display: none;
  }

  .gateway-metrics {
    right: 10px;
    bottom: 18px;
    left: 10px;
    gap: 4px;
  }

  .gateway-metrics article {
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 10px 8px;
  }

  .gateway-metrics article > span {
    font-size: 0.48rem;
  }

  .gateway-metrics strong {
    font-size: 0.7rem;
  }

  .gateway-metrics small {
    display: none;
  }

  .gateway-signal {
    right: 16px;
  }

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

  .service-featured {
    grid-column: auto;
    padding: 30px 26px;
  }

  .service-card:not(.service-featured) {
    min-height: auto;
    padding: 28px 20px;
    border-left: 0;
    border-bottom: 0;
  }

  .service-card:not(.service-featured):last-child {
    border-bottom: 1px solid var(--line);
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .signal-bars b {
    width: var(--bar);
  }
}

/* Interactive foundation compass */
@property --compass-score {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

.founder-compass {
  position: relative;
  overflow: clip;
  color: var(--white);
  background:
    linear-gradient(rgba(148, 227, 192, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 227, 192, 0.035) 1px, transparent 1px),
    var(--ink-950);
  background-size: 54px 54px;
}

.founder-compass::before,
.founder-compass::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.founder-compass::before {
  top: 0;
  right: max(14px, calc((100vw - var(--container)) / 2));
  width: min(300px, 38vw);
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--mint-300));
}

.founder-compass::after {
  right: -80px;
  bottom: 10%;
  width: 320px;
  height: 520px;
  border: 1px solid rgba(148, 227, 192, 0.07);
  border-radius: 170px 170px 0 0;
  transform: rotate(8deg);
}

.compass-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.58fr);
  align-items: end;
  gap: clamp(38px, 8vw, 120px);
  margin-bottom: clamp(42px, 6vw, 76px);
}

.compass-heading h2 {
  max-width: 870px;
  margin: 18px 0 0;
  color: var(--white);
  font-family: var(--brand-font);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.compass-heading > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(0.98rem, 1.25vw, 1.1rem);
  line-height: 1.85;
}

.compass-shell {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(148, 227, 192, 0.18);
  background: var(--surface);
  clip-path: polygon(0 0, calc(100% - 38px) 0, 100% 38px, 100% 100%, 0 100%);
}

.compass-shell::after {
  position: absolute;
  z-index: 4;
  top: 8px;
  right: 7px;
  width: 8px;
  height: 94px;
  background: linear-gradient(var(--mint-300), var(--brand-700));
  clip-path: polygon(55% 0, 100% 18%, 100% 100%, 0 88%, 0 16%);
  content: "";
  pointer-events: none;
}

.compass-topline {
  min-height: 54px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 12px 54px 12px 22px;
  color: rgba(255, 255, 255, 0.64);
  background: var(--brand-700);
  font-family: var(--brand-font);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.compass-topline > span:first-child {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
}

.compass-topline > span:first-child i {
  width: 6px;
  height: 6px;
  background: var(--mint-300);
  box-shadow: 0 0 0 4px rgba(148, 227, 192, 0.12);
}

.compass-completion {
  display: flex;
  gap: 6px;
}

.compass-completion i {
  width: 7px;
  height: 7px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: transparent;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.compass-completion i.is-complete {
  border-color: var(--mint-300);
  background: var(--mint-300);
  transform: rotate(45deg);
}

.compass-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  align-items: stretch;
}

.compass-questions {
  min-width: 0;
  padding: clamp(26px, 4vw, 54px);
  color: var(--ink-950);
  background:
    linear-gradient(135deg, rgba(148, 227, 192, 0.08), transparent 32%),
    var(--surface);
}

.compass-question {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: 34px minmax(210px, 1fr) minmax(240px, 0.72fr);
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 25px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.compass-question:first-child {
  border-top: 1px solid var(--line);
}

.compass-question > legend {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.compass-question::after {
  position: absolute;
  top: 18px;
  right: 0;
  bottom: 18px;
  width: 3px;
  background: var(--brand-600);
  content: "";
  opacity: 0;
  transform: scaleY(0.2);
  transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.compass-question:focus-within::after,
.compass-question[data-answer-state]::after {
  opacity: 1;
  transform: scaleY(1);
}

.compass-question[data-answer-state="0"]::after {
  background: #d79a67;
}

.compass-question[data-answer-state="0.5"]::after {
  background: #d8bc70;
}

.compass-question__index {
  color: var(--brand-700);
  font-family: var(--brand-font);
  font-size: 0.63rem;
  font-weight: 800;
}

.compass-question__index::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  background: var(--brand-600);
  content: "";
}

.compass-question p {
  margin: 0 0 7px;
  color: var(--brand-700);
  font-family: var(--brand-font);
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.compass-question h3 {
  margin: 0;
  color: var(--ink-950);
  font-family: var(--brand-font);
  font-size: clamp(0.86rem, 1.12vw, 1rem);
  letter-spacing: -0.02em;
  line-height: 1.45;
}

.compass-answer {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 3px;
  border: 1px solid var(--line);
  background: var(--surface-2);
}

.compass-answer label {
  position: relative;
  min-width: 0;
  cursor: pointer;
}

.compass-answer input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.compass-answer span {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 6px;
  color: var(--muted);
  font-family: var(--brand-font);
  font-size: 0.58rem;
  font-weight: 700;
  text-align: center;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.compass-answer span i {
  width: 6px;
  height: 6px;
  border: solid currentColor;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg) translateY(-1px);
}

.compass-answer label:hover span {
  color: var(--brand-700);
}

.compass-answer input:focus-visible + span {
  outline: 2px solid var(--mint-300);
  outline-offset: -2px;
}

.compass-answer input:checked + span {
  color: var(--white);
  background: var(--brand-700);
  transform: translateY(-1px);
}

.compass-dashboard {
  min-width: 0;
  padding: clamp(30px, 4.4vw, 58px);
  color: var(--white);
  background:
    linear-gradient(rgba(148, 227, 192, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 227, 192, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 90% 0, rgba(34, 181, 143, 0.13), transparent 34%),
    var(--ink-950);
  background-size: 38px 38px, 38px 38px, auto, auto;
}

.compass-score-block {
  display: grid;
  grid-template-columns: 174px minmax(0, 1fr);
  align-items: center;
  gap: clamp(22px, 3vw, 42px);
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(148, 227, 192, 0.14);
}

.compass-score {
  --compass-score: 0;
  position: relative;
  width: 174px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(from -90deg, var(--compass-color, var(--mint-300)) calc(var(--compass-score) * 1%), rgba(148, 227, 192, 0.1) 0);
  transition: --compass-score 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.compass-score::before {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(148, 227, 192, 0.14);
  border-radius: 50%;
  background: var(--ink-950);
  content: "";
}

.compass-score::after {
  position: absolute;
  inset: -16px 18px -2px;
  border: 1px solid rgba(148, 227, 192, 0.14);
  border-bottom: 0;
  border-radius: 96px 96px 0 0;
  content: "";
  pointer-events: none;
}

.compass-score > div {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.compass-score strong {
  font-family: var(--brand-font);
  font-size: 3.15rem;
  letter-spacing: -0.06em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.compass-score span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.72rem;
}

.compass-score-copy > span,
.compass-recommendation > span,
.compass-roadmap__heading > span {
  color: var(--mint-300);
  font-family: var(--brand-font);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.compass-score-copy h3 {
  margin: 9px 0 8px;
  color: var(--white);
  font-family: var(--brand-font);
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  letter-spacing: -0.035em;
}

.compass-score-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
}

.compass-shell[data-level="foundation"] { --compass-color: #d79a67; }
.compass-shell[data-level="market"] { --compass-color: #d8bc70; }
.compass-shell[data-level="launch"] { --compass-color: var(--mint-300); }
.compass-shell[data-level="ready"] { --compass-color: #43d9a8; }

.compass-recommendation {
  margin: 28px 0;
  padding: 20px 20px 20px 24px;
  border-left: 3px solid var(--compass-color, var(--mint-300));
  background: rgba(255, 255, 255, 0.035);
}

.compass-recommendation p {
  margin: 9px 0 14px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
  line-height: 1.7;
}

.compass-recommendation strong {
  display: block;
  color: var(--white);
  font-size: 0.68rem;
  line-height: 1.5;
}

.compass-roadmap__heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.compass-roadmap__heading i {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(148, 227, 192, 0.34), transparent);
}

.compass-roadmap article {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 17px 12px;
  border-top: 1px solid rgba(148, 227, 192, 0.12);
  transition: background-color 180ms ease, transform 180ms ease;
}

.compass-roadmap article:last-child {
  border-bottom: 1px solid rgba(148, 227, 192, 0.12);
}

.compass-roadmap article > span {
  color: var(--mint-300);
  font-family: var(--brand-font);
  font-size: 0.6rem;
  font-weight: 800;
}

.compass-roadmap article p {
  margin: 0 0 4px;
  color: rgba(148, 227, 192, 0.58);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.compass-roadmap article h4 {
  margin: 0 0 5px;
  color: var(--white);
  font-family: var(--brand-font);
  font-size: 0.82rem;
}

.compass-roadmap article small {
  display: block;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.62rem;
  line-height: 1.45;
}

.compass-roadmap article > strong {
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.5rem;
  letter-spacing: 0.12em;
}

.compass-roadmap article[data-phase-state="priority"] {
  background: rgba(215, 154, 103, 0.08);
}

.compass-roadmap article[data-phase-state="priority"]::after {
  position: absolute;
  top: 10px;
  right: 0;
  bottom: 10px;
  width: 3px;
  background: #d79a67;
  content: "";
}

.compass-roadmap article[data-phase-state="priority"] > strong {
  color: #efbd92;
}

.compass-roadmap article[data-phase-state="ready"] {
  background: rgba(67, 217, 168, 0.055);
}

.compass-roadmap article[data-phase-state="ready"] > strong {
  color: var(--mint-300);
}

.compass-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 24px;
}

.compass-actions button {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px;
  border: 1px solid rgba(148, 227, 192, 0.18);
  color: rgba(255, 255, 255, 0.62);
  background: transparent;
  font-size: 0.56rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.compass-actions button:hover,
.compass-actions button:focus-visible {
  border-color: var(--mint-300);
  color: var(--white);
  background: rgba(148, 227, 192, 0.055);
}

.compass-actions svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.compass-cta {
  width: 100%;
  margin-top: 10px;
}

.compass-cta-note {
  margin: 11px 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.61rem;
  line-height: 1.55;
  text-align: center;
}

.compass-disclaimer {
  margin: 0;
  padding: 18px clamp(28px, 4.5vw, 66px);
  border-top: 1px solid var(--line);
  color: #6e8083;
  background: #e9f0f0;
  font-size: 0.66rem;
  line-height: 1.65;
}

.site-toast {
  position: fixed;
  z-index: 130;
  left: 50%;
  bottom: 24px;
  min-width: min(360px, calc(100vw - 28px));
  max-width: calc(100vw - 28px);
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 18px;
  border: 1px solid rgba(148, 227, 192, 0.24);
  color: var(--white);
  background: var(--ink-950);
  font-size: 0.72rem;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 12px);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  pointer-events: none;
}

.site-toast i {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  background: var(--mint-300);
  transform: rotate(45deg);
}

.site-toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.hero-glow-one,
.scroll-cue span::after,
.market-calculator__topline i {
  animation-play-state: paused;
}

.hero.is-ambient-active .hero-glow-one,
.hero.is-ambient-active .scroll-cue span::after,
.market-calculator.is-ambient-active .market-calculator__topline i {
  animation-play-state: running;
}

@media (max-width: 1120px) {
  .compass-heading {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
    gap: 48px;
  }

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

  .compass-question {
    grid-template-columns: 34px minmax(220px, 1fr) minmax(280px, 0.75fr);
  }

  .compass-dashboard {
    padding: 46px;
  }

  .compass-score-block {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .compass-score {
    width: 190px;
  }
}

@media (max-width: 920px) {
  .compass-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .compass-heading > p {
    max-width: 680px;
  }

  .compass-question {
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .compass-answer {
    grid-column: 2;
  }

  .compass-score-block {
    grid-template-columns: 174px minmax(0, 1fr);
  }

  .compass-score {
    width: 174px;
  }

  .quick-actions a {
    min-width: 68px;
  }
}

@media (max-width: 640px) {
  .compass-heading h2 {
    font-size: clamp(2.3rem, 10.8vw, 3.2rem);
  }

  .compass-shell {
    clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
  }

  .compass-topline {
    grid-template-columns: 1fr auto;
    gap: 8px 14px;
    padding: 13px 38px 13px 16px;
    font-size: 0.5rem;
  }

  .compass-completion {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .compass-topline > span:last-child {
    grid-column: 2;
    grid-row: 1;
  }

  .compass-questions,
  .compass-dashboard {
    padding: 24px 18px;
  }

  .compass-question {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 12px;
    padding: 22px 0;
  }

  .compass-question h3 {
    font-size: 0.84rem;
  }

  .compass-answer {
    grid-column: 1 / -1;
    margin-left: 40px;
  }

  .compass-answer span {
    min-height: 44px;
    font-size: 0.56rem;
  }

  .compass-score-block {
    grid-template-columns: 136px minmax(0, 1fr);
    gap: 20px;
  }

  .compass-score {
    width: 136px;
  }

  .compass-score strong {
    font-size: 2.45rem;
  }

  .compass-score-copy h3 {
    font-size: 1.08rem;
  }

  .compass-roadmap article {
    grid-template-columns: 24px minmax(0, 1fr);
    padding: 16px 8px;
  }

  .compass-roadmap article > strong {
    grid-column: 2;
    width: fit-content;
  }

  .compass-actions {
    grid-template-columns: 1fr;
  }

  .compass-actions button {
    min-height: 48px;
  }

  .compass-disclaimer {
    padding: 17px 18px;
  }

  .site-toast {
    bottom: 60px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .compass-score {
    transition: none;
  }

  .compass-completion i,
  .compass-question::after {
    transition: none;
  }
}

@media (prefers-contrast: more) {
  :root {
    --line: #789994;
    --muted: #354f54;
  }

  .site-nav a,
  .hero-lead,
  .founder-heading p:last-child,
  .analysis-card p,
  .method-heading > p,
  .process-list p {
    opacity: 1;
  }
}

/* ARQUENTO future portal system */
:root {
  --brand-font: "Montserrat", "Inter", sans-serif;
  --portal-lg: polygon(
    0 0,
    calc(100% - 52px) 0,
    100% 36px,
    100% calc(100% - 42px),
    calc(100% - 24px) 100%,
    0 100%
  );
  --portal-sm: polygon(
    0 0,
    calc(100% - 28px) 0,
    100% 20px,
    100% calc(100% - 22px),
    calc(100% - 12px) 100%,
    0 100%
  );
}

h1,
h2,
h3,
.brand-name strong,
.panel-topline strong,
.map-core strong,
.metric-grid strong,
.floating-chip span,
.decision-core span,
.analysis-number,
.card-index,
.founder-cta strong,
.process-list > li > span,
.outcome-grid article span,
.faq-item button,
.contact-copy li span,
.signal-strip > div {
  font-family: var(--brand-font);
}

h1,
h2,
h3 {
  font-weight: 700;
}

.header-inner {
  border-radius: 42px 11px 42px 11px;
}

.site-header.is-scrolled .header-inner,
.site-header.is-open .header-inner {
  background: rgba(248, 250, 249, 0.97);
  backdrop-filter: none;
}

.hero-copy {
  isolation: isolate;
}

.hero-copy::before {
  position: absolute;
  z-index: -1;
  top: -88px;
  left: -76px;
  width: min(470px, 76vw);
  height: 570px;
  border: 1px solid rgba(117, 220, 203, 0.12);
  border-radius: 240px 240px 24px 24px;
  content: "";
  opacity: 0.72;
  transform: rotate(-6deg);
}

.hero-copy::after {
  position: absolute;
  z-index: -1;
  top: -34px;
  left: -28px;
  width: 190px;
  height: 300px;
  border-left: 2px solid rgba(117, 220, 203, 0.2);
  border-radius: 110px 0 0 0;
  content: "";
  transform: rotate(-6deg);
}

.hero h1 {
  max-width: 830px;
  font-family: var(--brand-font);
  font-weight: 700;
  letter-spacing: -0.052em;
}

.hero h1 > span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  color: var(--mint-300);
  background: linear-gradient(105deg, var(--mint-300) 5%, #77e4d4 54%, #d9f4ea 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.button {
  position: relative;
  isolation: isolate;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.button::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--mint-300);
  box-shadow: inset 0 0 0 1px transparent;
  clip-path: var(--portal-sm);
  content: "";
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.button-primary,
.button-primary:hover,
.button-ghost,
.button-ghost:hover {
  background: transparent;
}

.button-primary:hover::before {
  background: #c7e9dc;
}

.button-ghost::before {
  background: rgba(179, 222, 205, 0.06);
  box-shadow: inset 0 0 0 1px rgba(179, 222, 205, 0.42);
}

.button-ghost:hover::before {
  background: rgba(179, 222, 205, 0.12);
  box-shadow: inset 0 0 0 1px rgba(179, 222, 205, 0.72);
}

.intelligence-stage {
  filter: drop-shadow(0 34px 70px rgba(0, 0, 0, 0.2));
}

.intelligence-stage::before,
.intelligence-stage::after {
  position: absolute;
  z-index: -1;
  width: min(110%, 590px);
  height: 92%;
  border: 1px solid rgba(117, 220, 203, 0.12);
  clip-path: var(--portal-lg);
  content: "";
  pointer-events: none;
}

.intelligence-stage::before {
  transform: translate(18px, -14px) rotate(2.5deg);
}

.intelligence-stage::after {
  width: min(104%, 550px);
  height: 86%;
  border-color: rgba(117, 220, 203, 0.07);
  transform: translate(-20px, 20px) rotate(-2deg);
}

.intelligence-panel,
.founder-map-card,
.service-featured,
.founder-cta,
.contact-form {
  border-radius: 0;
  clip-path: var(--portal-lg);
}

.intelligence-panel {
  border: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(179, 222, 205, 0.025)),
    rgba(6, 34, 40, 0.77);
  filter: drop-shadow(0 32px 70px rgba(0, 0, 0, 0.28));
}

.intelligence-panel::after,
.founder-map-card::after,
.service-featured::after,
.founder-cta::after,
.contact-form::before {
  position: absolute;
  z-index: 0;
  top: 18px;
  right: 11px;
  width: 12px;
  height: calc(100% - 36px);
  background: linear-gradient(180deg, var(--mint-400), rgba(179, 222, 205, 0.12));
  clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 88%);
  content: "";
  opacity: 0.42;
  pointer-events: none;
}

.opportunity-map {
  width: 242px;
  height: 282px;
}

.opportunity-map::before,
.opportunity-map::after,
.orbit-one,
.orbit-two {
  inset: auto;
  border-radius: 999px 999px 20px 20px;
}

.opportunity-map::before {
  width: 80%;
  height: 94%;
}

.opportunity-map::after {
  width: 54%;
  height: 70%;
}

.orbit-one {
  width: 100%;
  height: 100%;
}

.orbit-two {
  width: 68%;
  height: 78%;
}

.map-core {
  width: 112px;
  height: 148px;
  border-radius: 62px 62px 12px 12px;
  background: linear-gradient(180deg, rgba(10, 47, 54, 0.98), rgba(7, 28, 33, 0.96));
}

.metric-grid article,
.decision-tag {
  border: 0;
  border-radius: 0;
  clip-path: var(--portal-sm);
}

.metric-grid article {
  background: linear-gradient(145deg, rgba(179, 222, 205, 0.075), rgba(179, 222, 205, 0.018));
}

.founder-map-card {
  border: 0;
  filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.16));
}

.analysis-card,
.service-card:not(.service-featured),
.outcome-grid article {
  border: 0;
  border-radius: 0;
  clip-path: var(--portal-sm);
}

.analysis-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(179, 222, 205, 0.018));
}

.analysis-card::after,
.service-card::after {
  top: 16px;
  right: 9px;
  width: 9px;
  height: calc(100% - 32px);
  background: linear-gradient(180deg, var(--mint-400), rgba(179, 222, 205, 0.08));
  clip-path: polygon(0 12%, 100% 0, 100% 100%, 0 88%);
  opacity: 0.38;
}

.service-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(238, 245, 242, 0.76));
  filter: drop-shadow(0 16px 28px rgba(7, 28, 33, 0.06));
}

.service-featured {
  background:
    radial-gradient(circle at 10% 100%, rgba(117, 220, 203, 0.2), transparent 32%),
    linear-gradient(145deg, #ffffff, #f3f8f6);
  filter: drop-shadow(0 20px 38px rgba(7, 28, 33, 0.07));
}

.mini-icon,
.service-icon {
  border: 0;
  border-radius: 0;
  clip-path: polygon(50% 0, 95% 24%, 95% 76%, 50% 100%, 5% 76%, 5% 24%);
  background: linear-gradient(145deg, rgba(117, 220, 203, 0.14), rgba(117, 220, 203, 0.035));
}

.founder-cta {
  border: 0;
  background: linear-gradient(110deg, rgba(117, 220, 203, 0.1), rgba(255, 255, 255, 0.025));
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.12));
}

.outcome-grid article {
  background: linear-gradient(145deg, #eef5f2, #e7f0ed);
}

.outcome-grid article:nth-child(2),
.outcome-grid article:nth-child(3) {
  background: linear-gradient(145deg, #0d3137, var(--ink-950));
}

.contact-form {
  border: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(117, 220, 203, 0.035));
  filter: drop-shadow(0 34px 70px rgba(0, 0, 0, 0.24));
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border-radius: 26px 7px 26px 7px;
}

.nav-cta {
  border-radius: 24px 6px 24px 6px;
}

@media (max-width: 920px) {
  .hero-copy::before {
    top: -56px;
    width: min(430px, 84vw);
    height: 500px;
  }

  .intelligence-stage::before,
  .intelligence-stage::after {
    height: 88%;
  }
}

@media (max-width: 640px) {
  :root {
    --portal-lg: polygon(
      0 0,
      calc(100% - 34px) 0,
      100% 24px,
      100% calc(100% - 28px),
      calc(100% - 17px) 100%,
      0 100%
    );
  }

  .header-inner {
    border-radius: 30px 9px 30px 9px;
  }

  .hero-copy::before {
    top: -30px;
    left: -54px;
    width: 300px;
    height: 420px;
    border-radius: 160px 160px 20px 20px;
  }

  .hero-copy::after {
    display: none;
  }

  .hero h1 {
    letter-spacing: -0.045em;
  }

  .intelligence-stage::before,
  .intelligence-stage::after {
    width: 102%;
    height: 86%;
  }

  .intelligence-stage::before {
    transform: translate(7px, -8px) rotate(1.5deg);
  }

  .intelligence-stage::after {
    transform: translate(-8px, 10px) rotate(-1deg);
  }

  .opportunity-map {
    width: 210px;
    height: 248px;
  }

  .map-core {
    width: 96px;
    height: 126px;
    border-radius: 52px 52px 10px 10px;
  }

  .intelligence-panel::after,
  .founder-map-card::after,
  .service-featured::after,
  .founder-cta::after,
  .contact-form::before {
    right: 7px;
    width: 8px;
  }
}

/* Final reference override */
:root {
  --ink-950: #0f1b24;
  --ink-900: #12262e;
  --ink-800: #183b42;
  --brand-900: #095452;
  --brand-700: #0d6e6b;
  --brand-600: #22b58f;
  --mint-400: #22b58f;
  --mint-300: #94e3c0;
  --mint-200: #c8f0df;
  --surface: #f5f7f9;
  --surface-2: #edf3f3;
  --surface-3: #e2eceb;
  --line: #cedcda;
}

.hero-layout {
  grid-template-columns: minmax(0, 0.94fr) minmax(500px, 1.06fr);
  gap: clamp(38px, 5vw, 76px);
}

.hero-copy::before {
  opacity: 0.18;
}

.hero-copy::after {
  display: none;
}

.hero h1 {
  max-width: 720px;
  letter-spacing: -0.04em;
}

.hero h1 em {
  color: var(--mint-300);
  background: none;
  -webkit-text-fill-color: currentColor;
}

.button-primary {
  color: var(--white);
}

.button-primary::before {
  background: var(--brand-600);
}

.button-primary:hover::before {
  background: #35c49e;
}

.service-card:not(.service-featured) {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  clip-path: none;
  filter: none;
}

.service-card:not(.service-featured):nth-child(2) {
  border-left: 0;
}

.service-featured {
  background:
    radial-gradient(circle at 10% 100%, rgba(148, 227, 192, 0.2), transparent 32%),
    linear-gradient(145deg, #ffffff, #f3f8f6);
  filter: drop-shadow(0 20px 38px rgba(15, 27, 36, 0.07));
}

@media (max-width: 1120px) {
  .hero-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
  }
}

@media (max-width: 920px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .service-card:not(.service-featured):nth-child(2n) {
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .service-card:not(.service-featured) {
    border-left: 0;
    border-bottom: 0;
  }

  .service-card:not(.service-featured):last-child {
    border-bottom: 1px solid var(--line);
  }
}

.gateway-metrics small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.6rem;
}

.gateway-signal {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.6rem;
}

@media (max-width: 920px) {
  .site-nav {
    max-height: calc(100dvh - 94px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
}

/* Interactive market potential lab */
.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;
}

.market-lab {
  position: relative;
  overflow: clip;
  color: var(--ink-950);
  background:
    linear-gradient(rgba(13, 110, 107, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 110, 107, 0.035) 1px, transparent 1px),
    var(--surface);
  background-size: 54px 54px;
}

.market-lab::before {
  position: absolute;
  top: 0;
  left: max(14px, calc((100vw - var(--container)) / 2));
  width: min(240px, 34vw);
  height: 4px;
  background: linear-gradient(90deg, var(--brand-600), transparent);
  content: "";
}

.market-lab-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.58fr);
  align-items: end;
  gap: clamp(36px, 8vw, 120px);
  margin-bottom: clamp(42px, 6vw, 76px);
}

.market-lab-heading h2 {
  max-width: 830px;
  margin: 18px 0 0;
  color: var(--ink-950);
  font-family: var(--brand-font);
  font-size: clamp(2.5rem, 5.2vw, 5rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.market-lab-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
  line-height: 1.85;
}

.market-calculator {
  position: relative;
  isolation: isolate;
  border: 1px solid var(--line);
  background: #f8fafb;
  clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 34px, 100% 100%, 0 100%);
}

.market-calculator::after {
  position: absolute;
  z-index: 3;
  top: 8px;
  right: 7px;
  width: 8px;
  height: 80px;
  background: linear-gradient(var(--mint-300), var(--brand-700));
  clip-path: polygon(55% 0, 100% 18%, 100% 100%, 0 88%, 0 16%);
  content: "";
  pointer-events: none;
}

.market-calculator__topline {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 54px 12px 22px;
  color: rgba(255, 255, 255, 0.64);
  background: var(--ink-950);
  font-family: var(--brand-font);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.market-calculator__topline span:first-child {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--mint-300);
}

.market-calculator__topline i {
  width: 6px;
  height: 6px;
  background: var(--brand-600);
  box-shadow: 0 0 0 4px rgba(34, 181, 143, 0.12);
  animation: market-status-pulse 2.4s ease-in-out infinite;
}

@keyframes market-status-pulse {
  0%, 100% { opacity: 0.5; transform: scale(0.82); }
  50% { opacity: 1; transform: scale(1); }
}

.market-calculator__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
}

.market-calculator__controls,
.market-calculator__dashboard {
  min-width: 0;
  padding: clamp(28px, 4.5vw, 66px);
}

.market-calculator__controls {
  display: grid;
  align-content: start;
  gap: 32px;
  background:
    linear-gradient(135deg, rgba(148, 227, 192, 0.08), transparent 38%),
    #f8fafb;
}

.market-presets {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 4px;
  border: 1px solid var(--line);
  background: var(--surface-2);
}

.market-presets button {
  min-width: 0;
  min-height: 42px;
  padding: 9px 8px;
  border: 0;
  color: var(--muted);
  background: transparent;
  font-family: var(--brand-font);
  font-size: 0.67rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.market-presets button:hover {
  color: var(--brand-700);
}

.market-presets button:active {
  transform: scale(0.98);
}

.market-presets button[aria-pressed="true"] {
  color: var(--white);
  background: var(--brand-700);
}

.market-control {
  display: grid;
  gap: 11px;
}

.market-control > span,
.market-control small {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.market-control > span > span {
  color: var(--ink-900);
  font-size: 0.82rem;
  font-weight: 700;
}

.market-control output {
  flex: 0 0 auto;
  min-width: 68px;
  color: var(--brand-700);
  font-family: var(--brand-font);
  font-size: 0.88rem;
  font-weight: 800;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.market-control small {
  color: #7b8e91;
  font-size: 0.59rem;
}

.market-control input[type="range"] {
  --range-progress: 50%;
  width: 100%;
  height: 18px;
  margin: 0;
  border: 0;
  outline: 0;
  background: transparent;
  cursor: pointer;
  appearance: none;
}

.market-control input[type="range"]::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 0;
  background: linear-gradient(90deg, var(--brand-600) var(--range-progress), #d8e3e2 var(--range-progress));
}

.market-control input[type="range"]::-moz-range-track {
  height: 4px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(90deg, var(--brand-600) var(--range-progress), #d8e3e2 var(--range-progress));
}

.market-control input[type="range"]::-webkit-slider-thumb {
  width: 18px;
  height: 18px;
  margin-top: -7px;
  border: 4px solid #f8fafb;
  border-radius: 1px;
  background: var(--brand-700);
  box-shadow: 0 0 0 1px var(--brand-700);
  appearance: none;
  transition: transform 150ms ease;
}

.market-control input[type="range"]::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 3px solid #f8fafb;
  border-radius: 1px;
  background: var(--brand-700);
  box-shadow: 0 0 0 1px var(--brand-700);
  transition: transform 150ms ease;
}

.market-control input[type="range"]:hover::-webkit-slider-thumb,
.market-control input[type="range"]:focus-visible::-webkit-slider-thumb {
  transform: scale(1.16) rotate(45deg);
}

.market-control input[type="range"]:hover::-moz-range-thumb,
.market-control input[type="range"]:focus-visible::-moz-range-thumb {
  transform: scale(1.16) rotate(45deg);
}

.market-reset {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 0 6px;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  background: transparent;
  font-size: 0.7rem;
  font-weight: 700;
  cursor: pointer;
}

.market-reset svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.market-reset:hover,
.market-reset:focus-visible {
  color: var(--brand-700);
}

.market-calculator__dashboard {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(rgba(148, 227, 192, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 227, 192, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 90% 10%, rgba(34, 181, 143, 0.14), transparent 38%),
    var(--ink-950);
  background-size: 38px 38px, 38px 38px, auto, auto;
}

.market-signal {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 6px 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(148, 227, 192, 0.14);
}

.market-signal span {
  color: var(--mint-300);
  font-family: var(--brand-font);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.market-signal strong {
  grid-column: 1;
  font-family: var(--brand-font);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
}

.market-signal i {
  grid-column: 2;
  grid-row: 1 / 3;
  width: 12px;
  height: 38px;
  align-self: center;
  background: var(--signal-color, var(--mint-300));
  clip-path: polygon(45% 0, 100% 14%, 100% 100%, 0 86%, 0 12%);
  transition: background-color 180ms ease, transform 180ms ease;
}

.market-calculator[data-signal="low"] { --signal-color: #e4ad72; }
.market-calculator[data-signal="medium"] { --signal-color: var(--mint-300); }
.market-calculator[data-signal="high"] { --signal-color: #46d9aa; }

.market-calculator[data-signal="high"] .market-signal i {
  transform: scaleY(1.12);
}

.market-funnel {
  display: grid;
  gap: 13px;
  margin: 34px 0;
}

.market-funnel__row {
  display: grid;
  grid-template-columns: 88px minmax(60px, 1fr) 82px;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.66rem;
}

.market-funnel__row > i {
  position: relative;
  height: 5px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.market-funnel__row > i::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--brand-700), var(--mint-300));
  content: "";
  transform: scaleX(var(--bar-scale, 1));
  transform-origin: left;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.market-funnel__row strong {
  color: var(--white);
  font-family: var(--brand-font);
  font-size: 0.72rem;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.market-funnel__row.is-accent {
  color: var(--mint-300);
}

.market-funnel__row.is-accent > i::after {
  background: var(--signal-color, var(--mint-300));
}

.market-result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(148, 227, 192, 0.14);
  border-left: 1px solid rgba(148, 227, 192, 0.14);
}

.market-result-grid article {
  min-width: 0;
  min-height: 132px;
  display: grid;
  align-content: space-between;
  gap: 10px;
  padding: 18px;
  border-right: 1px solid rgba(148, 227, 192, 0.14);
  border-bottom: 1px solid rgba(148, 227, 192, 0.14);
  background: rgba(255, 255, 255, 0.018);
  transition: background-color 180ms ease;
}

.market-result-grid article:hover {
  background: rgba(148, 227, 192, 0.055);
}

.market-result-grid article > span {
  color: var(--mint-300);
  font-family: var(--brand-font);
  font-size: 0.54rem;
}

.market-result-grid strong {
  overflow: hidden;
  font-family: var(--brand-font);
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  letter-spacing: -0.045em;
  line-height: 1;
  text-overflow: ellipsis;
  font-variant-numeric: tabular-nums;
}

.market-result-grid small {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.68rem;
  line-height: 1.4;
}

.market-result-grid .is-highlighted {
  background: rgba(34, 181, 143, 0.1);
}

.market-result-grid .is-highlighted strong,
.market-result-grid .is-highlighted small {
  color: var(--mint-300);
}

.market-insight {
  position: relative;
  margin-top: 28px;
  padding: 20px 20px 20px 26px;
  border-left: 3px solid var(--signal-color, var(--mint-300));
  background: rgba(255, 255, 255, 0.035);
}

.market-insight > span {
  display: block;
  margin-bottom: 8px;
  color: var(--mint-300);
  font-family: var(--brand-font);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.market-insight p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  line-height: 1.7;
}

.market-actions {
  display: grid;
  grid-template-columns: auto minmax(210px, 1fr);
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}

.market-actions > button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(148, 227, 192, 0.2);
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  font-size: 0.67rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.market-actions > button:hover,
.market-actions > button:focus-visible {
  border-color: var(--mint-300);
  color: var(--white);
  background: rgba(148, 227, 192, 0.06);
}

.market-actions > button svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.market-actions .button {
  min-height: 48px;
  padding-inline: 18px;
  font-size: 0.67rem;
}

.market-copy-status {
  min-height: 1.2em;
  margin: 10px 0 0;
  color: var(--mint-300);
  font-size: 0.65rem;
}

.market-disclaimer {
  margin: 0;
  padding: 18px clamp(28px, 4.5vw, 66px);
  border-top: 1px solid var(--line);
  color: #6e8083;
  background: #edf3f3;
  font-size: 0.66rem;
  line-height: 1.65;
}

/* Lightweight premium interactions */
.gateway-visual::after {
  position: absolute;
  z-index: 6;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 48%, rgba(148, 227, 192, 0.24) 50%, transparent 52%),
    var(--ink-950);
  clip-path: inset(0 0 0 0);
  content: "";
  pointer-events: none;
  transition: clip-path 760ms cubic-bezier(0.22, 1, 0.36, 1) 110ms;
}

.gateway-stage.is-visible .gateway-visual::after {
  clip-path: inset(0 50% 0 50%);
}

.gateway-pixels i {
  opacity: 0;
  animation: none;
  transform: translateX(-18px) scale(0.35);
}

.gateway-stage.is-visible .gateway-pixels i {
  animation: gateway-pixel-collect 460ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--pixel-delay, 180ms);
}

.gateway-pixels i:nth-child(1) { --pixel-delay: 150ms; }
.gateway-pixels i:nth-child(2) { --pixel-delay: 180ms; }
.gateway-pixels i:nth-child(3) { --pixel-delay: 210ms; }
.gateway-pixels i:nth-child(4) { --pixel-delay: 240ms; }
.gateway-pixels i:nth-child(5) { --pixel-delay: 270ms; }
.gateway-pixels i:nth-child(6) { --pixel-delay: 300ms; }
.gateway-pixels i:nth-child(7) { --pixel-delay: 330ms; }
.gateway-pixels i:nth-child(8) { --pixel-delay: 360ms; }
.gateway-pixels i:nth-child(9) { --pixel-delay: 390ms; }
.gateway-pixels i:nth-child(10) { --pixel-delay: 420ms; }
.gateway-pixels i:nth-child(11) { --pixel-delay: 450ms; }
.gateway-pixels i:nth-child(12) { --pixel-delay: 480ms; }
.gateway-pixels i:nth-child(13) { --pixel-delay: 510ms; }
.gateway-pixels i:nth-child(14) { --pixel-delay: 540ms; }

@keyframes gateway-pixel-collect {
  to { opacity: 0.84; transform: translateX(0) scale(1); }
}

.gateway-metrics article {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 360ms ease, transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gateway-stage.is-visible .gateway-metrics article {
  opacity: 1;
  transform: translateY(0);
}

.gateway-stage.is-visible .gateway-metrics article:nth-child(1) { transition-delay: 520ms; }
.gateway-stage.is-visible .gateway-metrics article:nth-child(2) { transition-delay: 590ms; }
.gateway-stage.is-visible .gateway-metrics article:nth-child(3) { transition-delay: 660ms; }

.gateway-image-overlay {
  --gx: 66%;
  --gy: 42%;
  background:
    radial-gradient(circle at var(--gx) var(--gy), rgba(148, 227, 192, 0.15), transparent 30%),
    linear-gradient(180deg, rgba(15, 27, 36, 0.06), rgba(15, 27, 36, 0.32));
}

.button-primary {
  overflow: hidden;
}

.button-primary::after {
  position: absolute;
  z-index: 2;
  top: -40%;
  bottom: -40%;
  left: -34%;
  width: 22%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.58), transparent);
  content: "";
  pointer-events: none;
  transform: skewX(-20deg) translateX(0);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.button-primary:hover::after,
.button-primary:focus-visible::after {
  transform: skewX(-20deg) translateX(690%);
}

.service-icon svg * {
  stroke-dasharray: 70;
  stroke-dashoffset: 70;
  transition: stroke-dashoffset 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 180ms ease;
}

.service-card.is-visible .service-icon svg * {
  stroke-dashoffset: 0;
}

.service-card:hover .service-icon {
  transform: translateY(-2px);
}

.contact-form label {
  position: relative;
}

.contact-form label::after {
  position: absolute;
  top: 28px;
  right: 0;
  bottom: 0;
  width: 3px;
  background: var(--mint-300);
  content: "";
  opacity: 0;
  transform: scaleY(0.25);
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease;
  pointer-events: none;
}

.contact-form label:focus-within::after {
  opacity: 1;
  transform: scaleY(1);
}

.contact-form label:has(.is-invalid)::after {
  opacity: 1;
  background: #ef8d7f;
  transform: scaleY(1);
}

.process-list li::before {
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-600), var(--mint-300));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1) 120ms;
}

.process-list li.is-visible::before {
  transform: scaleX(1);
}

.site-nav > a:not(.nav-cta)::after {
  width: 18px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-600) 0 12px, transparent 12px 14px, var(--mint-300) 14px);
}

.quick-actions {
  position: fixed;
  z-index: 90;
  right: 18px;
  bottom: 18px;
  display: flex;
  gap: 7px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}

.quick-actions.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.quick-actions a,
.quick-actions button {
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(148, 227, 192, 0.24);
  color: var(--white);
  background: var(--ink-950);
  font-family: var(--brand-font);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.quick-actions a {
  min-width: 72px;
  padding: 0 13px;
}

.quick-actions button {
  width: 44px;
  padding: 0;
}

.quick-actions a:hover,
.quick-actions button:hover,
.quick-actions a:focus-visible,
.quick-actions button:focus-visible {
  color: var(--ink-950);
  background: var(--mint-300);
  transform: translateY(-2px);
}

.quick-actions svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1120px) {
  .market-lab-heading {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
    gap: 48px;
  }

  .market-calculator__controls,
  .market-calculator__dashboard {
    padding: 38px;
  }

  .market-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .market-lab-heading,
  .market-calculator__grid {
    grid-template-columns: 1fr;
  }

  .market-lab-heading {
    gap: 24px;
  }

  .market-lab-heading > p {
    max-width: 680px;
  }

  .market-calculator__dashboard {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .market-lab-heading h2 {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
  }

  .market-calculator {
    clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
  }

  .market-calculator__topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    padding: 13px 38px 13px 16px;
    font-size: 0.53rem;
  }

  .market-calculator__controls,
  .market-calculator__dashboard {
    padding: 24px 18px;
  }

  .market-calculator__controls {
    gap: 27px;
  }

  .market-presets button {
    min-height: 40px;
    font-size: 0.58rem;
  }

  .market-control > span {
    align-items: flex-start;
  }

  .market-control > span > span {
    max-width: 190px;
    font-size: 0.75rem;
  }

  .market-funnel__row {
    grid-template-columns: 68px minmax(40px, 1fr) 65px;
    gap: 8px;
    font-size: 0.58rem;
  }

  .market-result-grid article {
    min-height: 118px;
    padding: 14px;
  }

  .market-result-grid strong {
    font-size: clamp(1.25rem, 7vw, 1.75rem);
  }

  .market-result-grid small {
    font-size: 0.61rem;
  }

  .market-insight {
    padding: 17px 16px 17px 19px;
  }

  .market-actions {
    grid-template-columns: 1fr;
  }

  .market-actions > button,
  .market-actions .button {
    width: 100%;
  }

  .market-disclaimer {
    padding: 17px 18px;
  }

  .quick-actions {
    right: 10px;
    bottom: 10px;
  }

  .quick-actions a {
    display: none;
  }

  .quick-actions button {
    width: 40px;
    height: 40px;
  }

  .process-list li::before {
    top: 0;
  }
}

@media (pointer: coarse) {
  .gateway-image-overlay {
    --gx: 66% !important;
    --gy: 42% !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .market-calculator__topline i {
    animation: none;
  }

  .gateway-visual::after {
    display: none;
  }

  .gateway-pixels i,
  .gateway-metrics article,
  .process-list li::before {
    opacity: 1;
    transform: none;
  }
}

/* ARQUENTO brandboard system */
:root {
  --brand-navy: #0a1f2c;
  --brand-teal: #006d6b;
  --brand-aqua: #00bfa5;
  --brand-mint: #7de3c7;
  --accent-blue: #1496ff;
  --accent-violet: #7b61ff;
  --accent-coral: #ff6b4a;
  --neutral-900: #1f2933;
  --neutral-500: #6b7280;
  --neutral-100: #f1f5f9;
  --ink-950: var(--brand-navy);
  --ink-900: #102936;
  --ink-800: var(--neutral-900);
  --brand-900: #064f55;
  --brand-700: var(--brand-teal);
  --brand-600: var(--brand-aqua);
  --mint-400: var(--brand-aqua);
  --mint-300: var(--brand-mint);
  --mint-200: #c7f1e6;
  --surface: var(--neutral-100);
  --surface-2: #e8eef2;
  --surface-3: #dde7ec;
  --line: #cbd8de;
  --muted: var(--neutral-500);
  --glow: rgba(0, 191, 165, 0.22);
}

.brand-name strong span,
.brand-lockup-preview strong span,
.sticker-wordmark strong span,
.business-card strong span {
  color: var(--brand-aqua);
}

.button-primary {
  color: var(--brand-navy);
}

.button-primary::before,
.button-primary:hover::before {
  background: var(--brand-aqua);
}

.service-text-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--line);
  color: var(--brand-teal);
  font-size: 0.68rem;
  font-weight: 700;
}

.service-text-link span {
  transition: transform 180ms ease;
}

.service-text-link:hover span,
.service-text-link:focus-visible span {
  transform: translate(2px, -2px);
}

.brand-showcase {
  position: relative;
  overflow: clip;
  color: var(--ink-950);
  background:
    linear-gradient(rgba(0, 109, 107, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 109, 107, 0.035) 1px, transparent 1px),
    #ffffff;
  background-size: 54px 54px;
}

.brand-showcase::before {
  position: absolute;
  top: 0;
  left: max(14px, calc((100vw - var(--container)) / 2));
  width: min(320px, 40vw);
  height: 4px;
  background: linear-gradient(90deg, var(--brand-aqua), transparent);
  content: "";
}

.brand-showcase-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.58fr);
  align-items: end;
  gap: clamp(38px, 8vw, 120px);
  margin-bottom: clamp(44px, 6vw, 78px);
}

.brand-showcase-heading h2 {
  max-width: 880px;
  margin: 18px 0 0;
  color: var(--brand-navy);
  font-family: var(--brand-font);
  font-size: clamp(2.55rem, 5vw, 4.9rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.brand-showcase-heading > p {
  margin: 0;
  color: var(--neutral-500);
  font-size: clamp(0.98rem, 1.25vw, 1.1rem);
  line-height: 1.85;
}

.brand-system-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.brand-system-grid > article {
  min-width: 0;
  padding: clamp(22px, 3vw, 38px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
}

.brand-master-card,
.brand-sticker-card,
.brand-print-card {
  grid-column: span 7;
}

.brand-app-card,
.brand-social-card,
.brand-palette-card {
  grid-column: span 5;
}

.brand-master-card {
  clip-path: polygon(0 0, calc(100% - 32px) 0, 100% 32px, 100% 100%, 0 100%);
}

.brand-card-topline {
  min-height: 28px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
  color: var(--brand-teal);
  font-family: var(--brand-font);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.brand-card-topline > span:last-child {
  color: var(--neutral-500);
}

.brand-variant-control {
  display: flex;
  gap: 2px;
  margin: 0;
  padding: 3px;
  border: 1px solid var(--line);
}

.brand-variant-control legend {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.brand-variant-control label {
  position: relative;
  cursor: pointer;
}

.brand-variant-control input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.brand-variant-control span {
  min-height: 32px;
  display: grid;
  place-items: center;
  padding: 6px 10px;
  color: var(--neutral-500);
  font-size: 0.55rem;
  letter-spacing: 0;
  transition: color 160ms ease, background-color 160ms ease;
}

.brand-variant-control input:checked + span {
  color: #ffffff;
  background: var(--brand-teal);
}

.brand-variant-control input:focus-visible + span {
  outline: 2px solid var(--brand-aqua);
  outline-offset: 2px;
}

.brand-lockup-preview {
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 36px);
  padding: clamp(28px, 3vw, 46px);
  border: 1px solid var(--line);
  color: var(--brand-navy);
  background: var(--neutral-100);
  transition: color 200ms ease, background-color 200ms ease;
}

.brand-lockup-preview img {
  width: clamp(96px, 10vw, 132px);
  height: auto;
  flex: 0 0 auto;
}

.brand-lockup-preview > div {
  min-width: 0;
  display: grid;
}

.brand-lockup-preview strong {
  color: currentColor;
  font-family: var(--brand-font);
  font-size: clamp(1.85rem, 3vw, 3rem);
  letter-spacing: 0.13em;
  line-height: 1;
  white-space: nowrap;
}

.brand-lockup-preview small {
  margin-top: 12px;
  color: var(--brand-teal);
  font-size: clamp(0.48rem, 0.8vw, 0.68rem);
  font-weight: 700;
  letter-spacing: 0.19em;
}

.brand-lockup-preview p {
  margin: 20px 0 0;
  color: currentColor;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  opacity: 0.72;
}

.brand-master-card:has(input[value="reversed"]:checked) .brand-lockup-preview {
  color: #ffffff;
  border-color: rgba(125, 227, 199, 0.18);
  background: var(--brand-navy);
}

.brand-master-card:has(input[value="reversed"]:checked) .brand-lockup-preview small {
  color: var(--brand-mint);
}

.brand-master-card:has(input[value="reversed"]:checked) .brand-lockup-preview img {
  filter: brightness(0) invert(1);
}

.brand-master-card:has(input[value="reversed"]:checked) .brand-lockup-preview strong span {
  color: currentColor;
}

.brand-master-card:has(input[value="mono"]:checked) .brand-lockup-preview {
  color: #101010;
  background: #ffffff;
}

.brand-master-card:has(input[value="mono"]:checked) .brand-lockup-preview img {
  filter: grayscale(1) contrast(1.5);
}

.brand-master-card:has(input[value="mono"]:checked) .brand-lockup-preview small,
.brand-master-card:has(input[value="mono"]:checked) .brand-lockup-preview strong span {
  color: currentColor;
}

.brand-master-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  color: var(--neutral-500);
  font-size: 0.53rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.brand-master-meta i {
  width: 4px;
  height: 4px;
  background: var(--brand-aqua);
}

.brand-app-card > p,
.brand-sticker-card > p,
.brand-social-card > p,
.brand-print-card > p,
.brand-palette-card > p {
  margin: 22px 0 0;
  color: var(--neutral-500);
  font-size: 0.75rem;
  line-height: 1.75;
}

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

.app-icon {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
}

.app-icon img {
  width: 68%;
  height: 72%;
  object-fit: contain;
}

.app-icon-navy { background: var(--brand-navy); }
.app-icon-teal { background: linear-gradient(145deg, var(--brand-teal), var(--brand-aqua)); }
.app-icon-light { background: #ffffff; }
.app-icon-circle { border-radius: 50%; background: var(--brand-navy); }
.app-icon-soft { border-radius: 18%; background: var(--neutral-100); }
.app-icon-micro { border-radius: 24%; background: var(--brand-teal); }
.app-icon-micro img { width: 52%; height: 52%; filter: brightness(0) invert(1); }

.brand-icon-scale {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 9px;
  color: var(--neutral-500);
  font-size: 0.5rem;
  text-align: center;
}

.sticker-sheet {
  min-height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.5vw, 30px);
  padding: clamp(24px, 4vw, 52px);
  overflow: hidden;
  background:
    linear-gradient(rgba(10, 31, 44, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 31, 44, 0.04) 1px, transparent 1px),
    #e8ecef;
  background-size: 32px 32px;
}

.brand-sticker {
  position: relative;
  display: grid;
  place-items: center;
  border: 6px solid #ffffff;
  background: #ffffff;
  box-shadow: 0 14px 26px rgba(10, 31, 44, 0.14);
}

.brand-sticker img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sticker-portal {
  width: 108px;
  height: 132px;
  padding: 7px;
  clip-path: polygon(12% 2%, 84% 0, 100% 15%, 96% 88%, 80% 100%, 8% 95%, 0 76%, 2% 14%);
  transform: rotate(-5deg);
}

.sticker-aq {
  width: 108px;
  height: 86px;
  padding: 8px;
  clip-path: polygon(12% 0, 88% 4%, 100% 20%, 94% 90%, 78% 100%, 10% 93%, 0 75%, 4% 14%);
  transform: rotate(4deg);
}

.sticker-round {
  width: 108px;
  height: 108px;
  padding: 11px;
  border-color: #ffffff;
  border-radius: 50%;
  outline: 2px solid var(--brand-teal);
  outline-offset: -9px;
  transform: rotate(-2deg);
}

.sticker-wordmark {
  width: 205px;
  min-height: 72px;
  grid-template-columns: 42px 1fr;
  gap: 7px;
  padding: 8px 13px;
  border-radius: 9px;
  transform: rotate(3deg);
}

.sticker-wordmark > img {
  width: 40px;
  height: 46px;
}

.sticker-wordmark > span {
  min-width: 0;
  display: grid;
}

.sticker-wordmark strong {
  color: var(--brand-navy);
  font-family: var(--brand-font);
  font-size: 0.78rem;
  letter-spacing: 0.13em;
}

.sticker-wordmark small {
  color: var(--brand-teal);
  font-size: 0.38rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.social-profile-mockup {
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--neutral-100);
}

.social-profile-head {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  gap: 12px;
}

.social-avatar {
  width: 58px;
  height: 58px;
  overflow: hidden;
  border-radius: 50%;
}

.social-avatar img {
  width: 100%;
  height: 100%;
}

.social-profile-head > div {
  display: grid;
}

.social-profile-head strong {
  color: var(--brand-navy);
  font-family: var(--brand-font);
  font-size: 0.82rem;
}

.social-profile-head small {
  color: var(--neutral-500);
  font-size: 0.57rem;
}

.social-profile-head > i {
  color: var(--neutral-500);
  font-style: normal;
  letter-spacing: 0.1em;
}

.social-profile-tags {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 18px 0 10px;
}

.social-profile-tags span {
  padding: 7px 4px;
  color: var(--brand-teal);
  background: #ffffff;
  font-size: 0.46rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
}

.social-content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}

.social-content-grid > span {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #ffffff;
  background: var(--brand-navy);
}

.social-content-grid > span:nth-child(2) {
  padding: 8px;
  color: var(--brand-navy);
  background: var(--brand-mint);
}

.social-content-grid > span:nth-child(3) {
  background: #ffffff;
}

.social-content-grid img {
  width: 58%;
  height: 64%;
  object-fit: contain;
}

.social-content-grid strong {
  font-family: var(--brand-font);
  font-size: clamp(0.54rem, 1vw, 0.78rem);
  line-height: 1.15;
}

.business-card-stage {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  background: #e8ecef;
}

.business-card {
  position: absolute;
  width: min(330px, 56%);
  aspect-ratio: 1.545 / 1;
  padding: clamp(18px, 3vw, 30px);
  box-shadow: 0 22px 42px rgba(10, 31, 44, 0.16);
}

.business-card-front {
  z-index: 2;
  top: 48px;
  left: 7%;
  display: grid;
  align-content: center;
  justify-items: center;
  color: #ffffff;
  background: var(--brand-navy);
  transform: rotate(-4deg);
}

.business-card-front img {
  width: 72px;
  height: 82px;
}

.business-card-front strong {
  margin-top: 8px;
  font-family: var(--brand-font);
  font-size: 1.1rem;
  letter-spacing: 0.16em;
}

.business-card-front small {
  margin-top: 7px;
  color: var(--brand-mint);
  font-size: 0.43rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-align: center;
}

.business-card-back {
  z-index: 1;
  right: 7%;
  bottom: 42px;
  display: grid;
  align-content: center;
  color: var(--brand-navy);
  background: #ffffff;
  transform: rotate(4deg);
}

.business-card-back > span,
.business-card-back > strong {
  font-family: var(--brand-font);
}

.business-card-back > span {
  color: var(--brand-teal);
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.business-card-back > strong {
  margin-top: 26px;
  font-size: clamp(0.72rem, 1.3vw, 0.95rem);
}

.business-card-back > small {
  color: var(--neutral-500);
  font-size: 0.62rem;
}

.business-card-back > i {
  margin-top: 24px;
  color: var(--brand-teal);
  font-size: 0.42rem;
  font-style: normal;
  letter-spacing: 0.12em;
}

.letterhead-preview {
  position: absolute;
  right: 4%;
  top: 18px;
  width: 118px;
  height: 164px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.72);
  transform: rotate(8deg);
}

.letterhead-preview img {
  width: 24px;
  height: 26px;
}

.letterhead-preview span {
  display: block;
  height: 3px;
  margin-top: 13px;
  background: #cbd8de;
}

.letterhead-preview span:nth-of-type(2) { width: 82%; }
.letterhead-preview span:nth-of-type(3) { width: 68%; }
.letterhead-preview span:nth-of-type(4) { width: 90%; }

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

.brand-swatches > span {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.brand-swatches i {
  height: 54px;
  border: 1px solid rgba(10, 31, 44, 0.1);
  background: var(--swatch);
}

.brand-swatches strong {
  color: var(--brand-navy);
  font-family: var(--brand-font);
  font-size: 0.52rem;
}

.brand-swatches small {
  color: var(--neutral-500);
  font-size: 0.44rem;
  letter-spacing: 0.1em;
}

.brand-showcase-cta {
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 18px;
  padding: 24px clamp(24px, 4vw, 54px);
  color: #ffffff;
  background: var(--brand-navy);
  clip-path: polygon(0 0, calc(100% - 32px) 0, 100% 24px, 100% 100%, 0 100%);
}

.brand-showcase-cta > div {
  display: grid;
  gap: 4px;
}

.brand-showcase-cta span {
  color: var(--brand-mint);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-showcase-cta strong {
  font-family: var(--brand-font);
  font-size: clamp(1rem, 2vw, 1.4rem);
}

.contact-email {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 28px;
  padding: 13px 16px;
  border: 1px solid rgba(125, 227, 199, 0.22);
  color: #ffffff;
  background: rgba(125, 227, 199, 0.05);
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.contact-email:hover,
.contact-email:focus-visible {
  border-color: var(--brand-mint);
  color: var(--brand-mint);
  background: rgba(125, 227, 199, 0.09);
}

.contact-email svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-email span {
  display: grid;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
}

.contact-email strong {
  color: currentColor;
  font-family: var(--brand-font);
  font-size: 0.84rem;
  letter-spacing: 0;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  pointer-events: none !important;
}

.form-honeypot[hidden] {
  display: none !important;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status[data-state="success"] {
  color: var(--brand-mint);
  border-color: rgba(125, 227, 199, 0.34);
  background: rgba(125, 227, 199, 0.08);
}

.form-status[data-state="error"] {
  color: #ffc1b4;
  border-color: rgba(255, 107, 74, 0.38);
  background: rgba(255, 107, 74, 0.08);
}

.footer-main > p {
  display: grid;
  gap: 10px;
}

.footer-services {
  color: var(--brand-mint);
  font-family: var(--brand-font);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

@media (max-width: 1120px) {
  .brand-showcase-heading {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
    gap: 48px;
  }

  .brand-master-card,
  .brand-sticker-card,
  .brand-print-card {
    grid-column: 1 / -1;
  }

  .brand-app-card,
  .brand-social-card,
  .brand-palette-card {
    grid-column: span 6;
  }
}

@media (max-width: 920px) {
  .brand-showcase-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .brand-showcase-heading > p {
    max-width: 680px;
  }

  .brand-lockup-preview {
    min-height: 300px;
  }

  .sticker-sheet {
    flex-wrap: wrap;
  }
}

@media (max-width: 700px) {
  .brand-system-grid {
    grid-template-columns: 1fr;
  }

  .brand-system-grid > article,
  .brand-master-card,
  .brand-app-card,
  .brand-sticker-card,
  .brand-social-card,
  .brand-print-card,
  .brand-palette-card {
    grid-column: 1;
  }

  .brand-showcase-heading h2 {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
  }

  .brand-card-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-lockup-preview {
    min-height: 330px;
    flex-direction: column;
    gap: 18px;
    padding: 28px 18px;
    text-align: center;
  }

  .brand-lockup-preview img {
    width: 94px;
  }

  .brand-lockup-preview strong {
    font-size: clamp(1.45rem, 8vw, 2rem);
    letter-spacing: 0.12em;
  }

  .brand-lockup-preview p {
    font-size: 0.47rem;
  }

  .brand-master-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .brand-master-meta i {
    display: none;
  }

  .brand-app-icons {
    gap: 9px;
  }

  .sticker-sheet {
    min-height: 420px;
    gap: 18px;
  }

  .sticker-portal,
  .sticker-aq,
  .sticker-round {
    width: 88px;
  }

  .sticker-portal { height: 108px; }
  .sticker-aq { height: 70px; }
  .sticker-round { height: 88px; }
  .sticker-wordmark { width: 184px; }

  .business-card-stage {
    min-height: 390px;
  }

  .business-card {
    width: 78%;
  }

  .business-card-front {
    top: 44px;
    left: 6%;
  }

  .business-card-back {
    right: 5%;
    bottom: 38px;
  }

  .letterhead-preview {
    display: none;
  }

  .brand-swatches {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-showcase-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .brand-showcase-cta .button {
    width: 100%;
  }

  .contact-email {
    width: 100%;
  }
}
