/* Yuvera Solutions — parent-entity homepage.
   "Phygital Signal": a connected-products company built around the NFC tap-to-connect
   metaphor. An electric-lime signal cuts through a near-black (dark) or warm-bone
   (light) field. Syne (display) for architectural headlines, Hanken Grotesk (body),
   JetBrains Mono (technical labels). Concentric signal rings, a fine engineering grid,
   lime connective lines. Light + dark themes via [data-theme] with a header toggle.
   Fully crawlable, CSS-only — motion is progressive enhancement. */

/* ---------- Theme tokens ---------- */
:root {
  /* signal accent (electric lime) — constant brand pop in both themes */
  --signal:        #C8F94A;
  --signal-bright: #DBFF77;
  --on-signal:     #0C0D0A;
  /* type */
  --display: "Syne", "Hanken Grotesk", system-ui, sans-serif;
  --sans:    "Hanken Grotesk", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

/* DARK (default) */
:root, [data-theme="dark"] {
  --bg:        #0C0D0A;
  --bg-2:      #121310;
  --surface:   #17180F;
  --surface-2: #1C1E13;
  --ink:       #F2F3E9;
  --ink-2:     #CBCDBC;
  --muted:     #8B8D7B;
  --line:      rgba(242, 243, 233, 0.10);
  --line-2:    rgba(242, 243, 233, 0.17);
  --signal-ink:#D3F562;            /* legible lime for text/links on this bg */
  --signal-deep:#C8F94A;
  --signal-weak:rgba(200, 249, 74, 0.14);
  --plate:     #F2F3E9;            /* brand logos always sit on a light plate */
  --plate-line:rgba(12, 13, 10, 0.10);
  --grid-dot:  rgba(242, 243, 233, 0.055);
  --shadow-card: 0 28px 60px -34px rgba(0, 0, 0, 0.85);
  --glow:      rgba(200, 249, 74, 0.16);
  color-scheme: dark;
}

/* LIGHT */
[data-theme="light"] {
  --bg:        #F3F3EB;
  --bg-2:      #EBEBDF;
  --surface:   #FBFBF4;
  --surface-2: #F5F5EA;
  --ink:       #14150D;
  --ink-2:     #3B3D2E;
  --muted:     #6C6E5C;
  --line:      #E2E2D1;
  --line-2:    #D2D2BC;
  --signal-ink:#56810A;            /* legible deep lime for text/links on light */
  --signal-deep:#5E8C09;
  --signal-weak:rgba(118, 162, 18, 0.14);
  --plate:     #FFFFFF;
  --plate-line:rgba(20, 21, 13, 0.10);
  --grid-dot:  rgba(20, 21, 13, 0.05);
  --shadow-card: 0 24px 50px -32px rgba(34, 36, 20, 0.40);
  --glow:      rgba(118, 162, 18, 0.18);
  color-scheme: light;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background 0.4s ease, color 0.4s ease;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--signal); color: var(--on-signal); }

.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.75rem); }
section[id] { scroll-margin-top: 84px; }

.skip-link {
  position: fixed; left: 0.6rem; top: -4rem;
  z-index: 100; padding: 0.6rem 1rem; border-radius: 8px;
  background: var(--signal); color: var(--on-signal); font-weight: 700; font-size: 0.9rem; text-decoration: none;
  transition: top 0.18s;
}
.skip-link:focus { top: 0.6rem; }

a:focus-visible, .btn:focus-visible, .eco-node:focus-visible, .brand-card:focus-visible, .theme-toggle:focus-visible, .founder-link:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Wordmark ---------- */
.wordmark { display: inline-flex; align-items: center; gap: 0.55rem; color: var(--ink); text-decoration: none; }
.wordmark-mark { display: inline-flex; color: var(--signal-ink); }
.wordmark-text { font-family: var(--display); font-weight: 800; font-size: 1.34rem; letter-spacing: -0.02em; }
.wordmark-sub { font-family: var(--mono); font-weight: 500; font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted); margin-left: 0.55rem; }

