/* ————————————————————————————————————————————————
   Future Networks — V3 "Aurora"
   Ethereal twilight: aurora shader, glass, bento.
   Sora (display) + Outfit (text).
   ———————————————————————————————————————————————— */

:root {
  --bg: #0A0D1E;
  --ink: #EEF1FF;
  --ink-dim: rgba(238, 241, 255, 0.64);
  --ink-faint: rgba(238, 241, 255, 0.4);
  --indigo: #6366F1;
  --violet: #A855F7;
  --teal: #2DD4BF;
  --rose: #FB7185;
  --glass-bg: rgba(13, 16, 36, 0.45);
  --glass-line: rgba(255, 255, 255, 0.13);
  --ease: cubic-bezier(0.25, 0.8, 0.25, 1);
  --grad: linear-gradient(100deg, var(--indigo), var(--violet) 45%, var(--teal));
  --sora: "Sora", "Avenir Next", sans-serif;
  --outfit: "Outfit", "Avenir", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--ink);
  font-family: var(--outfit); font-weight: 300;
  font-size: 1.06rem; line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
::selection { background: var(--violet); color: #fff; }
a { color: inherit; text-decoration: none; }

#silk { position: fixed; inset: 0; width: 100%; height: 100%; z-index: -3; }

/* drifting depth orbs */
.orb { position: fixed; border-radius: 50%; filter: blur(90px); z-index: -2; pointer-events: none; opacity: 0.35; }
.orb-a {
  width: 44vw; height: 44vw; left: -12vw; top: 30vh;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.5), transparent 65%);
  animation: drift-a 26s ease-in-out infinite alternate;
}
.orb-b {
  width: 38vw; height: 38vw; right: -10vw; top: 65vh;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.35), transparent 65%);
  animation: drift-b 32s ease-in-out infinite alternate;
}
@keyframes drift-a { to { transform: translate(6vw, -8vh) scale(1.12); } }
@keyframes drift-b { to { transform: translate(-7vw, -6vh) scale(0.94); } }

/* faint grain to prevent banding */
.stars {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

/* ——— glass ——— */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-line);
  backdrop-filter: blur(22px) saturate(1.35);
  -webkit-backdrop-filter: blur(22px) saturate(1.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 60px -32px rgba(0, 0, 0, 0.6);
}

/* ——— nav ——— */
.nav {
  position: fixed; top: 1.1rem; left: 50%; transform: translateX(-50%);
  z-index: 50;
  display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.4rem);
  padding: 0.6rem 0.7rem 0.6rem 1.3rem;
  border-radius: 100px;
  transition: box-shadow 0.4s;
  white-space: nowrap;
}
.nav-brand { display: flex; align-items: center; gap: 0.6rem; font-family: var(--sora); font-weight: 500; font-size: 0.95rem; letter-spacing: 0.01em; }
.nav-gem {
  width: 14px; height: 14px; border-radius: 50%;
  background: conic-gradient(from 180deg, var(--indigo), var(--violet), var(--teal), var(--indigo));
  box-shadow: 0 0 14px rgba(139, 118, 249, 0.8);
}
.nav-links { display: flex; gap: 1.5rem; }
.nav-links a { font-size: 0.86rem; font-weight: 400; color: var(--ink-dim); transition: color 0.25s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { font-size: 0.8rem !important; padding: 0.6rem 1.15rem !important; }

/* ——— buttons ——— */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--outfit); font-weight: 500; font-size: 0.95rem; letter-spacing: 0.01em;
  padding: 0.9rem 1.7rem; border-radius: 100px;
  transition: transform 0.25s var(--ease), box-shadow 0.35s, background 0.3s, border-color 0.3s;
}
.btn-glow {
  color: #fff;
  background:
    linear-gradient(#151935, #151935) padding-box,
    var(--grad) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 0 24px -6px rgba(124, 108, 247, 0.55), inset 0 0 18px -8px rgba(124, 108, 247, 0.5);
}
.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 44px -6px rgba(139, 118, 249, 0.8), inset 0 0 22px -6px rgba(45, 212, 191, 0.45);
}
.btn-ghost { border: 1px solid var(--glass-line); color: var(--ink-dim); background: var(--glass-bg); backdrop-filter: blur(10px); }
.btn-ghost:hover { color: var(--ink); border-color: rgba(255, 255, 255, 0.3); transform: translateY(-2px); }
.btn-lg { font-size: 1.05rem; padding: 1.1rem 2.3rem; }

