/* ============================================================
   2D GEOMETRY — company site
   Aesthetic: "Inked Playground" — a neo-brutalist notebook page.
   Brand palette pulled straight from the Pronotes app icon.
   ============================================================ */

:root {
  /* --- canonical brand (from the app icon) --- */
  --blue:        #4377FF;
  --blue-deep:   #2C56D6;
  --orange:      #FF8E4C;
  --orange-deep: #F2762E;
  --ink:         #14161B;

  /* --- paper --- */
  --paper:   #FBF6EC;
  --paper-2: #F4ECDB;
  --cream-line: rgba(20, 22, 27, .10);

  /* --- the app's pen palette (used as accents) --- */
  --pen-blue:   #3B6FE0;
  --pen-red:    #E0524E;
  --pen-green:  #2F8F6B;
  --pen-amber:  #E0A53B;
  --pen-violet: #8E5BD0;

  /* --- type --- */
  --display: "Fredoka", "Segoe UI", system-ui, sans-serif;
  --body:    "Archivo", system-ui, -apple-system, sans-serif;
  --mono:    "Spline Sans Mono", ui-monospace, monospace;
  --hand:    "Caveat", "Segoe Print", cursive;

  /* --- structure --- */
  --edge: 2.5px solid var(--ink);
  --r:    16px;
  --shadow:    5px 5px 0 var(--ink);
  --shadow-lg: 8px 8px 0 var(--ink);
  --maxw: 1180px;
  --gut: clamp(18px, 5vw, 64px);
}

/* ---------------- reset ---------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}
/* paper grain over everything */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: .04; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input { font: inherit; }
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: -100px; left: 16px; z-index: 1000;
  background: var(--ink); color: var(--paper); padding: 10px 16px; border-radius: 10px;
  transition: top .2s;
}
.skip-link:focus { top: 14px; }

:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 4px; }

/* keep anchored sections clear of the sticky nav */
:where(section[id], main span[id]) { scroll-margin-top: 88px; }

/* ---------------- shared type ---------------- */
.kicker {
  font-family: var(--mono); font-size: 12px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--orange-deep);
  display: inline-flex; align-items: center; gap: 10px;
}
.kicker.center { justify-content: center; }
.kicker-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--orange); border: 2px solid var(--ink); flex: none; }
.hand { font-family: var(--hand); font-weight: 700; }

.section-title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(2.1rem, 5.2vw, 4rem);
  line-height: .98; letter-spacing: -.02em;
}
.section-title.light { color: var(--paper); }