/* ---------- Header (glass, sticky) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
}
@supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
  .site-header { background: var(--bg); }
}
.header-inner { display: flex; justify-content: space-between; align-items: center; padding-top: 0.85rem; padding-bottom: 0.85rem; }
.nav { display: flex; align-items: center; gap: 1.55rem; }
.nav a { position: relative; font-size: 0.95rem; font-weight: 600; color: var(--ink); text-decoration: none; transition: color 0.18s; }
.nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 0; bottom: -5px; height: 2px; border-radius: 2px; background: var(--signal); transform: scaleX(0); transform-origin: left; transition: transform 0.22s ease; }
.nav a:not(.nav-cta):hover { color: var(--signal-ink); }
.nav a:not(.nav-cta):hover::after { transform: scaleX(1); }
/* Header CTA */
.nav-cta {
  padding: 0.5rem 1.1rem; border-radius: 9px;
  background: var(--signal); color: var(--on-signal) !important; font-weight: 700;
  box-shadow: 0 10px 24px -14px var(--glow); transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { background: var(--signal-bright); transform: translateY(-1px); box-shadow: 0 14px 28px -14px var(--glow); }

/* ---------- Theme toggle ---------- */
.theme-toggle {
  display: inline-flex; align-items: center; padding: 0; margin-left: 0.2rem;
  background: none; border: 0; cursor: pointer; -webkit-tap-highlight-color: transparent;
}
.tt-track {
  position: relative; display: inline-flex; align-items: center; justify-content: space-between;
  width: 60px; height: 30px; padding: 0 7px; border-radius: 30px;
  border: 1px solid var(--line-2); background: var(--surface);
  transition: background 0.3s, border-color 0.3s;
}
.tt-ico { position: relative; z-index: 1; display: inline-flex; transition: color 0.3s, opacity 0.3s; }
.tt-moon { color: var(--on-signal); }   /* active in dark — sits on the lime thumb */
.tt-sun  { color: var(--muted); }
[data-theme="light"] .tt-moon { color: var(--muted); }
[data-theme="light"] .tt-sun  { color: var(--on-signal); }   /* active in light — sits on the lime thumb */
.tt-thumb {
  position: absolute; top: 50%; left: 4px; width: 22px; height: 22px; border-radius: 50%;
  transform: translateY(-50%); background: var(--signal);
  box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.5);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-theme="light"] .tt-thumb { transform: translate(30px, -50%); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.45rem; border-radius: 10px; border: 1px solid transparent;
  font-size: 0.96rem; font-weight: 600; text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn .arrow { transition: transform 0.25s; }
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary { background: var(--signal); color: var(--on-signal); box-shadow: 0 14px 32px -16px var(--glow); }
.btn-primary:hover { background: var(--signal-bright); transform: translateY(-2px); box-shadow: 0 20px 40px -16px var(--glow); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--ink-2); background: color-mix(in srgb, var(--ink) 5%, transparent); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--bg); color: var(--ink); padding: clamp(3.25rem, 6vw, 5.75rem) 0 clamp(2.5rem, 4vw, 3.5rem); border-bottom: 1px solid var(--line); }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-grid-tex {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, var(--grid-dot) 1px, transparent 1.4px);
  background-size: 26px 26px;
  -webkit-mask: radial-gradient(125% 95% at 72% 0%, #000 28%, transparent 74%);
  mask: radial-gradient(125% 95% at 72% 0%, #000 28%, transparent 74%);
}
.hero-glow {
  position: absolute; top: -18vw; right: -8vw; width: 52vw; height: 52vw;
  background: radial-gradient(circle, var(--glow), transparent 62%);
}
.hero-rings {
  position: absolute; top: 42%; right: -8%; width: min(44rem, 62vw); aspect-ratio: 1; transform: translateY(-50%);
  background: repeating-radial-gradient(circle at center, var(--signal-weak) 0 1.5px, transparent 1.5px 66px);
  -webkit-mask: radial-gradient(circle at center, #000, transparent 68%);
  mask: radial-gradient(circle at center, #000, transparent 68%);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }

.eyebrow { display: inline-flex; align-items: center; gap: 0.6rem; margin: 0 0 1.3rem; font-family: var(--mono); font-size: 0.72rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.16em; color: var(--signal-ink); }
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 0 4px var(--signal-weak); }
h1 { margin: 0 0 1.35rem; max-width: 15ch; font-family: var(--display); font-size: clamp(2.6rem, 5.6vw, 4.4rem); font-weight: 800; line-height: 1.0; letter-spacing: -0.035em; color: var(--ink); overflow-wrap: break-word; }
h1 em { font-style: normal; color: var(--signal-ink); }
.hero-sub { margin: 0 0 1.05rem; max-width: 46ch; font-size: clamp(1.1rem, 1.6vw, 1.28rem); font-weight: 500; line-height: 1.5; color: var(--ink); }
.hero-support { margin: 0 0 2rem; max-width: 48ch; font-size: 1.02rem; line-height: 1.65; color: var(--muted); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.85rem; }

/* ---------- Ecosystem signal hub (hero) ---------- */
.ecosystem {
  position: relative; padding: 1.5rem; border: 1px solid var(--line-2); border-radius: 20px;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  box-shadow: var(--shadow-card);
}
.eco-core {
  position: relative; display: flex; align-items: center; gap: 1rem; overflow: hidden;
  padding: 1.1rem 1.2rem; border: 1px solid color-mix(in srgb, var(--signal) 34%, transparent); border-radius: 14px;
  background: linear-gradient(120deg, var(--signal-weak), transparent);
}
.eco-signal { display: inline-flex; color: var(--signal-ink); }
.eco-meta { display: flex; flex-direction: column; gap: 0.1rem; }
.eco-kicker { font-family: var(--mono); font-size: 0.62rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.18em; color: var(--signal-ink); }
.eco-name { font-family: var(--display); font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
.eco-tree { position: relative; margin-top: 0.55rem; padding-left: 1.6rem; }
.eco-tree::before { content: ""; position: absolute; left: 0.62rem; top: -0.1rem; bottom: 1.7rem; width: 1.5px; background: linear-gradient(180deg, var(--signal), transparent); }
.eco-node {
  position: relative; display: flex; justify-content: space-between; align-items: center; gap: 0.6rem;
  margin-top: 0.6rem; padding: 0.78rem 1rem; border: 1px solid var(--line); border-radius: 11px;
  background: color-mix(in srgb, var(--ink) 2%, transparent); text-decoration: none; transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.eco-node::before { content: ""; position: absolute; left: -0.98rem; top: 50%; width: 0.78rem; height: 1.5px; background: var(--signal); opacity: 0.7; }
.eco-node::after { content: ""; position: absolute; left: calc(-0.98rem - 3px); top: 50%; width: 6px; height: 6px; border-radius: 50%; background: var(--signal); transform: translateY(-50%); opacity: 0; transition: opacity 0.2s; }
.eco-node:hover { border-color: color-mix(in srgb, var(--signal) 55%, transparent); transform: translateX(3px); background: var(--signal-weak); }
.eco-node:hover::after { opacity: 1; }
.eco-brand { font-weight: 700; font-size: 1rem; color: var(--ink); }
.eco-role { font-family: var(--mono); font-size: 0.7rem; color: var(--muted); text-align: right; }

/* ---------- Trust rail (hero foot) ---------- */
.trust-rail {
  display: grid; grid-template-columns: repeat(6, 1fr);
  margin: clamp(2.4rem, 4.5vw, 3.4rem) 0 0; padding: 0; list-style: none;
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  background: color-mix(in srgb, var(--ink) 2%, transparent);
}
.trust-rail li { display: flex; flex-direction: column; gap: 0.22rem; padding: 1rem 1.15rem; border-right: 1px solid var(--line); }
.trust-rail li:last-child { border-right: none; }
.tr-num { font-family: var(--display); font-size: 1.12rem; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); }
.tr-txt { font-family: var(--mono); font-size: 0.62rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }

/* ---------- Sections ---------- */
.section { position: relative; padding: clamp(4rem, 8vw, 7rem) 0; }
.section-alt { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 64ch; margin-bottom: clamp(2.4rem, 4vw, 3.4rem); }
.label { display: inline-flex; align-items: center; gap: 0.65rem; margin: 0 0 1.1rem; font-family: var(--mono); font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.16em; color: var(--ink-2); }
.label::before { content: ""; width: 1.6rem; height: 2px; border-radius: 2px; background: var(--signal); }
h2 { margin: 0 0 1.1rem; font-family: var(--display); font-size: clamp(1.95rem, 3.4vw, 2.75rem); font-weight: 800; line-height: 1.06; letter-spacing: -0.03em; color: var(--ink); overflow-wrap: break-word; }
.hl { color: var(--signal-ink); }
.lede { margin: 0; max-width: 66ch; font-size: 1.1rem; line-height: 1.65; color: var(--muted); }
.brand-cred {
  max-width: 64ch; margin: 1.3rem 0 0; padding: 0.15rem 0 0.15rem 1.3rem;
  border-left: 3px solid var(--signal);
  font-size: clamp(1.02rem, 1.4vw, 1.15rem); line-height: 1.62; color: var(--ink-2);
}
.brand-cred strong { color: var(--ink); font-weight: 700; }

.split { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.split > * { min-width: 0; }
.split-head { position: sticky; top: 100px; }

/* ---------- Brand cards (2x2) ---------- */
.brand-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
.brand-card {
  --cardpad: clamp(1.6rem, 2.4vw, 2.2rem);
  position: relative; display: flex; flex-direction: column; gap: 0.85rem; overflow: hidden;
  padding: var(--cardpad); border: 1px solid var(--line); border-radius: 18px;
  background: var(--surface); text-decoration: none; color: inherit;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.brand-rule { position: absolute; top: 0; left: 0; z-index: 3; height: 3px; width: 100%; transform: scaleX(0.12); transform-origin: left center; background: linear-gradient(90deg, var(--signal), var(--signal-bright)); transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1); }
.brand-card:hover, .brand-card:focus-visible { border-color: color-mix(in srgb, var(--signal) 48%, var(--line-2)); transform: translateY(-6px); box-shadow: var(--shadow-card), 0 0 0 1px color-mix(in srgb, var(--signal) 30%, transparent); }
.brand-card:hover .brand-rule, .brand-card:focus-visible .brand-rule { transform: scaleX(1); }
.brand-card:hover .brand-link, .brand-card:focus-visible .brand-link { color: var(--signal-ink); }
.brand-card:hover .brand-plate, .brand-card:focus-visible .brand-plate { border-color: color-mix(in srgb, var(--signal) 30%, var(--plate-line)); }

/* Product image banner — bleeds to the card edges, clipped by the card radius */
.brand-media {
  position: relative; display: block; overflow: hidden;
  margin: calc(-1 * var(--cardpad)) calc(-1 * var(--cardpad)) 0.2rem;
  aspect-ratio: 3 / 2; background: var(--bg-2); border-bottom: 1px solid var(--line);
}
.brand-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1); }
.brand-card:hover .brand-media img { transform: scale(1.04); }
.media--1card img     { object-position: center 42%; }
.media--revuz img     { object-position: center 38%; }
.media--lessworry img { object-position: center 46%; }
/* LINQS uses its branded banner whole (text would crop badly) — contain on a
   background colour matched to the banner's navy so the letterbox blends in. */
.media--linqs { background: #07182f; }
.media--linqs img { object-fit: contain; object-position: center; }
.brand-card:hover .media--linqs img { transform: scale(1.03); }

/* Uniform logo plates — every brand mark sits on an equal-size light plate,
   constrained by both height and width so wildly different aspect ratios
   read as the same visual weight. */
.brand-plate {
  display: flex; align-items: center; justify-content: flex-start;
  height: 72px; margin-bottom: 0.3rem;
  padding: 0 1.15rem; border-radius: 12px;
  background: var(--plate); border: 1px solid var(--plate-line);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}
/* Each asset fills its own box differently. Use explicit display boxes so the
   four marks read with similar weight, especially the wide LINQS lockup. */
.brand-plate .brand-logo { width: auto; height: auto; object-fit: contain; }
.brand-plate .logo--1card    { width: 142px; max-height: 24px; }
.brand-plate .logo--revuz    { width: 144px; max-height: 40px; }
.brand-plate .logo--lessworry{ width: 142px; max-height: 40px; }
.brand-plate .logo--linqs    { width: 130px; max-height: 46px; }

.brand-label { font-family: var(--mono); font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-2); }
.brand-desc { flex: 1; font-size: 0.96rem; line-height: 1.62; color: var(--muted); }
.brand-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.brand-tags span { padding: 0.22rem 0.6rem; font-family: var(--mono); font-size: 0.68rem; color: var(--ink-2); background: var(--bg-2); border: 1px solid var(--line); border-radius: 20px; }
.brand-link { display: inline-flex; align-items: center; gap: 0.45rem; margin-top: 0.3rem; font-size: 0.94rem; font-weight: 700; color: var(--ink); }
.brand-link .arrow { color: var(--signal-ink); transition: transform 0.25s; }
.brand-card:hover .brand-link .arrow { transform: translateX(5px); }

/* ---------- Platform tagline ---------- */
.platform-tagline {
  max-width: 900px; margin: 0 auto clamp(2.2rem, 4vw, 3rem);
  font-family: var(--display); font-weight: 700; font-style: normal;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem); line-height: 1.2; letter-spacing: -0.02em;
  text-align: center; color: var(--ink);
}

/* ---------- Technology / platform diagram ---------- */
.tech-diagram { max-width: 920px; margin: 0 auto clamp(2.4rem, 4vw, 3.4rem); }
.tech-layer-label { display: flex; align-items: center; justify-content: center; gap: 0.8rem; margin: 0 0 0.9rem; font-family: var(--mono); font-size: 0.64rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted); }
.tech-layer-label::before, .tech-layer-label::after { content: ""; width: 26px; height: 1px; background: var(--line-2); }

.tech-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.7rem; }
.tech-node {
  display: flex; flex-direction: column; align-items: center; gap: 0.45rem;
  padding: 1.15rem 0.7rem; border: 1px solid var(--line-2); border-radius: 14px;
  background: var(--surface); text-align: center;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.tech-node:hover { border-color: color-mix(in srgb, var(--signal) 50%, var(--line-2)); transform: translateY(-3px); box-shadow: var(--shadow-card); }
.tech-ico {
  display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 0.15rem;
  border-radius: 12px; background: var(--signal-weak); color: var(--signal-ink);
  border: 1px solid color-mix(in srgb, var(--signal) 28%, transparent);
}
.tech-ico svg { width: 25px; height: 25px; }
.tech-node:hover .tech-ico { background: color-mix(in srgb, var(--signal) 22%, transparent); }
.tech-node strong { font-family: var(--sans); font-size: 0.96rem; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); }
.tech-node em { font-style: normal; font-family: var(--mono); font-size: 0.6rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted); }

