/* ============================================================
   Minutly — About page
   Brand: primary #0E03C9, secondary #0ACFE4
   ============================================================ */

:root {
  --primary: #0E03C9;
  --primary-2: #2A1FE4;
  --secondary: #0ACFE4;
  --secondary-2: #4DE3F2;
  --ink: #08093b;
  --ink-2: #2b2d5c;
  --muted: #6b6f9a;
  --line: #e6e7f5;
  --bg: #ffffff;
  --bg-2: #f5f6ff;
  --bg-3: #eef0ff;
  --success: #18b26b;
  --shadow-sm: 0 2px 8px rgba(14, 3, 201, 0.06);
  --shadow-md: 0 18px 40px -18px rgba(14, 3, 201, 0.25);
  --shadow-lg: 0 40px 80px -32px rgba(14, 3, 201, 0.45);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { overflow-x: clip; }
body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: clip;
  width: 100%;
}
h1, h2, h3, h4, .display {
  font-family: 'Sora', system-ui, sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
}
p { margin: 0; color: var(--ink-2); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* ============================================================
   BUTTONS (shared)
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 52px; padding: 0 26px;
  border-radius: 999px;
  font-family: 'Sora', sans-serif;
  font-weight: 600; font-size: 15px;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 0;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 50%, var(--secondary) 130%);
  color: #fff;
  box-shadow: 0 12px 30px -10px rgba(14, 3, 201, 0.55);
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  background-size: 250% 100%;
  background-position: 200% 0;
  transition: background-position 0.7s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 50px -10px rgba(14, 3, 201, 0.7); }
.btn-primary:hover::after { background-position: -100% 0; }
.btn-primary > * { position: relative; z-index: 1; }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn-sm { height: 42px; padding: 0 18px; font-size: 14px; }

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
  position: relative;
  padding: 96px 0 80px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(900px 600px at 88% 0%, rgba(10, 207, 228, 0.20), transparent 60%),
    radial-gradient(700px 500px at 12% 10%, rgba(14, 3, 201, 0.10), transparent 60%),
    linear-gradient(180deg, #fbfcff 0%, #f3f4ff 100%);
}
.page-hero::before,
.page-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(14, 3, 201, 0.14);
  pointer-events: none;
  z-index: 0;
}
.page-hero::before {
  width: 620px; height: 620px;
  left: 50%; top: -240px;
  margin-left: -310px;
  animation: ringspin 32s linear infinite;
}
.page-hero::after {
  width: 460px; height: 460px;
  left: 50%; top: -160px;
  margin-left: -230px;
  border-color: rgba(10, 207, 228, 0.22);
  animation: ringspin 24s linear infinite reverse;
}
@keyframes ringspin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero .eyebrow {
  display: inline-block;
  font-family: 'Sora'; font-weight: 600;
  font-size: 13px; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  padding: 6px 14px;
  background: rgba(14, 3, 201, 0.08);
  border-radius: 999px;
  margin-bottom: 20px;
}
.page-hero h1 {
  font-size: clamp(44px, 5.4vw, 76px);
  font-weight: 700;
  letter-spacing: -0.035em;
  max-width: 980px; margin: 0 auto;
}
.page-hero h1 .accent {
  background: linear-gradient(110deg, var(--primary) 20%, var(--secondary) 90%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  position: relative; white-space: nowrap;
}
.page-hero h1 .accent::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 8px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 999px; opacity: 0.18;
}
.page-hero p.lead {
  margin: 28px auto 0;
  max-width: 720px;
  font-size: 19px; line-height: 1.6;
  color: var(--muted);
}
.page-hero .quick-stats {
  display: flex; justify-content: center; gap: 56px;
  margin-top: 56px; flex-wrap: wrap;
}
.page-hero .quick-stats .qs {
  text-align: center;
  font-family: 'Sora';
}
.page-hero .quick-stats .qs .n {
  font-weight: 700; font-size: 40px;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text; background-clip: text;
  color: transparent; line-height: 1;
}
.page-hero .quick-stats .qs .l {
  margin-top: 8px; font-family: 'Manrope';
  font-size: 13px; color: var(--muted); font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
}

/* ============================================================
   SECTION HEADERS (shared)
   ============================================================ */