/* ---------------- chunky button ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--display); font-weight: 600; font-size: 1rem;
  color: var(--ink); background: var(--orange);
  border: var(--edge); border-radius: 14px;
  padding: .72em 1.15em; box-shadow: var(--shadow);
  transition: transform .12s ease, box-shadow .12s ease, background .15s ease;
  white-space: nowrap; cursor: pointer;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--ink); background: #ffa163; }
.btn:active { transform: translate(3px, 3px); box-shadow: 1px 1px 0 var(--ink); }
.btn-lg { font-size: 1.12rem; padding: .85em 1.5em; border-radius: 16px; }
.btn-sm { font-size: .92rem; padding: .55em .95em; border-radius: 12px; box-shadow: 3px 3px 0 var(--ink); }
.btn-ghost { background: var(--paper); }
.btn-ghost:hover { background: #fff; }
.btn-ic { width: 1.2em; height: 1.2em; transition: transform .15s; }
.btn:hover .btn-ic { transform: translateX(3px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 246, 236, .82);
  backdrop-filter: blur(10px) saturate(1.3); -webkit-backdrop-filter: blur(10px) saturate(1.3);
  border-bottom: var(--edge);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 12px var(--gut);
  display: flex; align-items: center; gap: 18px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--display); font-weight: 700; font-size: 1.25rem; letter-spacing: -.01em; }
.brand-mark {
  width: 38px; height: 38px; border: var(--edge); border-radius: 11px; overflow: hidden;
  background: var(--blue); flex: none; box-shadow: 3px 3px 0 var(--ink);
}
.brand-mark.big { width: 54px; height: 54px; border-radius: 14px; }
.brand-mark svg { width: 100%; height: 100%; }
.nav-links { margin-left: auto; display: flex; gap: 26px; font-weight: 600; }
.nav-links a { position: relative; padding: 4px 0; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 3px;
  background: var(--orange); border-radius: 3px; transition: right .25s ease;
}
.nav-links a:hover::after { right: 0; }
.nav-cta { margin-left: 4px; }
.nav-toggle { display: none; width: 44px; height: 44px; margin-left: auto; flex-direction: column; gap: 5px; align-items: center; justify-content: center; border: var(--edge); border-radius: 11px; background: var(--paper); box-shadow: 3px 3px 0 var(--ink); }
.nav-toggle span { width: 20px; height: 2.6px; background: var(--ink); border-radius: 2px; transition: .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.6px) rotate(-45deg); }
.nav-mobile { display: none; flex-direction: column; gap: 4px; padding: 8px var(--gut) 18px; border-bottom: var(--edge); background: var(--paper); }
.nav-mobile a { padding: 12px 4px; font-weight: 600; font-size: 1.1rem; border-bottom: 1.5px dashed var(--cream-line); }
.nav-mobile a:last-child { border: 0; }
.nav-cta-mobile { margin-top: 10px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(40px, 7vw, 86px) var(--gut) clamp(30px, 5vw, 60px);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.hero-title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(2.8rem, 7.2vw, 5.4rem); line-height: .96; letter-spacing: -.025em;
  margin: 22px 0 0;
}
.word-ink {
  position: relative; display: inline-block; color: var(--orange);
  -webkit-text-stroke: 5px var(--ink); paint-order: stroke fill;
  text-shadow: 4px 5px 0 rgba(20, 22, 27, .16);
}
.word-ink .ul {
  position: absolute; left: -4%; bottom: -.18em; width: 108%; height: .34em;
  color: var(--orange); overflow: visible;
}
.hero-sub {
  margin-top: 22px; max-width: 30ch; font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: #3a3d44;
}
.hero-cta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-foot { margin-top: 22px; font-size: .95rem; color: #5a5d64; }
.hero-foot .hand { font-size: 1.25rem; color: var(--blue-deep); }

/* draw stage */
.hero-stage { position: relative; }
.draw-nudge {
  position: absolute; top: -34px; right: 30%; z-index: 5;
  font-size: 1.55rem; color: var(--blue-deep); transform: rotate(-6deg);
  display: flex; align-items: flex-start; gap: 4px; pointer-events: none;
}
.draw-arrow { width: 46px; height: 46px; color: var(--blue-deep); transform: translateY(6px) rotate(8deg); }

.pad {
  position: relative; background: #fff; border: var(--edge); border-radius: 22px;
  box-shadow: var(--shadow-lg); overflow: hidden; transform: rotate(1.4deg);
  transition: transform .3s ease;
}
.pad:hover { transform: rotate(0deg); }
.pad-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 16px; background: var(--blue); border-bottom: var(--edge);
}
.pad-brand { display: inline-flex; align-items: center; gap: 8px; font-family: var(--display); font-weight: 700; color: #fff; font-size: 1.05rem; }
.pad-brand svg { width: 24px; height: 24px; border-radius: 6px; border: 2px solid var(--ink); background: var(--blue); }
.pad-dots { display: flex; gap: 6px; }
.pad-dots i { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.55); border: 2px solid var(--ink); }
.pad-canvas {
  display: block; width: 100%; height: 340px; touch-action: none; cursor: crosshair;
  background-color: #fff;
  background-image: radial-gradient(rgba(20,22,27,.13) 1.4px, transparent 1.5px);
  background-size: 22px 22px; background-position: 11px 11px;
}
.pad-tools {
  display: flex; align-items: center; gap: 9px; flex-wrap: wrap;
  padding: 12px 16px; background: var(--paper-2); border-top: var(--edge);
}
.swatch {
  width: 30px; height: 30px; border-radius: 50%; background: var(--sw);
  border: 2.5px solid var(--ink); box-shadow: 2px 2px 0 var(--ink);
  transition: transform .12s; flex: none;
}
.swatch:hover { transform: translateY(-2px); }
.swatch.is-on { box-shadow: 0 0 0 3px var(--paper-2), 0 0 0 5.5px var(--ink); transform: translateY(-1px); }
.pad-sep { width: 2px; height: 26px; background: var(--cream-line); margin: 0 2px; }
.padbtn {
  width: 36px; height: 36px; display: grid; place-items: center; margin-left: auto;
  border: 2.5px solid var(--ink); border-radius: 11px; background: #fff; box-shadow: 2px 2px 0 var(--ink);
  transition: transform .12s, box-shadow .12s;
}
.padbtn:hover { transform: translate(-1px,-1px); box-shadow: 3px 3px 0 var(--ink); }
.padbtn:active { transform: translate(2px,2px); box-shadow: 0 0 0 var(--ink); }
.padbtn svg { width: 20px; height: 20px; }