/* ——— hero ——— */
.hero {
  min-height: 100svh;
  display: grid; place-items: center;
  padding: 7rem clamp(1.2rem, 5vw, 4rem) 4rem;
  text-align: center;
  position: relative;
}
.hero-inner { max-width: 62rem; display: flex; flex-direction: column; align-items: center; }
.chip {
  display: inline-flex; align-items: center; gap: 0.6rem;
  border-radius: 100px; padding: 0.5rem 1.1rem;
  font-size: 0.8rem; font-weight: 400; color: var(--ink-dim);
  margin-bottom: 2.2rem;
}
.pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--teal);
  box-shadow: 0 0 12px var(--teal);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: 0.35; } }
.hero-title {
  font-family: var(--sora); font-weight: 200;
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  line-height: 1.08; letter-spacing: -0.025em;
  margin-bottom: 1.6rem;
}
.hero-title em, .sec-title em, .finale-title em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero-sub { max-width: 40rem; color: var(--ink-dim); font-size: clamp(1rem, 1.5vw, 1.18rem); margin-bottom: 2.4rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

.feed {
  margin-top: 4.5rem;
  display: flex; align-items: center; gap: 1rem;
  border-radius: 14px; padding: 0.85rem 1.3rem;
  font-size: 0.88rem;
  min-width: min(30rem, 88vw);
  justify-content: flex-start;
}
.feed-label {
  font-family: var(--sora); font-size: 0.6rem; letter-spacing: 0.22em;
  color: var(--ink-faint); font-weight: 500; white-space: nowrap;
}
.feed-line { color: var(--ink-dim); transition: opacity 0.45s, transform 0.45s; }
.feed-line.swap { opacity: 0; transform: translateY(8px); }

/* ——— sections ——— */
.section { padding: clamp(5rem, 9vw, 8rem) clamp(1.2rem, 5vw, 4rem); max-width: 78rem; margin: 0 auto; }
.eyebrow {
  font-family: var(--sora); font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  font-weight: 500;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 1.2rem;
}
.sec-head { max-width: 46rem; margin-bottom: 3.2rem; }
.sec-title {
  font-family: var(--sora); font-weight: 200;
  font-size: clamp(2rem, 4.4vw, 3.4rem); line-height: 1.12; letter-spacing: -0.02em;
}
.sec-dek { margin-top: 1.2rem; color: var(--ink-dim); }

/* ——— bento ——— */
.bento {
  display: grid; gap: 1.1rem;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(11.5rem, auto);
}
.card {
  border-radius: 20px; padding: 1.6rem;
  display: flex; flex-direction: column; gap: 0.65rem;
  position: relative; overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.45s;
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 30px 70px -30px rgba(99, 102, 241, 0.45);
}
.card h3 { font-family: var(--sora); font-weight: 400; font-size: 1.12rem; letter-spacing: -0.01em; margin-top: auto; }
.card p { font-size: 0.9rem; color: var(--ink-dim); }
.feature { grid-column: span 2; grid-row: span 2; padding: 2rem; }
.feature h3 { font-size: 1.55rem; }
.feature p { font-size: 1rem; max-width: 26rem; }
.card-wide {
  grid-column: 1 / -1;
  flex-direction: row; align-items: center; gap: 1.6rem;
  min-height: auto; padding: 1.3rem 1.6rem;
}
.card-wide .pic { height: auto; flex-shrink: 0; }
.card-wide h3 { margin-top: 0; white-space: nowrap; }
.card-wide p { margin-left: auto; max-width: 34rem; text-align: right; }
.card-tag {
  position: absolute; top: 1.4rem; right: 1.4rem;
  font-family: var(--sora); font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal); border: 1px solid rgba(45, 212, 191, 0.35); border-radius: 100px;
  padding: 0.3rem 0.7rem;
}