.section { padding: 120px 0; position: relative; }
.section-eyebrow {
  display: inline-block;
  font-family: 'Sora'; font-weight: 600;
  font-size: 13px; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  padding: 6px 14px;
  background: rgba(14, 3, 201, 0.08);
  border-radius: 999px;
  margin-bottom: 20px;
}
.section h2 {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 700;
  max-width: 720px;
}
.section-sub {
  font-size: 18px; color: var(--muted);
  margin-top: 18px; max-width: 620px;
}
.section-head { margin-bottom: 64px; }
.section-head.center { text-align: center; }
.section-head.center h2,
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }

/* ============================================================
   STORY
   ============================================================ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.story-copy h2 { font-size: clamp(32px, 3.4vw, 48px); }
.story-copy p {
  font-size: 17px; line-height: 1.7;
  color: var(--ink-2);
  margin-top: 18px;
}
.story-copy .sig {
  margin-top: 32px;
  display: flex; align-items: center; gap: 14px;
}
.story-copy .sig .av {
  width: 52px; height: 52px; border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  display: grid; place-items: center;
  font-family: 'Sora'; font-weight: 700; font-size: 16px;
}
.story-copy .sig .who .n { font-family: 'Sora'; font-weight: 700; font-size: 15px; }
.story-copy .sig .who .r { font-size: 13px; color: var(--muted); }

.story-art {
  position: relative;
  display: grid; place-items: center;
  min-height: 520px;
}
.story-art .ring-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(closest-side at 50% 50%, rgba(10,207,228,0.25), transparent 70%),
    radial-gradient(closest-side at 30% 60%, rgba(14,3,201,0.18), transparent 70%);
  border-radius: var(--radius-lg);
}
.story-art .phone-static {
  position: relative; z-index: 2;
  width: 260px; height: 540px;
  border-radius: 42px;
  padding: 8px;
  background: linear-gradient(180deg, #14163c, #0a0b22);
  box-shadow: var(--shadow-lg);
  animation: storyFloat 6s ease-in-out infinite;
}
.story-art .phone-static .screen {
  width: 100%; height: 100%;
  border-radius: 34px; overflow: hidden; background: #fff;
}
.story-art .phone-static img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
}
@keyframes storyFloat {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}
.story-art .chip {
  position: absolute;
  background: #fff;
  border-radius: 18px;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(14, 3, 201, 0.06);
  z-index: 3;
  font-weight: 600;
  animation: storyFloat 5s ease-in-out infinite;
}
.story-art .chip.a { top: 60px;  left: 0;     animation-delay: -1s; }
.story-art .chip.b { bottom: 80px; right: 0;  animation-delay: -2.5s; }
.story-art .chip .ico {
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}
.story-art .chip.b .ico { background: linear-gradient(135deg, #18b26b, #4de3a8); }
.story-art .chip .t { font-size: 13px; }
.story-art .chip .s { font-size: 11px; color: var(--muted); font-weight: 500; margin-top: 2px; }

/* ============================================================
   MISSION / VISION (2-up)
   ============================================================ */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.mv {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 44px;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(.2,.9,.3,1.1), box-shadow 0.3s ease;
}
.mv:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.mv .ico {
  width: 56px; height: 56px; border-radius: 16px;
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.mv .ico svg { width: 26px; height: 26px; }
.mv h3 { font-size: 28px; font-weight: 700; line-height: 1.2; }
.mv p { font-size: 16px; line-height: 1.65; margin-top: 14px; }

.mv.mission {
  background: linear-gradient(135deg, var(--primary) 0%, #1f15db 70%, var(--secondary) 160%);
  color: #fff;
}
.mv.mission h3, .mv.mission p { color: #fff; }
.mv.mission p { opacity: 0.88; }
.mv.mission .ico { background: rgba(255,255,255,0.18); color: #fff; border: 1px solid rgba(255,255,255,0.18); }
.mv.mission::before {
  content: '';
  position: absolute; right: -80px; bottom: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,207,228,0.45), transparent 70%);
}

.mv.vision {
  background: #fff;
  border: 1px solid var(--line);
}
.mv.vision .ico {
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
  color: var(--primary);
}

/* ============================================================
   VALUES
   ============================================================ */
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.3s cubic-bezier(.2,.9,.3,1.1), box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative; overflow: hidden;
}
.value::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(380px circle at var(--mx, 50%) var(--my, -10%), rgba(10, 207, 228, 0.18), transparent 50%);
  opacity: 0; transition: opacity 0.35s ease;
  pointer-events: none;
}
.value:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(14,3,201,0.18);
}
.value:hover::before { opacity: 1; }
.value:hover .ico { transform: scale(1.08) rotate(-4deg); }
.value .ico {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  margin-bottom: 22px;
  transition: transform 0.35s cubic-bezier(.2,.9,.3,1.2);
}
.value .ico svg { width: 24px; height: 24px; }
.value h3 { font-size: 19px; font-weight: 600; }
.value p { margin-top: 10px; font-size: 14px; line-height: 1.6; color: var(--muted); }

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline-wrap {
  background: var(--ink);
  color: #fff;
  border-radius: 40px;
  padding: 80px;
  position: relative;
  overflow: hidden;
}
.timeline-wrap::before {
  content: '';
  position: absolute; right: -100px; top: -100px;
  width: 380px; height: 380px;
  background: radial-gradient(closest-side, rgba(10,207,228,0.22), transparent 70%);
}
.timeline-wrap::after {
  content: '';
  position: absolute; left: -120px; bottom: -160px;
  width: 480px; height: 380px;
  background: radial-gradient(closest-side, rgba(14,3,201,0.5), transparent 70%);
}
.timeline-wrap > * { position: relative; z-index: 1; }
.timeline-wrap .eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(10,207,228,0.18);
  color: var(--secondary-2);
  font-family: 'Sora'; font-weight: 600;
  font-size: 13px; letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.timeline-wrap h2 { color: #fff; font-size: clamp(32px, 3.6vw, 48px); max-width: 640px; }
.timeline-wrap p.intro { color: rgba(255,255,255,0.7); margin-top: 16px; max-width: 540px; font-size: 17px; }

.timeline {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 28px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0.04), rgba(10,207,228,0.5) 30%, rgba(74,30,228,0.5) 70%, rgba(255,255,255,0.04));
  z-index: 0;
}
.tl-item { position: relative; z-index: 1; }
.tl-item .dot {
  width: 18px; height: 18px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: 4px solid var(--ink);
  margin-bottom: 24px;
  box-shadow: 0 0 0 4px rgba(10, 207, 228, 0.18);
}
.tl-item .yr {
  font-family: 'Sora'; font-weight: 700; font-size: 32px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--secondary), #fff);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.tl-item h4 {
  margin-top: 8px;
  color: #fff;
  font-family: 'Sora'; font-weight: 600; font-size: 18px;
}
.tl-item p {
  margin-top: 10px;
  color: rgba(255,255,255,0.65);
  font-size: 14px; line-height: 1.55;
}