/* connector between tiers */
.tech-flow { display: flex; justify-content: center; padding: 0.55rem 0; }
.tech-flow-line { position: relative; width: 2px; height: 30px; overflow: hidden; border-radius: 2px; background: linear-gradient(180deg, var(--signal-weak), var(--signal), var(--signal-weak)); }
.tech-flow-line::after { content: ""; position: absolute; left: 50%; top: 0; width: 5px; height: 45%; border-radius: 5px; background: var(--signal); transform: translate(-50%, -120%); box-shadow: 0 0 8px var(--signal); }

/* platform foundation panel */
.tech-hub {
  position: relative; overflow: hidden; display: flex; align-items: center; gap: 1.05rem;
  padding: clamp(1.1rem, 2vw, 1.5rem) clamp(1.2rem, 2.6vw, 1.85rem); border-radius: 16px;
  background: var(--signal); color: var(--on-signal);
  box-shadow: 0 24px 50px -24px var(--glow);
}
.tech-hub-ico { flex-shrink: 0; display: grid; place-items: center; width: 54px; height: 54px; border-radius: 14px; background: var(--on-signal); color: var(--signal); }
.tech-hub-ico svg { width: 31px; height: 31px; }
.tech-hub-text { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 0.18rem; }
.tech-hub-text strong { font-family: var(--display); font-size: clamp(1.05rem, 1.9vw, 1.3rem); font-weight: 800; letter-spacing: -0.02em; }
.tech-hub-text em { font-style: normal; font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.03em; color: color-mix(in srgb, var(--on-signal) 68%, transparent); }
.tech-hub-rings { position: absolute; right: -42px; top: 50%; transform: translateY(-50%); width: 188px; height: 188px; color: var(--on-signal); opacity: 0.15; pointer-events: none; }
.tech-hub-rings svg { width: 100%; height: 100%; }

