/* ───────────────────────────────────────────────────────────
   patootie — shared chrome
   Cool paper, hairline rules, near-sharp corners. Two accent
   colours, and they mean two people: saturation is reserved
   for presence, never decoration.
   ─────────────────────────────────────────────────────────── */

:root {
  --paper:        #F7F8FA;
  --paper-raised: #FFFFFF;
  --ink:          #16171B;
  --ink-soft:     #5A5D67;
  --ink-faint:    #9599A3;
  --line:         #E2E4E9;

  --pink:      #FF6F9C;
  --pink-tint: #FFE2EC;
  --blue:      #5B9DFF;
  --blue-tint: #DEEAFF;

  --pair: linear-gradient(100deg, var(--pink), var(--blue));

  --r-frame: 0px;
  --r-ctrl:  4px;
  --r-card:  8px;

  --s1: 8px;  --s2: 16px; --s3: 24px; --s4: 40px; --s5: 64px;

  --shadow-soft: 0 6px 24px rgba(22, 23, 27, .06);
  --shadow-lg:   0 18px 50px rgba(22, 23, 27, .10);

  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --mono: 'Space Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior-y: none;
  -webkit-tap-highlight-color: transparent;
}

h1, h2, h3 { margin: 0; font-weight: 800; letter-spacing: -.03em; line-height: 1.04; }
h1 { font-size: clamp(33px, 4.6vw, 52px); }
h2 { font-size: clamp(26px, 4vw, 38px); }
h3 { font-size: clamp(18px, 2.2vw, 22px); letter-spacing: -.02em; }
p  { margin: 0; }
a  { color: inherit; }

/* ── micro-label layer ─────────────────────────────────────
   Everything small is mono and tracked out. It's the texture
   that ties the whole thing together.                        */
.eyebrow, .mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.grad {
  background: var(--pair);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* ── top ribbon + bar ──────────────────────────────────────── */
.ribbon {
  background: var(--pair);
  color: #fff;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-align: center;
  padding: 7px 16px;
}

.bar {
  position: sticky; top: 0; z-index: 40;
  height: 64px;
  display: flex; align-items: center;
  background: rgba(247, 248, 250, .78);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.bar .wrap { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.brand { font-weight: 800; letter-spacing: -.03em; font-size: 19px; text-decoration: none; }
.brand span { color: var(--pink); }
.bar nav { display: flex; align-items: center; gap: var(--s3); }
.bar nav a { font-size: 14px; text-decoration: none; color: var(--ink-soft); }
.bar nav a:hover { color: var(--ink); }

/* ── buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px;
  border-radius: var(--r-ctrl);
  border: 1px solid transparent;
  font-family: var(--sans);
  font-size: 15px; font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform .13s ease, box-shadow .13s ease, border-color .13s ease;
}
.btn:disabled { opacity: .45; cursor: not-allowed; }
.btn-grad  { background: var(--pair); color: #fff; }
.btn-solid { background: var(--ink); color: var(--paper); }
.btn-ghost { background: var(--paper-raised); color: var(--ink); border-color: var(--line); }
.btn:not(:disabled):hover  { transform: translateY(-1px); box-shadow: var(--shadow-soft); }
.btn-ghost:not(:disabled):hover { border-color: var(--ink); }
.btn:not(:disabled):active { transform: scale(.97); }
.btn-lg { padding: 14px 26px; font-size: 16px; }

/* ── cards ─────────────────────────────────────────────────── */
.card {
  position: relative;
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: var(--s3);
}

/* the hairline that warms up on hover — our one bit of flourish */
.card-hover::before {
  content: '';
  position: absolute; inset: -1px -1px auto -1px; height: 2px;
  background: var(--pair);
  border-radius: var(--r-card) var(--r-card) 0 0;
  opacity: 0;
  transition: opacity .15s ease;
}
.card-hover { transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease; }
.card-hover:hover { transform: translateY(-3px); border-color: #D3D6DD; box-shadow: var(--shadow-soft); }
.card-hover:hover::before { opacity: 1; }
.card-hover:active { transform: scale(.985); }

.badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 999px;
}
.badge-live { background: var(--pair); color: #fff; }
.badge-soon { border: 1px solid var(--line); color: var(--ink-faint); }

/* ── sections + footer ─────────────────────────────────────── */
section { padding: 88px 0; border-top: 1px solid var(--line); }
section:first-of-type { border-top: 0; }

footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-faint);
  text-align: center;
}
footer a { text-decoration: none; }
footer a:hover { color: var(--ink); }

@media (max-width: 880px) {
  section { padding: 60px 0; }
  .bar nav a.hide-sm { display: none; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