/* ============================================================
   ROADMAP — "What we're building next"
   ============================================================ */
.roadmap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.roadmap-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(.2,.9,.3,1.1), box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex; flex-direction: column;
}
.roadmap-item::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s cubic-bezier(.2,.9,.3,1.1);
}
.roadmap-item::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 180px; height: 180px;
  background: radial-gradient(closest-side, rgba(10,207,228,0.16), transparent 70%);
  opacity: 0; transition: opacity 0.35s ease;
  pointer-events: none;
}
.roadmap-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(14,3,201,0.18);
}
.roadmap-item:hover::after { transform: scaleX(1); }
.roadmap-item:hover::before { opacity: 1; }
.roadmap-item:hover .ico { transform: scale(1.08) rotate(-4deg); }
.roadmap-item .pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Sora'; font-weight: 600;
  font-size: 11px; letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  align-self: flex-start;
  margin-bottom: 22px;
}
.roadmap-item .pill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor;
}
.roadmap-item .pill.beta { background: rgba(10, 207, 228, 0.14); color: #0792a3; }
.roadmap-item .pill.next { background: rgba(14, 3, 201, 0.10); color: var(--primary); }
.roadmap-item .pill.q4  { background: rgba(255, 122, 0, 0.12); color: #c25500; }
.roadmap-item .pill.exp { background: rgba(193, 30, 211, 0.10); color: #a213b3; }
.roadmap-item .pill.beta .dot { animation: dotPulse 1.6s ease-in-out infinite; }
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
.roadmap-item .ico {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  margin-bottom: 22px;
  transition: transform 0.35s cubic-bezier(.2,.9,.3,1.2);
}
.roadmap-item:nth-child(2) .ico { background: linear-gradient(135deg, var(--secondary), var(--primary)); }
.roadmap-item:nth-child(3) .ico { background: linear-gradient(135deg, #ff7a00, #ffb300); }
.roadmap-item:nth-child(4) .ico { background: linear-gradient(135deg, #c11ed3, var(--primary-2)); }
.roadmap-item .ico svg { width: 24px; height: 24px; }
.roadmap-item h3 { font-size: 19px; font-weight: 600; line-height: 1.25; }
.roadmap-item p { margin-top: 12px; font-size: 14px; line-height: 1.6; color: var(--muted); flex-grow: 1; }
.roadmap-item .meta {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  font-family: 'Sora'; font-weight: 600;
  font-size: 12px; color: var(--ink-2);
  letter-spacing: 0.02em;
  display: flex; align-items: center; gap: 6px;
}
.roadmap-item .meta svg { width: 14px; height: 14px; color: var(--primary); flex-shrink: 0; }

.roadmap-note {
  margin-top: 32px;
  padding: 18px 22px;
  background: var(--bg-2);
  border-radius: var(--radius);
  display: flex; align-items: center; gap: 14px;
  font-size: 14px; color: var(--ink-2);
}
.roadmap-note .ico {
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff; flex-shrink: 0;
}
.roadmap-note .ico svg { width: 16px; height: 16px; }
.roadmap-note strong { font-family: 'Sora'; font-weight: 700; color: var(--ink); }
.roadmap-note a { color: var(--primary); font-weight: 600; }
.roadmap-note a:hover { text-decoration: underline; }

/* ============================================================
   PRESS / BACKED BY
   ============================================================ */
.press-strip {
  padding: 56px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.press-label {
  text-align: center;
  font-size: 13px; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 28px;
}
.press-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  align-items: center;
}
.press-logo {
  font-family: 'Sora'; font-weight: 700;
  font-size: 18px;
  text-align: center;
  color: var(--ink-2);
  opacity: 0.55;
  letter-spacing: -0.01em;
  transition: opacity 0.2s ease, color 0.2s ease, transform 0.2s ease;
  padding: 14px 8px;
  border-radius: var(--radius);
}
.press-logo:hover {
  opacity: 1;
  color: var(--primary);
  transform: translateY(-2px);
}
.press-logo .dotted::before {
  content: '·'; margin: 0 6px; color: var(--secondary); font-size: 22px; line-height: 0;
}
.press-logo em { font-style: italic; font-weight: 600; }

/* ============================================================
   JOIN / CTA (gradient band)
   ============================================================ */
.join {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, #1f15db 50%, var(--secondary) 130%);
  padding: 80px;
  color: #fff;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
}
.join::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(closest-side at 80% 30%, rgba(255,255,255,0.18), transparent 60%),
    radial-gradient(closest-side at 10% 80%, rgba(10,207,228,0.4), transparent 60%);
  pointer-events: none;
}
.join > * { position: relative; z-index: 1; }
.join h2 {
  color: #fff;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  max-width: 580px;
}
.join p {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  margin-top: 16px;
  max-width: 480px;
}
.join .cta-row {
  margin-top: 32px;
  display: flex; gap: 14px; flex-wrap: wrap;
}
.join .btn-white {
  background: #fff;
  color: var(--primary);
}
.join .btn-white:hover { transform: translateY(-2px); box-shadow: 0 22px 50px -10px rgba(0,0,0,0.25); }
.join .btn-outline-w {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.28);
}
.join .btn-outline-w:hover { background: rgba(255,255,255,0.18); }

.join-meta {
  display: grid; gap: 18px;
}
.join-meta .row {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 18px 22px;
  border-radius: 18px;
}
.join-meta .row .ico {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.18);
  color: #fff;
  flex-shrink: 0;
}
.join-meta .row .t { font-family: 'Sora'; font-weight: 600; font-size: 15px; }
.join-meta .row .s { font-size: 12px; opacity: 0.7; margin-top: 2px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-art { min-height: 460px; }
  .mv-grid { grid-template-columns: 1fr; }
  .values { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .timeline::before { display: none; }
  .roadmap { grid-template-columns: repeat(2, 1fr); }
  .press-row { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .join { grid-template-columns: 1fr; padding: 56px; }
  .timeline-wrap { padding: 56px; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .section { padding: 80px 0; }
  .page-hero { padding: 64px 0 56px; }
  .page-hero .quick-stats { gap: 28px; }
  .values { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .roadmap { grid-template-columns: 1fr; }
  .press-row { grid-template-columns: repeat(2, 1fr); }
  .timeline-wrap { padding: 40px 28px; border-radius: 28px; }
  .join { padding: 40px 28px; border-radius: 28px; }
  .page-hero h1 .accent {white-space: wrap;}
.page-hero h1 .accent::after {
  display: none;
}
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}