.fact-list { max-width: 800px; margin: 0 auto; padding: 0; list-style: none; }
.fact-list li { position: relative; padding: 1rem 0 1rem 1.7rem; border-top: 1px solid var(--line); font-size: 1.04rem; line-height: 1.55; color: var(--muted); }
.fact-list li:last-child { border-bottom: 1px solid var(--line); }
.fact-list li::before { content: ""; position: absolute; left: 0; top: 1.45rem; width: 8px; height: 8px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 0 3px var(--signal-weak); }
.fact-list span { color: var(--ink); font-weight: 700; }

/* ---------- FAQ ---------- */
.faq { max-width: 940px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.6rem, 3vw, 2.4rem) clamp(2rem, 4vw, 3.5rem); }
.faq-item h3 { margin: 0 0 0.5rem; font-family: var(--display); font-size: 1.14rem; font-weight: 800; letter-spacing: -0.01em; color: var(--ink); }
.faq-item p { margin: 0; font-size: 1rem; line-height: 1.62; color: var(--ink-2); }
.faq-item strong { color: var(--ink); font-weight: 700; }

/* ---------- Founder identity / links ---------- */
.founder-id { display: flex; flex-direction: column; gap: 0.55rem; min-width: 0; }
.founder-name { position: relative; font-family: var(--display); font-weight: 800; font-size: 1.4rem; letter-spacing: -0.02em; color: var(--ink); overflow-wrap: break-word; }
.founder-name::after { content: ""; display: block; width: 2.4rem; height: 3px; margin-top: 0.5rem; border-radius: 3px; background: linear-gradient(90deg, var(--signal), var(--signal-bright)); transform-origin: left center; }
.founder-role { font-family: var(--mono); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.founder-links { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.founder-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1.05rem; border-radius: 10px; border: 1px solid var(--line-2);
  background: color-mix(in srgb, var(--ink) 3%, transparent);
  font-size: 0.9rem; font-weight: 600; color: var(--ink); text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.2s, color 0.2s;
}
.founder-link svg { color: var(--signal-ink); transition: color 0.2s; }
.founder-link:hover { border-color: color-mix(in srgb, var(--signal) 55%, transparent); background: var(--signal-weak); transform: translateY(-2px); }

/* ---------- Vision (founder's personal note) — editorial "signal plate" ---------- */
.founder-section { position: relative; overflow: hidden; }
.founder-atmos {
  position: absolute; left: -6%; top: 4%; width: 44%; height: 74%; z-index: 0; pointer-events: none;
  background: radial-gradient(58% 56% at 42% 40%, var(--signal-weak), transparent 72%);
}
.vision {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 400px) 1fr;
  gap: clamp(2.4rem, 5vw, 5rem); align-items: stretch; max-width: 1080px;
}
.vision-main { position: relative; min-width: 0; }

