/* ------------------------------------------------------------------
   Asagi House — tokens
------------------------------------------------------------------- */
:root {
  --bg: #04060a;
  --fg: #eef3f8;
  --muted: rgba(238, 243, 248, 0.58);
  --faint: rgba(238, 243, 248, 0.16);
  --blue: #4f8cff;
  --teal: #2ee6c8;
  --ease-premium: cubic-bezier(0.22, 0.61, 0.24, 1);

  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --gutter: clamp(1.25rem, 5vw, 4.5rem);

  --display-sm: clamp(1.5rem, 3.1vw, 3rem);
  --display-md: clamp(2rem, 5.4vw, 5rem);
  --display-lg: clamp(2.1rem, 7.2vw, 7.4rem);
  --display-xl: clamp(2.4rem, 9.6vw, 10rem);
}

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

html {
  background: var(--bg);
  color-scheme: dark;
  scroll-behavior: auto;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.2rem);
  line-height: 1.55;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

::selection {
  background: rgba(46, 230, 200, 0.35);
}

/* ------------------------------------------------------------------
   Backdrop: WebGL canvas + CSS glow
------------------------------------------------------------------- */
#scene {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
}

/* Shared card renderer. Scissor-drawn into each [data-gl] slot. Sits above
   the copy so the forms are visible, below the masthead so they never cover
   navigation. pointer-events: none — the slots are only a window. */
#cards-gl {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: block;
  pointer-events: none;
}

.glow {
  position: fixed;
  inset: -20%;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(42% 38% at 24% 88%, rgba(79, 140, 255, 0.34), transparent 70%),
    radial-gradient(38% 34% at 78% 96%, rgba(46, 230, 200, 0.24), transparent 70%),
    radial-gradient(60% 40% at 50% 115%, rgba(79, 140, 255, 0.16), transparent 70%);
  filter: blur(18px);
  opacity: 0.9;
  animation: glow-drift 22s ease-in-out infinite alternate;
  mix-blend-mode: screen;
}

@keyframes glow-drift {
  from { transform: translate3d(-2%, 1%, 0) scale(1); }
  to   { transform: translate3d(2%, -1.5%, 0) scale(1.06); }
}

main {
  position: relative;
  z-index: 2;
}

/* ------------------------------------------------------------------
   Masthead
------------------------------------------------------------------- */
.masthead {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1.1rem, 2.4vw, 1.9rem) var(--gutter);
  mix-blend-mode: difference;
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-stretch: 118%;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wordmark span {
  font-weight: 500;
  opacity: 0.6;
  margin-left: 0.35em;
}