/* orbit visual (feature card) */
.orbit { position: relative; width: 200px; height: 200px; margin: 0.5rem auto 1rem; flex-shrink: 0; }
.orbit-core {
  position: absolute; inset: 50%; width: 22px; height: 22px; margin: -11px;
  border-radius: 50%; background: var(--grad);
  box-shadow: 0 0 28px rgba(139, 118, 249, 0.9);
}
.orbit-ring {
  position: absolute; inset: 0; border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 50%;
}
.orbit-ring.r1 { inset: 18%; animation: spin 9s linear infinite; }
.orbit-ring.r2 { inset: 4%; animation: spin 16s linear infinite reverse; }
.orbit-ring.r3 { inset: -12%; animation: spin 26s linear infinite; opacity: 0.6; }
.orbit-ring i {
  position: absolute; top: -4px; left: 50%; width: 8px; height: 8px; margin-left: -4px;
  border-radius: 50%; background: var(--teal); box-shadow: 0 0 12px var(--teal);
}
.orbit-ring.r2 i { background: var(--violet); box-shadow: 0 0 12px var(--violet); }
.orbit-ring.r3 i { background: var(--rose); box-shadow: 0 0 12px var(--rose); }
@keyframes spin { to { transform: rotate(360deg); } }

/* pictograms */
.pic { height: 56px; display: flex; align-items: center; gap: 6px; color: var(--ink-dim); position: relative; }
.pic-radar i {
  position: absolute; border: 1px solid rgba(99, 102, 241, 0.5); border-radius: 50%;
  width: 18px; height: 18px; left: 6px; top: 18px;
  animation: radar 3s ease-out infinite;
}
.pic-radar i:nth-child(2) { animation-delay: 1s; }
.pic-radar i:nth-child(3) { animation-delay: 2s; }
@keyframes radar { from { transform: scale(0.4); opacity: 1; } to { transform: scale(2.6); opacity: 0; } }
.pic-chat i {
  width: 30px; height: 20px; border-radius: 8px; background: rgba(255,255,255,0.12);
  animation: bob 2.6s ease-in-out infinite;
}
.pic-chat i:nth-child(2) { width: 44px; background: rgba(168, 85, 247, 0.35); animation-delay: 0.3s; }
.pic-chat i:nth-child(3) { width: 24px; animation-delay: 0.6s; }
@keyframes bob { 50% { transform: translateY(-5px); } }
.pic-code { font-family: var(--sora); font-size: 1.5rem; color: var(--teal); font-weight: 300; }
.pic-stack i {
  width: 34px; height: 8px; border-radius: 3px; background: rgba(255,255,255,0.14);
  transform: skewX(-16deg);
}
.pic-stack i:nth-child(2) { background: rgba(99, 102, 241, 0.55); }
.pic-stack i:nth-child(3) { background: rgba(45, 212, 191, 0.45); }
.pic-north i {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid var(--rose);
  position: relative;
}
.pic-north i::after {
  content: ""; position: absolute; left: 50%; top: -9px; margin-left: -1px;
  width: 2px; height: 10px; background: var(--rose);
}