/* Portrait plate: photo stretches to match the quote column, offset lime frame */
.founder-figure { position: relative; margin: 0; display: flex; flex-direction: column; }
.founder-plate { position: relative; flex: 1 1 auto; min-height: 0; }
.founder-photo-wrap {
  position: relative; z-index: 1; height: 100%; border-radius: 16px; overflow: hidden;
  border: 2px solid color-mix(in srgb, var(--signal) 58%, var(--plate-line));
  box-shadow: var(--shadow-card); background: var(--bg-2);
}
.founder-photo { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 40% 32%; }
.founder-cap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 0.95rem; }
.founder-caption { display: inline-flex; align-items: center; gap: 0.55rem; font-family: var(--mono); font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); }
.cap-dot { flex-shrink: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 0 3px var(--signal-weak); }
.founder-stamp { flex-shrink: 0; font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--signal-ink); }

/* Quote with editorial hierarchy */
.label--signal::before { content: ""; width: 1.6rem; height: 2px; border-radius: 2px; background: var(--signal); }
.vision-note { position: relative; margin: 0.7rem 0 0; }
.vision-quote {
  position: absolute; top: -0.42em; left: -0.06em; z-index: 0;
  font-family: var(--display); font-weight: 800; line-height: 1;
  font-size: clamp(5.5rem, 12vw, 10rem); color: var(--signal-ink); opacity: 0.24;
  pointer-events: none; user-select: none;
}
.vision-note > p { position: relative; z-index: 1; }
.vision-note .lead { margin: 0 0 1.15rem; font-family: var(--sans); font-weight: 600; font-size: clamp(1.6rem, 2.9vw, 2.35rem); line-height: 1.28; letter-spacing: -0.015em; color: var(--ink); }
.vision-note p:not(.lead) { margin: 0 0 1.05em; font-size: clamp(1.02rem, 1.35vw, 1.16rem); line-height: 1.72; color: var(--ink-2); }
.vision-note p:last-child { margin-bottom: 0; }
.vision-note em { font-style: normal; color: var(--signal-ink); }
.vision-note strong { font-weight: 700; color: var(--ink); }
.vision-sign { display: flex; align-items: flex-start; gap: 1rem; flex-wrap: wrap; margin-top: clamp(2rem, 4vw, 2.8rem); padding-top: 1.6rem; border-top: 1px solid var(--line); }
.vision-sign .founder-links { margin-left: auto; }