.masthead__cta {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.masthead__cta:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.masthead__nav {
  display: none;
  gap: clamp(1.1rem, 2.4vw, 2rem);
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.masthead__nav a {
  color: rgba(238, 243, 248, 0.7);
  transition: color 0.3s ease;
}

.masthead__nav a:hover {
  color: var(--fg);
}

@media (min-width: 60em) {
  .masthead__nav { display: flex; }
}

/* ------------------------------------------------------------------
   Custom cursor
------------------------------------------------------------------- */
.cursor {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.cursor__gl {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  display: none;
  pointer-events: none;
  will-change: transform;
}

.cursor.is-gl .cursor__gl {
  display: block;
}

.cursor.is-gl .cursor__ring,
.cursor.is-gl .cursor__dot {
  display: none;
}

.cursor__ring,
.cursor__dot {
  position: absolute;
  top: 0;
  left: 0;
  will-change: transform;
}

.cursor__ring {
  width: 46px;
  height: 46px;
  margin: -23px 0 0 -23px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(238, 243, 248, 0.42);
  border-radius: 50%;
  color: var(--teal);
  background: rgba(4, 6, 10, 0.12);
}

.cursor__arrow {
  width: 13px;
  height: 13px;
  opacity: 0;
  transform: translateX(-1px);
  transition: opacity 0.55s var(--ease-premium), transform 0.55s var(--ease-premium);
}

.cursor.is-active .cursor__arrow {
  opacity: 1;
  transform: translateX(1px);
}

.cursor.is-press .cursor__ring {
  border-color: rgba(46, 230, 200, 0.7);
}

.cursor__dot {
  width: 5px;
  height: 5px;
  margin: -2.5px 0 0 -2.5px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 10px rgba(46, 230, 200, 0.55);
}

html.has-cursor,
html.has-cursor * {
  cursor: none !important;
}

@media (hover: none), (pointer: coarse) {
  .cursor { display: none; }
}

/* ------------------------------------------------------------------
   Typography helpers
------------------------------------------------------------------- */
.display {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 760;
  font-stretch: 122%;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 0.94;
}

.display--sm { font-size: var(--display-sm); }
.display--md { font-size: var(--display-md); }
.display--lg { font-size: var(--display-lg); }
.display--xl { font-size: var(--display-xl); line-height: 0.9; }

.accent {
  font-style: normal;
  background: linear-gradient(92deg, var(--blue) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Masked line reveals. JS animates the inner span from 110% → 0. */
.line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em;
  margin-bottom: -0.06em;
}

.line > span {
  display: inline-block;
  will-change: transform;
}

html.js .line > span {
  transform: translateY(112%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1.4rem;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(46, 230, 200, 0.5);
  animation: pulse 2.4s ease-out infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(46, 230, 200, 0.55); }
  100% { box-shadow: 0 0 0 0.75rem rgba(46, 230, 200, 0); }
}

/* ------------------------------------------------------------------
   01 · Hero
------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  padding: clamp(5.5rem, 14vh, 9rem) var(--gutter) clamp(2rem, 6vh, 3.5rem);
}

.hero__title {
  justify-self: end;
  text-align: right;
  min-width: 0;
}

.hero__meta {
  margin: 1.1rem 0 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-stretch: 110%;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__sub {
  margin: 1.4rem 0 0 auto;
  max-width: 34rem;
  color: rgba(238, 243, 248, 0.8);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0 0.8rem;
}

.hero__cue {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.cue__line {
  position: relative;
  width: clamp(3rem, 8vw, 6rem);
  height: 1px;
  background: var(--faint);
  overflow: hidden;
}

.cue__line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  transform: translateX(-100%);
  animation: cue-sweep 2.2s cubic-bezier(0.6, 0, 0.2, 1) infinite;
}

@keyframes cue-sweep {
  to { transform: translateX(100%); }
}

/* ------------------------------------------------------------------
   02 · Statement (sticky)
------------------------------------------------------------------- */
.statement {
  height: 260vh;
}

.statement__pin {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  display: flex;
  align-items: center;
  padding: 0 var(--gutter);
}

/* ------------------------------------------------------------------
   03 · Beats
------------------------------------------------------------------- */
.beats {
  padding: 0 var(--gutter);
}

.beat {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 36rem;
}

.beat__index {
  margin: 0 0 1.2rem;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.beat__body {
  margin: 1.6rem 0 0;
  max-width: 32rem;
  color: rgba(238, 243, 248, 0.8);
}

/* ------------------------------------------------------------------
   04 · Contact + footer
------------------------------------------------------------------- */
.contact {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  padding: clamp(5rem, 12vh, 8rem) var(--gutter) clamp(1.5rem, 4vh, 2.5rem);
}

.contact__inner {
  align-self: center;
  min-width: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: clamp(1.8rem, 4vh, 2.8rem);
  padding: 1rem 1.5rem 1rem 1.7rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-stretch: 108%;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: color 0.4s ease, border-color 0.4s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(92deg, var(--blue), var(--teal));
  transform: translateY(101%);
  transition: transform 0.5s cubic-bezier(0.7, 0, 0.2, 1);
}

.btn svg {
  width: 1.1rem;
  height: 1.1rem;
  transition: transform 0.4s ease;
}

.btn:hover {
  color: #03060b;
  border-color: transparent;
}

.btn:hover::before { transform: translateY(0); }
.btn:hover svg { transform: translateX(0.3rem); }

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--faint);
}

/* Footer meta line. */
.footer__meta {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

/* ------------------------------------------------------------------
   05–09 · Appended content sections
   Shared shell. Every section below reuses .display, .eyebrow, .accent
   and .btn from above so nothing here introduces a second visual system.
------------------------------------------------------------------- */
.section {
  position: relative;
  padding: clamp(4.5rem, 13vh, 8.5rem) var(--gutter);
}

.section__head {
  max-width: 44rem;
  margin: 0 0 clamp(2.2rem, 5.5vw, 3.8rem);
}

.section__lede {
  margin: 1.5rem 0 0;
  max-width: 34rem;
  color: rgba(238, 243, 248, 0.8);
}

/* Translucent slab: keeps copy legible over the canvas while the wireframe
   form still reads faintly through it. */
.panel {
  position: relative;
  border: 1px solid var(--faint);
  border-radius: 1rem;
  background: rgba(7, 11, 18, 0.66);
}

/* Card groups share a vanishing point so the entrance rotateX reads as depth,
   not as a 2D squash. */
.cases,
.plans,
.steps,
.fit__list,
.faq {
  perspective: 1400px;
}

html.js [data-card] {
  opacity: 0;
  transform-origin: 50% 80%;
  will-change: transform, opacity;
  transition:
    border-color 0.8s var(--ease-premium),
    background 0.8s var(--ease-premium),
    box-shadow 0.8s var(--ease-premium);
}

html.js [data-card].is-settled {
  opacity: 1;
}

[data-card].is-settled:hover {
  border-color: rgba(79, 140, 255, 0.42);
  background: rgba(10, 16, 26, 0.78);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.38),
    0 0 36px rgba(79, 140, 255, 0.08);
}

[data-card].is-press {
  border-color: rgba(46, 230, 200, 0.4);
  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.42) inset,
    0 0 22px rgba(46, 230, 200, 0.07);
}

/* Window the overlay canvas scissors into. Empty on purpose. */
[data-gl] {
  display: block;
  pointer-events: none;
  background: radial-gradient(circle at 42% 36%, rgba(79, 140, 255, 0.22), rgba(46, 230, 200, 0.08) 46%, transparent 72%);
}

/* --- 05 · Featured work --------------------------------------------------- */
.cases {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}

.case {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.case__thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--faint);
  background:
    radial-gradient(120% 92% at 16% 8%, rgba(79, 140, 255, 0.3), transparent 62%),
    radial-gradient(100% 80% at 86% 96%, rgba(46, 230, 200, 0.22), transparent 64%),
    linear-gradient(160deg, #090e17, #04060a);
}

.case__thumb[data-placeholder]::after {
  content: attr(data-placeholder);
  position: absolute;
  right: 0.85rem;
  bottom: 0.7rem;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(238, 243, 248, 0.42);
}

.case__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(1.2rem, 2.6vw, 1.75rem);
}

.case__niche {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.case__name {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-stretch: 114%;
  font-size: clamp(1.1rem, 2.4vw, 1.4rem);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.05;
}

.case__facts {
  margin: 1.2rem 0 0;
  display: grid;
  gap: 0.8rem;
}

.case__facts > div {
  display: grid;
  gap: 0.15rem;
}

.case__facts dt {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.case__facts dd {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(238, 243, 248, 0.82);
}

.case__open {
  margin: 1.2rem 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(238, 243, 248, 0.72);
}

.case__link {
  margin-top: auto;
  padding-top: 1.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.case__link--pending {
  color: rgba(238, 243, 248, 0.42);
}

a.case__link {
  position: relative;
  align-self: flex-start;
  color: var(--teal);
  transition: color 0.3s ease;
}

a.case__link:hover {
  color: var(--fg);
}

.case--open {
  border-style: dashed;
  background: rgba(7, 11, 18, 0.42);
}

.case--open .case__thumb {
  border-bottom-style: dashed;
  background:
    repeating-linear-gradient(135deg, rgba(79, 140, 255, 0.07) 0 10px, transparent 10px 20px),
    linear-gradient(160deg, #070b12, #04060a);
}

/* --- 06 · Offer ----------------------------------------------------------- */
.plans {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
  grid-template-columns: minmax(0, 1fr);
}

.plan {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  overflow: hidden;
}

.plan__tier {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.plan__price {
  margin: 0.7rem 0 0;
  font-family: var(--font-display);
  font-weight: 760;
  font-stretch: 118%;
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  line-height: 1;
  letter-spacing: -0.005em;
}

.plan__for {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  color: rgba(238, 243, 248, 0.78);
}

.plan__list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.plan__list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(238, 243, 248, 0.82);
}

.plan__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: linear-gradient(92deg, var(--blue), var(--teal));
}

.plan__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
  margin: auto 0 0;
  padding-top: 1.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
}

.plan__meta span {
  padding-top: 1.2rem;
  border-top: 1px solid var(--faint);
  flex: 1 1 8rem;
}

.offer__note {
  margin: clamp(1.6rem, 3vw, 2.2rem) 0 0;
  max-width: 38rem;
  font-size: 0.88rem;
  color: var(--muted);
}

/* --- 07 · Process --------------------------------------------------------- */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(0.9rem, 1.8vw, 1.4rem);
  grid-template-columns: minmax(0, 1fr);
}

.step {
  position: relative;
  padding: clamp(1.3rem, 2.4vw, 1.8rem);
  overflow: hidden;
}

.step__num {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-stretch: 110%;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.step__name {
  margin: 0.7rem 0 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-stretch: 114%;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.step p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(238, 243, 248, 0.78);
}

/* --- 08 · Who it's for ---------------------------------------------------- */
.fit__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(0.9rem, 1.8vw, 1.2rem);
  grid-template-columns: minmax(0, 1fr);
}

.fit__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: clamp(1.1rem, 2.2vw, 1.5rem);
}

.fit__list p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(238, 243, 248, 0.82);
}