/* ——— timeline ——— */
.timeline {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem;
  margin-bottom: 2.4rem;
}
.tl-line {
  position: absolute; left: 2%; right: 2%; top: -1.4rem; height: 1px;
  background: linear-gradient(90deg, transparent, var(--indigo), var(--violet), var(--teal), transparent);
  opacity: 0.6;
}
.tl-step { border-radius: 18px; padding: 1.5rem 1.4rem; }
.tl-n {
  font-family: var(--sora); font-weight: 500; font-size: 0.8rem;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.tl-step h3 { font-family: var(--sora); font-weight: 400; font-size: 1.2rem; margin: 0.5rem 0 0.45rem; }
.tl-step p { font-size: 0.88rem; color: var(--ink-dim); }

.assure {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  border-radius: 18px; padding: 1.5rem 1.6rem;
}
.assure strong { display: block; font-family: var(--sora); font-weight: 500; font-size: 0.95rem; margin-bottom: 0.3rem; }
.assure span { font-size: 0.88rem; color: var(--ink-dim); }
.assure a { color: var(--teal); border-bottom: 1px solid rgba(45, 212, 191, 0.4); }

/* ——— work showcases ——— */
.show {
  display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(1.6rem, 4vw, 3.5rem); align-items: center;
  border-radius: 24px; padding: clamp(1.6rem, 4vw, 3rem);
  margin-bottom: 1.6rem;
}
.show-flip .show-text { order: 2; }
.show-flip .show-visual { order: 1; }
.show-kicker {
  font-family: var(--sora); font-size: 0.7rem; letter-spacing: 0.26em; text-transform: uppercase;
  font-weight: 500;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 0.9rem;
}
.show-text h3 { font-family: var(--sora); font-weight: 300; font-size: clamp(1.5rem, 2.8vw, 2.2rem); line-height: 1.2; letter-spacing: -0.015em; margin-bottom: 1rem; }
.show-dek { color: var(--ink-dim); font-size: 0.98rem; margin-bottom: 1.4rem; }
.show-facts { list-style: none; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.show-facts li {
  font-size: 0.78rem; color: var(--ink-dim);
  border: 1px solid var(--glass-line); border-radius: 100px; padding: 0.35rem 0.85rem;
  background: rgba(255,255,255,0.03);
}
.show-facts .live { color: var(--teal); border-color: rgba(45, 212, 191, 0.4); }

/* chat vignette */
.v3chat { display: flex; flex-direction: column; gap: 0.6rem; }
.v3msg {
  max-width: 85%; padding: 0.7rem 1rem; border-radius: 16px; font-size: 0.88rem; line-height: 1.5;
}
.v3msg.u {
  align-self: flex-end;
  background: linear-gradient(120deg, rgba(99, 102, 241, 0.32), rgba(168, 85, 247, 0.28));
  border: 1px solid rgba(139, 118, 249, 0.4);
  border-bottom-right-radius: 5px;
}
.v3msg.b {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-line);
  border-bottom-left-radius: 5px;
}
.v3pay {
  width: 85%; border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(45, 212, 191, 0.4);
}
.v3pay span { display: block; padding: 0.55rem 1rem; font-size: 0.8rem; color: var(--ink-dim); background: rgba(255,255,255,0.04); }
.v3pay em {
  display: block; text-align: center; font-style: normal; font-weight: 500;
  padding: 0.6rem; font-size: 0.88rem;
  background: linear-gradient(100deg, rgba(45, 212, 191, 0.85), rgba(99, 102, 241, 0.85));
  color: #06281f;
}
/* olly vignette */
.v3olly { display: flex; flex-direction: column; }
.v3voice {
  display: flex; align-items: center; gap: 0.8rem; align-self: flex-end;
  border-radius: 100px; padding: 0.6rem 1.1rem;
  background: linear-gradient(120deg, rgba(99, 102, 241, 0.32), rgba(168, 85, 247, 0.28));
  border: 1px solid rgba(139, 118, 249, 0.4);
  font-size: 0.8rem;
}
.v3voice .w {
  width: 120px; height: 18px;
  background: repeating-linear-gradient(90deg, rgba(238,241,255,0.85) 0 2px, transparent 2px 5px);
  border-radius: 2px;
  -webkit-mask-image: linear-gradient(90deg, #000 0 62%, rgba(0,0,0,0.35) 62%);
          mask-image: linear-gradient(90deg, #000 0 62%, rgba(0,0,0,0.35) 62%);
}
.v3voice em { font-style: normal; color: var(--ink-faint); }
.v3arrow { text-align: center; color: var(--teal); padding: 0.7rem 0; }
.v3invoice {
  background: rgba(244, 246, 255, 0.94); color: #12142a;
  border-radius: 16px; padding: 1.2rem 1.3rem;
  box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.65);
}
.v3invoice header {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  border-bottom: 1px solid rgba(18, 20, 42, 0.14); padding-bottom: 0.7rem; margin-bottom: 0.7rem;
}
.v3invoice header b { font-family: var(--sora); font-weight: 500; font-size: 0.95rem; }
.v3invoice header span { font-size: 0.74rem; color: rgba(18, 20, 42, 0.55); }
.v3invoice .row { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.84rem; padding: 0.22rem 0; color: rgba(18, 20, 42, 0.85); }
.v3invoice footer {
  display: flex; justify-content: space-between; border-top: 1px solid rgba(18, 20, 42, 0.2);
  margin-top: 0.7rem; padding-top: 0.7rem; font-size: 0.95rem;
}
.v3invoice .sync {
  display: inline-block; margin-top: 0.8rem;
  font-size: 0.7rem; letter-spacing: 0.06em;
  background: rgba(45, 212, 191, 0.18); color: #0b6b5c;
  border-radius: 100px; padding: 0.3rem 0.8rem;
}

/* ——— finale ——— */
.finale {
  position: relative; text-align: center;
  padding: clamp(6rem, 12vw, 11rem) 1.5rem;
}
.finale::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(46% 55% at 50% 62%, rgba(124, 108, 247, 0.28), transparent 72%);
}
.finale-title {
  font-family: var(--sora); font-weight: 200;
  font-size: clamp(2.6rem, 6vw, 4.8rem); letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}
.finale-sub { color: var(--ink-dim); max-width: 34rem; margin: 0 auto 2.6rem; }

/* ——— footer ——— */
.footer {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  padding: 1.6rem clamp(1.2rem, 5vw, 4rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem; color: var(--ink-faint);
}
.footer nav { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer a:hover { color: var(--ink); }

/* ——— reveals: blur-in ——— */
.reveal {
  opacity: 0; transform: translateY(26px); filter: blur(12px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease);
}
.reveal.in { opacity: 1; transform: none; filter: none; }
html.review .reveal { opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important; }

/* ——— responsive ——— */
@media (max-width: 1020px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .feature { grid-column: span 2; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .tl-line { display: none; }
  .assure { grid-template-columns: 1fr; }
  .show, .show-flip { grid-template-columns: 1fr; }
  .show-flip .show-text { order: 1; }
  .show-flip .show-visual { order: 2; }
}
@media (max-width: 660px) {
  .nav { left: 0.8rem; right: 0.8rem; transform: none; justify-content: space-between; }
  .nav-links { display: none; }
  .bento { grid-template-columns: 1fr; }
  .feature { grid-column: span 1; grid-row: span 1; }
  .card-wide { flex-direction: column; align-items: flex-start; gap: 0.65rem; }
  .card-wide h3 { white-space: normal; }
  .card-wide p { margin-left: 0; text-align: left; }
  .orbit { width: 150px; height: 150px; }
  .timeline { grid-template-columns: 1fr; }
  .feed { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
}

/* ——— reduced motion ——— */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .orb, .pulse, .orbit-ring, .pic-radar i, .pic-chat i { animation: none !important; }
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
}


/* ————— v12 additions ————— */
.sec-dek a, .fine-link { color: var(--teal); border-bottom: 1px solid rgba(45,212,191,0.4); }

/* 2-col timeline for the longer four-step copy */
.tl-2col { grid-template-columns: repeat(2, 1fr); }
.tl-2col .tl-line { display: none; }
.tl-step .tl-cta {
  display: inline-block; margin-top: 0.8rem;
  font-family: var(--sora); font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal);
}
.tl-step .tl-cta:hover { text-decoration: underline; }

/* capabilities bento: feature + two halves + wide */
.bento-caps { grid-auto-rows: auto; }
.card-half { grid-column: span 2; }
.card-half h3 { margin-top: 0.4rem; }
.bento-caps .card-wide p { text-align: left; margin-left: 0; max-width: 52rem; }
.bento-caps .card-wide h3 { white-space: nowrap; }

/* testimonial */
.testimonial {
  border-radius: 24px; padding: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1.6rem;
  display: flex; flex-direction: column; gap: 1.2rem;
}
.t-big {
  font-family: var(--sora); font-weight: 200;
  font-size: clamp(1.7rem, 3.6vw, 2.7rem); line-height: 1.18; letter-spacing: -0.018em;
}
.t-big em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.t-full { margin-top: 0.9rem; max-width: 46rem; display: flex; flex-direction: column; gap: 0.8rem; }
.t-full p { color: var(--ink-dim); font-size: 0.98rem; }
.t-who strong { display: block; font-family: var(--sora); font-weight: 500; font-size: 0.95rem; }
.t-who span { font-size: 0.85rem; color: var(--ink-faint); }
.t-cta { align-self: flex-start; }

/* show-card outbound link */
.show-link {
  display: inline-block; margin-top: 1.2rem;
  font-family: var(--sora); font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal);
}
.show-link:hover { text-decoration: underline; }

/* origin band */
.origin { max-width: 62rem; }
.origin-inner { border-radius: 24px; padding: clamp(1.8rem, 4vw, 3rem); text-align: center; }
.origin-quote {
  font-family: var(--sora); font-weight: 200;
  font-size: clamp(1.25rem, 2.6vw, 1.9rem); line-height: 1.4; letter-spacing: -0.01em;
  max-width: 48rem; margin: 0 auto 1.1rem;
}
.origin-quote em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.origin-sub { color: var(--ink-dim); font-size: 0.95rem; max-width: 40rem; margin: 0 auto; }

/* footer with address */
.footer { display: block; }
.footer-top { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-addr { margin-top: 0.6rem; font-size: 0.78rem; color: var(--ink-faint); }

@media (max-width: 660px) {
  .tl-2col { grid-template-columns: 1fr; }
  .card-half { grid-column: span 1; }
  .bento-caps .card-wide h3 { white-space: normal; }
}

/* hero kicker (replaces the chip pill) */
.hero-kicker {
  font-family: var(--sora); font-weight: 500;
  font-size: clamp(0.72rem, 1.1vw, 0.84rem);
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 2.2rem;
}
.hero-kicker em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  font-weight: 600;
}

/* contact */
.contact-grid { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: 1.4rem; align-items: stretch; }
.contact-card { border-radius: 24px; padding: clamp(1.6rem, 3.5vw, 2.4rem); }
.contact-card h3 { font-family: var(--sora); font-weight: 300; font-size: 1.5rem; margin-bottom: 0.5rem; }
.contact-note { color: var(--ink-dim); font-size: 0.95rem; margin-bottom: 1.3rem; }
.contact-note.ok { color: var(--teal); }
.contact-note.err { color: var(--rose); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form label { display: block; font-family: var(--sora); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); }
.contact-form input, .contact-form textarea {
  display: block; width: 100%; margin-top: 0.45rem;
  background: rgba(10, 13, 30, 0.6); border: 1px solid var(--glass-line); border-radius: 12px;
  color: var(--ink); font-family: var(--outfit); font-size: 1rem; padding: 0.8rem 1rem;
  transition: border-color 0.25s;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--violet); }
.contact-form textarea { resize: vertical; min-height: 8rem; }
.contact-form .btn { align-self: flex-start; margin-top: 0.3rem; }
.contact-form .hp { position: absolute; left: -5000px; top: -5000px; }
.contact-alt { margin-top: 1.2rem; font-size: 0.88rem; color: var(--ink-faint); }
.contact-alt a { color: var(--teal); }
.contact-alt a:hover { text-decoration: underline; }
.contact-map { border-radius: 24px; overflow: hidden; display: flex; flex-direction: column; }
.contact-map iframe { border: 0; width: 100%; flex: 1; min-height: 22rem; filter: invert(0.9) hue-rotate(185deg) saturate(0.55) brightness(0.92); }
.contact-map address { font-style: normal; padding: 1.1rem 1.4rem; font-size: 0.92rem; color: var(--ink-dim); border-top: 1px solid var(--glass-line); }
.contact-map address strong { font-family: var(--sora); font-weight: 500; color: var(--ink); }
@media (max-width: 1020px) { .contact-grid { grid-template-columns: 1fr; } }