/* ---------- Section: dark/feature (contact) ---------- */
.section-dark { position: relative; overflow: hidden; background: var(--surface); color: var(--ink); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-dark-bg { position: absolute; inset: 0; pointer-events: none; }
.section-dark .container { position: relative; z-index: 1; }
.contact-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.9rem; }

.company-block { padding-top: 0.2rem; }
.company-facts { margin: 0; border-top: 1px solid var(--line); }
.company-facts > div { display: grid; grid-template-columns: 13rem 1fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.company-facts dt { margin: 0; font-family: var(--mono); font-size: 0.72rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.company-facts dd { margin: 0; color: var(--ink); font-weight: 500; }
.company-facts a { color: var(--signal-ink); text-decoration: none; }
.company-facts a:hover { text-decoration: underline; }
.company-note { margin: 1.5rem 0 0; font-size: 0.98rem; line-height: 1.65; color: var(--muted); }
.company-note a { color: var(--signal-ink); text-decoration: none; }
.company-note a:hover { text-decoration: underline; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-2); color: var(--muted); border-top: 1px solid var(--line); padding: clamp(3.6rem, 6vw, 5.2rem) 0 2.6rem; }
.footer-top { display: flex; align-items: center; padding-bottom: clamp(2rem, 4vw, 3rem); border-bottom: 1px solid var(--line); }
.footer-note { margin: 0; font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.02em; color: var(--muted); }

/* ---------- In media ---------- */
.media { padding: clamp(3rem, 6vw, 5rem) 0; border-top: 1px solid var(--line); }
.media-eyebrow { margin: 0 0 clamp(1.6rem, 3vw, 2.4rem); text-align: center; font-family: var(--mono); font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.24em; color: var(--muted); }
.media-wall { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(1.8rem, 5vw, 4.5rem); }
.media-logo { font-size: clamp(1rem, 1.6vw, 1.22rem); color: var(--ink); text-decoration: none; opacity: 0.42; filter: grayscale(1); white-space: nowrap; transition: opacity 0.22s ease, color 0.22s ease; }
.media-logo:hover, .media-logo:focus-visible { opacity: 1; color: var(--signal-ink); outline: none; }
.ml-serif { font-family: Georgia, "Times New Roman", serif; font-weight: 700; letter-spacing: -0.01em; }
.ml-sans { font-family: var(--display); font-weight: 800; letter-spacing: -0.025em; }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .vision { grid-template-columns: 1fr; gap: clamp(1.8rem, 5vw, 2.4rem); }
  .founder-figure { max-width: 460px; }
  .founder-plate { flex: 0 0 auto; }
  .founder-photo-wrap { height: auto; }
  .founder-photo { height: auto; object-fit: fill; }   /* natural landscape, no crop when stacked */
  .vision-note { margin-top: 1.4rem; }
  .vision-quote { font-size: clamp(4rem, 18vw, 6rem); }
  .founder-atmos { width: 70%; height: 38%; }
}
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split-head { position: static; }
  .trust-rail { grid-template-columns: repeat(3, 1fr); }
  .trust-rail li:nth-child(3) { border-right: none; }
  .trust-rail li:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 680px) {
  .nav { gap: 0.6rem; }
  .nav a:not(.nav-cta) { display: none; }
  .nav-cta { padding: 0.46rem 0.9rem; font-size: 0.9rem; }
  .wordmark-sub { display: none; }
  .wordmark-text { font-size: 1.12rem; }
  .wordmark-mark svg { width: 22px; height: 22px; }
  /* Single-column cards with larger, more legible text on phones */
  .brand-grid { grid-template-columns: 1fr; gap: 1.1rem; }
  .brand-card { gap: 0.95rem; }
  .brand-label { font-size: 0.8rem; }
  .brand-desc { font-size: 1.06rem; line-height: 1.6; }
  .brand-tags span { font-size: 0.76rem; padding: 0.3rem 0.7rem; }
  .faq { grid-template-columns: 1fr; }
  .brand-link { font-size: 1.05rem; }
  .tech-row { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .trust-rail { grid-template-columns: repeat(2, 1fr); }
  .trust-rail li { border-bottom: 1px solid var(--line); }
  .trust-rail li:nth-child(2n) { border-right: none; }
  .trust-rail li:nth-last-child(-n+2) { border-bottom: none; }
  .company-facts > div { grid-template-columns: 1fr; gap: 0.2rem; }
  .footer-top { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
}

/* ---------- Motion (progressive enhancement; content visible by default) ---------- */
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes signal-pulse { 0% { box-shadow: 0 0 0 1px rgba(12, 13, 10, 0.5); opacity: 0.9; } 70% { box-shadow: 0 0 0 26px rgba(12, 13, 10, 0); opacity: 0; } 100% { box-shadow: 0 0 0 26px rgba(12, 13, 10, 0); opacity: 0; } }
@keyframes signal-travel { 0% { transform: translate(-50%, -100%); } 100% { transform: translate(-50%, 260%); } }
@keyframes dot-breathe { 0%, 100% { box-shadow: 0 0 0 4px var(--signal-weak); } 50% { box-shadow: 0 0 0 7px var(--signal-weak); } }
@keyframes rule-draw { from { transform: scaleX(0); } to { transform: scaleX(1); } }

@media (prefers-reduced-motion: no-preference) {
  .reveal-load {
    transition: opacity 0.75s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
    transition-delay: calc(var(--d, 0) * 95ms + 100ms);
  }
  @starting-style { .reveal-load { opacity: 0; transform: translateY(16px); } }

  .eyebrow-dot { animation: dot-breathe 2.6s ease-in-out infinite; }
  .tech-flow-line::after { animation: signal-travel 2.2s cubic-bezier(0.5, 0, 0.5, 1) infinite; }
  .tech-flow:nth-of-type(4) .tech-flow-line::after { animation-delay: 0.4s; }

  @supports (animation-timeline: view()) {
    .reveal { animation: rise 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) both; animation-timeline: view(); animation-range: entry 2% cover 26%; }
    .brand-card.reveal { animation-range: entry calc(2% + var(--i, 0) * 3%) cover 30%; }
    .founder-name::after { animation: rule-draw 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both; animation-timeline: view(); animation-range: entry 6% cover 32%; }
  }
}