.fit__mark {
  flex: none;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.48em;
  border-radius: 50%;
  background: linear-gradient(92deg, var(--blue), var(--teal));
}

.fit__note {
  margin: clamp(1.6rem, 3vw, 2.2rem) 0 0;
  max-width: 38rem;
  font-size: 0.88rem;
  color: var(--muted);
}

/* --- 09 · FAQ ------------------------------------------------------------- */
.faq {
  display: grid;
  gap: 0.7rem;
  max-width: 52rem;
}

.faq__item {
  overflow: hidden;
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0.85rem clamp(0.9rem, 2.4vw, 1.4rem);
  font-family: var(--font-display);
  font-weight: 600;
  font-stretch: 110%;
  font-size: clamp(0.9rem, 2.2vw, 1.05rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 0.3s var(--ease-premium);
}

.faq__q {
  flex: 1 1 auto;
  min-width: 0;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary:hover {
  color: var(--teal);
}

.faq__item summary::after {
  content: "";
  flex: none;
  width: 0.62rem;
  height: 0.62rem;
  border-right: 1.5px solid var(--teal);
  border-bottom: 1.5px solid var(--teal);
  transform: translateY(-0.18em) rotate(45deg);
  transition: transform 0.35s cubic-bezier(0.7, 0, 0.2, 1);
}

.faq__item[open] summary::after {
  transform: translateY(0.1em) rotate(225deg);
}

.faq__answer {
  margin: 0;
  padding: 0 clamp(1.1rem, 2.4vw, 1.6rem) 1.35rem;
  max-width: 44rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(238, 243, 248, 0.8);
}

/* --- 10 · CTA band -------------------------------------------------------- */
.cta-band__inner {
  padding: clamp(1.7rem, 4vw, 3rem);
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.8rem;
  margin-top: clamp(1.8rem, 4vh, 2.5rem);
}

.cta-band__actions .btn {
  margin-top: 0;
}

.cta-band__note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.enquire {
  margin-top: clamp(1.6rem, 3.5vw, 2.4rem);
  padding-top: clamp(1.4rem, 3vw, 2rem);
  border-top: 1px solid var(--faint);
}

.enquire__label {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.enquire__grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: minmax(0, 1fr);
}

.enquire label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.enquire input {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--faint);
  border-radius: 0.7rem;
  background: rgba(4, 6, 10, 0.45);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
}

.enquire input::placeholder {
  color: rgba(238, 243, 248, 0.32);
}

.enquire input:focus {
  outline: none;
  border-color: rgba(79, 140, 255, 0.55);
}

.enquire .btn {
  margin-top: 1.1rem;
}

@media (min-width: 46em) {
  .enquire__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .enquire__wide {
    grid-column: 1 / -1;
  }
}

/* --- Appended sections: wider viewports ----------------------------------- */
@media (min-width: 46em) {
  .cases,
  .plans,
  .steps,
  .fit__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Editorial stagger — the right column sits a breath lower so the grid
     doesn't read as a template. Margin, not transform, so GSAP stays free. */
  .case:nth-child(even),
  .plan:nth-child(even),
  .fit__list li:nth-child(even) {
    margin-top: 2.6rem;
  }

  .case__facts > div {
    grid-template-columns: 5.5rem minmax(0, 1fr);
    gap: 0.9rem;
  }

  .case__facts dt {
    padding-top: 0.25em;
  }
}

@media (min-width: 64em) {
  .steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ------------------------------------------------------------------
   Responsive
------------------------------------------------------------------- */
@media (max-width: 720px) {
  .display {
    font-stretch: 108%;
    overflow-wrap: break-word;
  }

  .hero__title {
    justify-self: start;
    text-align: left;
  }

  .hero__sub {
    margin-left: 0;
  }

  .hero__actions {
    justify-content: flex-start;
  }

  /* Kept visible on phones — it is the only CTA above the fold there. */
  .masthead__cta {
    font-size: 0.66rem;
    letter-spacing: 0.1em;
    padding: 0.45rem 0.8rem;
  }

  .btn {
    max-width: 100%;
    font-size: clamp(0.72rem, 3.6vw, 0.95rem);
    padding: 0.9rem 1.2rem 0.9rem 1.3rem;
  }

  .statement {
    height: 220vh;
  }

  .glow {
    filter: blur(10px);
  }
}

/* ------------------------------------------------------------------
   Reduced motion
------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html.js .line > span {
    transform: none;
  }

  html.js [data-card] {
    opacity: 1;
  }

  .glow,
  .cue__line::after,
  .eyebrow__dot {
    animation: none;
  }

  .cursor {
    display: none;
  }
}