/* ---- stickers ---- */
.sticker {
  display: inline-block; font-family: var(--display); font-weight: 700; font-size: .9rem;
  padding: 6px 13px; border: var(--edge); border-radius: 999px; box-shadow: 3px 3px 0 var(--ink);
  z-index: 6; white-space: nowrap;
}
.sticker-star { position: absolute; top: clamp(30px,6vw,70px); right: var(--gut); background: var(--pen-amber); transform: rotate(9deg); }
.sticker-pencil { position: absolute; bottom: -16px; left: -10px; background: var(--orange); transform: rotate(-5deg); }
.sticker-soon { background: var(--pen-amber); transform: rotate(-4deg); margin-bottom: 18px; }

/* ---- decorative scribbles ---- */
.scribble { position: absolute; color: var(--orange); opacity: .9; z-index: 0; pointer-events: none; }
.scribble-loop { width: 120px; bottom: 8%; left: 38%; transform: rotate(-8deg); opacity: .35; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  border-top: var(--edge); border-bottom: var(--edge); background: var(--orange);
  overflow: hidden; padding: 14px 0;
}
.marquee-track {
  display: inline-flex; align-items: center; gap: 28px; white-space: nowrap;
  font-family: var(--display); font-weight: 700; font-size: 1.7rem; color: var(--ink);
  text-transform: lowercase; will-change: transform;
  animation: marquee 22s linear infinite;
}
.marquee .dot { color: #fff; -webkit-text-stroke: 1.5px var(--ink); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   PRODUCT INTRO
   ============================================================ */
.product { padding: clamp(56px, 9vw, 110px) var(--gut); text-align: center; }
.product-inner { max-width: 760px; margin: 0 auto; }
.product .section-title { margin: 16px 0 0; font-size: clamp(2.4rem, 6vw, 4.4rem); }
.wordmark {
  position: relative; display: inline-block; color: var(--orange);
  -webkit-text-stroke: 4px var(--ink); paint-order: stroke fill;
  text-shadow: 3px 4px 0 rgba(20,22,27,.16);
}
.ul-orange { color: var(--orange); }
.wordmark .ul { position: absolute; left: 0; bottom: -.16em; width: 100%; height: .3em; overflow: visible; }
.section-lede { margin: 26px auto 0; max-width: 56ch; font-size: 1.2rem; color: #3a3d44; }

/* ============================================================
   FEATURES
   ============================================================ */
.features { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut) clamp(60px,9vw,110px); }
.features-head { display: grid; grid-template-columns: auto 1fr; gap: 30px; align-items: end; margin-bottom: 44px; }
.features-head .section-title { grid-column: 1; }
.features-sub { grid-column: 2; max-width: 42ch; color: #3a3d44; font-size: 1.1rem; padding-bottom: 8px; }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  position: relative; background: var(--paper); border: var(--edge); border-radius: 20px;
  padding: 30px 26px 26px; box-shadow: var(--shadow); overflow: hidden;
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow-lg); }
.card-tab { position: absolute; top: 0; left: 28px; width: 56px; height: 12px; background: var(--accent); border: var(--edge); border-top: 0; border-radius: 0 0 8px 8px; }
.card-ic {
  display: grid; place-items: center; width: 62px; height: 62px; margin-bottom: 18px;
  border: var(--edge); border-radius: 16px; background: color-mix(in srgb, var(--accent) 16%, #fff);
  color: var(--accent); box-shadow: 3px 3px 0 var(--ink);
}
.card-ic svg { width: 32px; height: 32px; }
.card h3 { font-family: var(--display); font-weight: 600; font-size: 1.42rem; letter-spacing: -.01em; margin-bottom: 8px; }
.card p { color: #41444b; font-size: 1.02rem; }

.essentials { margin-top: 46px; display: flex; flex-wrap: wrap; align-items: center; gap: 14px 18px; }
.essentials-label { font-size: 1.5rem; color: var(--blue-deep); }
.chip-row { display: flex; flex-wrap: wrap; gap: 12px; list-style: none; padding: 0; }
.chip {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .98rem;
  padding: 8px 15px; background: var(--paper); border: var(--edge); border-radius: 999px; box-shadow: 3px 3px 0 var(--ink);
}
.chip svg { width: 21px; height: 21px; color: var(--orange-deep); }

/* ============================================================
   STUDIO (cobalt graph-paper section)
   ============================================================ */
.studio {
  background-color: var(--blue);
  background-image:
    linear-gradient(rgba(255,255,255,.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px);
  background-size: 32px 32px;
  border-top: var(--edge); border-bottom: var(--edge);
  color: #fff;
}
.studio-grid {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(56px,9vw,104px) var(--gut);
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(34px,5vw,72px); align-items: center;
}
.studio .kicker { color: #ffe0c4; }
.studio .kicker-dot { background: var(--orange); }
.studio-copy .section-title { margin: 16px 0 0; }
.studio-lede { margin-top: 22px; font-size: 1.18rem; max-width: 44ch; color: rgba(255,255,255,.92); }
.facts { list-style: none; padding: 0; display: grid; gap: 14px; }
.facts li {
  background: rgba(255,255,255,.10); border: 2.5px solid rgba(255,255,255,.85); border-radius: 16px;
  padding: 18px 20px; box-shadow: 5px 5px 0 rgba(20,22,27,.45); backdrop-filter: blur(2px);
}
.fact-k { display: block; font-family: var(--display); font-weight: 700; font-size: 1.3rem; color: var(--orange); }
.fact-v { display: block; margin-top: 4px; color: rgba(255,255,255,.9); font-size: 1.02rem; }

/* ============================================================
   WAITLIST
   ============================================================ */
.waitlist { padding: clamp(60px,10vw,120px) var(--gut); text-align: center; position: relative; }
.waitlist-inner { max-width: 660px; margin: 0 auto; }
.waitlist-title {
  font-family: var(--display); font-weight: 700; font-size: clamp(2.4rem,6.4vw,4.6rem);
  line-height: .96; letter-spacing: -.025em;
}
.waitlist-sub { margin: 22px auto 0; max-width: 48ch; font-size: 1.18rem; color: #3a3d44; }

.wl-form { margin-top: 36px; }
.wl-field {
  display: flex; gap: 12px; padding: 8px; background: #fff; border: var(--edge); border-radius: 20px;
  box-shadow: var(--shadow-lg); max-width: 560px; margin: 0 auto;
}
.wl-field input {
  flex: 1; min-width: 0; border: 0; background: transparent; padding: 0 16px; font-size: 1.1rem; color: var(--ink);
}
.wl-field input::placeholder { color: #9a9488; }
.wl-field input:focus { outline: 0; }
.wl-submit { flex: none; }
.wl-note { margin-top: 16px; font-size: 1.3rem; color: var(--blue-deep); }
.wl-msg { margin-top: 12px; font-weight: 600; min-height: 1.2em; color: var(--pen-red); }
.wl-msg.ok { color: var(--pen-green); }

.wl-done { animation: pop .4s cubic-bezier(.2,1.4,.4,1); }
.wl-done-ic {
  display: inline-grid; place-items: center; width: 72px; height: 72px; margin: 0 auto 18px;
  background: var(--pen-green); color: #fff; border: var(--edge); border-radius: 20px; box-shadow: var(--shadow);
}
.wl-done-ic svg { width: 40px; height: 40px; }
.wl-done h3 { font-family: var(--display); font-weight: 700; font-size: 2rem; }
.wl-done p { margin-top: 8px; color: #3a3d44; font-size: 1.12rem; }
@keyframes pop { from { opacity: 0; transform: scale(.9); } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: var(--paper); padding: clamp(40px,6vw,64px) var(--gut) 28px; }
.footer-inner {
  max-width: var(--maxw); margin: 0 auto; display: flex; flex-wrap: wrap; gap: 30px;
  justify-content: space-between; align-items: flex-start;
}
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand .brand-mark { box-shadow: 3px 3px 0 var(--orange); }
.footer-name { font-family: var(--display); font-weight: 700; font-size: 1.35rem; }
.footer-tag { font-size: 1.25rem; color: #b9b3a6; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 22px; font-weight: 600; }
.footer-links a { color: #d7d1c4; padding: 4px 0; transition: color .15s; }
.footer-links a:hover { color: var(--orange); }
.footer-base {
  max-width: var(--maxw); margin: 34px auto 0; padding-top: 18px; border-top: 1.5px solid rgba(255,255,255,.16);
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between;
  font-size: .9rem; color: #9c968a;
}
.footer-mono { font-family: var(--mono); letter-spacing: .04em; }

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); }
.reveal.in { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s cubic-bezier(.2,.8,.3,1); }
.grid .card.reveal { transition-delay: calc(var(--i, 0) * 80ms); }

/* ============================================================
   LEGAL / DOC PAGE
   ============================================================ */
.doc { max-width: 760px; margin: 0 auto; padding: clamp(40px,7vw,90px) var(--gut) 80px; }
.doc-back { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 26px; font-weight: 600; }
.doc-back svg { width: 20px; height: 20px; transform: rotate(180deg); }
.doc h1 { font-family: var(--display); font-weight: 700; font-size: clamp(2.2rem,5vw,3.4rem); letter-spacing: -.02em; }
.doc-meta { font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: #6a6d74; margin-top: 10px; }
.doc h2 { font-family: var(--display); font-weight: 600; font-size: 1.5rem; margin: 34px 0 10px; }
.doc p { margin-top: 12px; color: #34373e; font-size: 1.06rem; }
.doc ul { margin: 12px 0 0 1.1em; display: grid; gap: 8px; }
.doc li { color: #34373e; font-size: 1.06rem; }
.doc a { color: var(--blue-deep); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { max-width: var(--maxw); margin: 0 auto; padding: clamp(56px,9vw,110px) var(--gut); }
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(34px,5vw,68px); align-items: center; }

.about-title { font-family: var(--display); font-weight: 700; font-size: clamp(2.1rem,5vw,3.5rem); line-height: 1.04; letter-spacing: -.02em; margin: 18px 0 0; }
.about-name {
  background-image: linear-gradient(var(--orange), var(--orange));
  background-size: 100% .14em; background-position: 0 94%; background-repeat: no-repeat;
  padding-bottom: .02em; -webkit-box-decoration-break: clone; box-decoration-break: clone;
}
.about-lede { margin: 22px 0 0; max-width: 48ch; font-size: 1.16rem; color: #3a3d44; }
.about-lede strong { color: var(--ink); font-weight: 700; }
.about-copy .btn { margin-top: 28px; }

.about-card {
  position: relative; background: #fff; border: var(--edge); border-radius: 24px;
  box-shadow: var(--shadow-lg); padding: 30px 28px 14px; transform: rotate(1.6deg);
  transition: transform .3s ease;
}
.about-card:hover { transform: rotate(0deg); }
.about-stamp {
  position: absolute; top: -15px; right: 24px; z-index: 2;
  font-family: var(--display); font-weight: 700; font-size: .82rem;
  padding: 7px 14px; background: var(--pen-amber); color: var(--ink);
  border: var(--edge); border-radius: 999px; box-shadow: 3px 3px 0 var(--ink); transform: rotate(4deg);
}
.about-card-top { display: flex; align-items: center; gap: 16px; padding-bottom: 22px; margin-bottom: 6px; border-bottom: 2px dashed rgba(20,22,27,.18); }
.about-mark { width: 66px; height: 66px; flex: none; border: var(--edge); border-radius: 17px; overflow: hidden; background: var(--blue); box-shadow: 3px 3px 0 var(--ink); }
.about-mark svg { width: 100%; height: 100%; display: block; }
.about-card-tag { font-size: 1.5rem; line-height: 1.08; color: var(--blue-deep); }
.about-rows { margin: 0; }
.about-rows > div { padding: 15px 0; border-bottom: 1.5px solid rgba(20,22,27,.10); }
.about-rows > div:last-child { border-bottom: 0; }
.about-rows dt { font-family: var(--mono); font-size: 10.5px; letter-spacing: .15em; text-transform: uppercase; color: var(--orange-deep); }
.about-rows dd { margin: 4px 0 0; font-family: var(--display); font-weight: 600; font-size: 1.12rem; line-height: 1.2; }
.about-rows dd a { color: var(--blue-deep); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; word-break: break-word; }
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; justify-items: start; }
  .about-card { width: 100%; max-width: 440px; }
}

/* ABOUT — dedicated /about page */
.about-page { max-width: var(--maxw); margin: 0 auto; padding: clamp(48px,8vw,92px) var(--gut) clamp(60px,9vw,110px); }
.about-head { text-align: center; max-width: 720px; margin: 0 auto clamp(34px,5vw,52px); }
.about-head .about-title { margin: 14px 0 0; }
.about-page-lede { margin: 20px auto 0; max-width: 46ch; font-size: 1.25rem; color: #3a3d44; }
.about-page .about-grid { align-items: start; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stage { margin-top: 18px; }
  .draw-nudge { right: auto; left: 8px; top: -30px; }
  .studio-grid { grid-template-columns: 1fr; }
  .features-head { grid-template-columns: 1fr; gap: 14px; }
  .features-head .features-sub { grid-column: 1; }
  .grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile.open { display: flex; }
  .grid { grid-template-columns: 1fr; }
  .marquee-track { font-size: 1.4rem; }
  .wl-field { flex-direction: column; }
  .wl-submit { width: 100%; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
}
