/* =====================================================
   cocoiru（ココイル）Landing Page
   静かな夜のトーンに寄せたダークテーマ
   ===================================================== */

:root {
  /* base / night */
  --bg:            #0a0b12;
  --bg-2:          #0d0e18;
  --bg-3:          #11131f;
  --surface:       #161829;
  --surface-2:     #1c1e30;
  --border:        rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.12);

  /* text */
  --text:          #eceef7;
  --text-soft:     #b9bcd0;
  --text-muted:    #83869e;
  --text-faint:    #5c5f76;

  /* accents */
  --iris:          #7b7ce8;   /* periwinkle purple (main) */
  --iris-soft:     #9a9bf0;
  --iris-deep:     #5f60d6;
  --coral:         #f0a6ad;   /* heart / warmth */
  --coral-soft:    #f6c2c6;
  --amber:         #f5b04e;   /* logo dot */
  --sky:           #7fb8e8;   /* calm days */

  --radius:        22px;
  --radius-lg:     30px;
  --radius-sm:     14px;
  --maxw:          1140px;

  --shadow-soft:   0 20px 60px -24px rgba(0, 0, 0, 0.7);
  --shadow-glow:   0 0 80px -20px rgba(123, 124, 232, 0.45);

  --ease:          cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont,
               "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.9;
  font-weight: 400;
  letter-spacing: 0.02em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* subtle full-page night gradient + aurora glows */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1000px 600px at 15% -5%, rgba(123, 124, 232, 0.18), transparent 60%),
    radial-gradient(900px 640px at 95% 8%, rgba(240, 166, 173, 0.10), transparent 55%),
    radial-gradient(1200px 800px at 50% 110%, rgba(95, 96, 214, 0.14), transparent 60%),
    linear-gradient(180deg, #0a0b12 0%, #0b0c16 40%, #090a11 100%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- typography helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  font-weight: 500;
  color: var(--iris-soft);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: linear-gradient(90deg, var(--iris), transparent);
}

h1, h2, h3 { font-weight: 700; line-height: 1.5; letter-spacing: 0.01em; }

.section { padding: 118px 0; position: relative; }
.section-head { max-width: 720px; margin: 0 auto 68px; text-align: center; }
.section-head h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  letter-spacing: 0.03em;
}
.section-head p {
  margin-top: 24px;
  color: var(--text-soft);
  font-size: 1.02rem;
}

.sp-br { display: none; }
@media (min-width: 621px) { .sp-br { display: inline; } }

.grad-text {
  background: linear-gradient(120deg, var(--iris-soft) 0%, var(--coral-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* =====================================================
   Header
   ===================================================== */
header.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
header.nav.scrolled {
  background: rgba(10, 11, 18, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex; align-items: center; gap: 11px;
  font-weight: 700; font-size: 1.12rem; letter-spacing: 0.12em;
}
.logo .dot {
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 16px 2px rgba(245, 176, 78, 0.6);
}
.logo .sub {
  font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.04em;
  font-weight: 400; margin-left: 2px;
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 22px; border-radius: 999px;
  font-size: 0.86rem; font-weight: 500;
  background: linear-gradient(120deg, var(--iris) 0%, var(--iris-deep) 100%);
  color: #fff;
  box-shadow: 0 8px 24px -10px rgba(123, 124, 232, 0.8);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -10px rgba(123, 124, 232, 0.95); }

/* =====================================================
   Hero
   ===================================================== */
.hero { padding: 168px 0 90px; position: relative; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 40px;
  align-items: center;
}
.hero-copy { max-width: 560px; }
.hero h1 {
  font-size: clamp(2.15rem, 5.2vw, 3.5rem);
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.hero h1 .line { display: block; }
.hero .lead {
  margin-top: 30px;
  font-size: 1.08rem;
  color: var(--text-soft);
  line-height: 2.05;
}
.hero .lead strong { color: var(--text); font-weight: 500; }

.hero-tags { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  font-size: 0.82rem;
  padding: 7px 15px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.02);
}

/* signup form */
.signup {
  margin-top: 40px;
  max-width: 500px;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 26px 16px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(6px);
}
.signup .label {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.9rem; color: var(--text-soft); margin-bottom: 16px;
}
.signup .label .pin { font-size: 1rem; }
.signup-row { display: flex; gap: 10px; }
/* Tally embed: tighten the vertical rhythm around the iframe.
   The iframe is cross-origin (tally.so), so its own top whitespace
   (the hidden title block) can't be styled from here — crop it with
   a negative top margin instead. */
.signup iframe { display: block; margin: 0; margin-top: -22px; }
.signup .label:has(+ iframe) { margin-bottom: 4px; }
.signup iframe + .note { margin-top: 4px; }
.signup input[type="email"] {
  flex: 1;
  min-width: 0;
  background: rgba(9, 10, 18, 0.7);
  border: 1px solid var(--border-strong);
  border-radius: 13px;
  padding: 15px 18px;
  color: var(--text);
  font-size: 0.98rem;
  font-family: inherit;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.signup input[type="email"]::placeholder { color: var(--text-faint); }
.signup input[type="email"]:focus {
  outline: none;
  border-color: var(--iris);
  box-shadow: 0 0 0 3px rgba(123, 124, 232, 0.18);
}
.btn-primary {
  flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 26px;
  border: none;
  border-radius: 13px;
  font-family: inherit;
  font-size: 0.98rem; font-weight: 700; letter-spacing: 0.04em;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(120deg, var(--iris) 0%, var(--iris-deep) 100%);
  box-shadow: 0 12px 30px -12px rgba(123, 124, 232, 0.9);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), filter 0.25s;
}
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.06); box-shadow: 0 16px 38px -12px rgba(123, 124, 232, 1); }
.btn-primary:active { transform: translateY(0); }
.btn-primary .arrow { transition: transform 0.25s var(--ease); }
.btn-primary:hover .arrow { transform: translateX(3px); }

.signup .note { margin-top: 15px; font-size: 0.78rem; color: var(--text-faint); line-height: 1.7; }
.signup .note::before { content: "🔒 "; }

/* success state */
.signup.done .signup-row, .signup.done .note, .signup.done .label { display: none; }
.signup-success { display: none; text-align: center; padding: 8px 0; }
.signup.done .signup-success { display: block; }
.signup-success .check {
  width: 54px; height: 54px; margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--iris), var(--iris-deep));
  display: grid; place-items: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-glow);
}
.signup-success h4 { font-size: 1.1rem; margin-bottom: 8px; }
.signup-success p { color: var(--text-soft); font-size: 0.9rem; }

/* hero phone */
.hero-visual { position: relative; display: flex; justify-content: center; }
.phone {
  position: relative;
  width: 286px;
  border-radius: 44px;
  padding: 11px;
  background: linear-gradient(160deg, #23253a, #111220);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    0 40px 90px -30px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(0,0,0,0.4),
    var(--shadow-glow);
}
.phone::after {
  content: "";
  position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 108px; height: 26px; border-radius: 999px;
  background: #05060b;
  z-index: 3;
}
.phone img { border-radius: 34px; width: 100%; }
.hero-visual .phone { animation: floaty 7s ease-in-out infinite; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
/* floating whisper bubble */
.whisper {
  position: absolute;
  left: -14px; bottom: 84px;
  max-width: 208px;
  background: rgba(24, 26, 42, 0.92);
  border: 1px solid var(--border-strong);
  border-radius: 18px 18px 18px 6px;
  padding: 14px 16px;
  font-size: 0.85rem; line-height: 1.7;
  color: var(--text-soft);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  animation: floaty 7s ease-in-out infinite;
  animation-delay: 0.6s;
}
.whisper .who { color: var(--iris-soft); font-weight: 500; font-size: 0.76rem; display: block; margin-bottom: 3px; }

/* =====================================================
   Marquee-ish stats strip
   ===================================================== */
.trust {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 34px 0;
  background: rgba(255,255,255,0.012);
}
.trust-inner {
  display: flex; flex-wrap: wrap; gap: 20px 48px;
  align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.92rem;
}
.trust-inner span { display: inline-flex; align-items: center; gap: 10px; }
.trust-inner b { color: var(--text); font-weight: 700; }
.trust-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--iris); }

/* =====================================================
   Problem / empathy
   ===================================================== */
.problem { text-align: center; }
.problem .big-quote {
  font-size: clamp(1.5rem, 3.6vw, 2.3rem);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.03em;
  max-width: 860px; margin: 0 auto;
}
.problem .big-quote .hl { color: var(--coral-soft); }
.problem .sub {
  margin-top: 34px;
  color: var(--text-soft);
  font-size: 1.04rem;
  max-width: 680px; margin-left: auto; margin-right: auto;
}

.moments {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}
.moment {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.012));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform 0.35s var(--ease), border-color 0.35s;
}
.moment:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.moment .icon { font-size: 1.5rem; margin-bottom: 16px; }
.moment p { color: var(--text-soft); font-size: 0.96rem; line-height: 1.95; }
.moment p .q { color: var(--text); font-weight: 500; }

/* =====================================================
   Data / numbers
   ===================================================== */
.data { background: rgba(255,255,255,0.012); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.stat {
  position: relative;
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(123,124,232,0.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.012));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  overflow: hidden;
}
.stat .num {
  font-size: clamp(2.6rem, 6vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  background: linear-gradient(120deg, var(--iris-soft), var(--coral-soft));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: 0;
}
.stat .num .unit { font-size: 1.4rem; -webkit-text-fill-color: var(--text-soft); }
.stat .cap { margin-top: 14px; color: var(--text-soft); font-size: 0.96rem; line-height: 1.8; }
.stat .src { margin-top: 16px; color: var(--text-faint); font-size: 0.74rem; }
.data-foot {
  margin-top: 44px; text-align: center;
  color: var(--text-soft); font-size: 1.06rem; line-height: 2;
  max-width: 660px; margin-left: auto; margin-right: auto;
}
.data-foot .hl { color: var(--iris-soft); font-weight: 500; }

/* =====================================================
   Features
   ===================================================== */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 130px;
}
.feature:last-child { margin-bottom: 0; }
.feature.reverse .feature-visual { order: -1; }
.feature-body .kicker {
  display: inline-block;
  font-size: 0.76rem; letter-spacing: 0.16em; font-weight: 500;
  color: var(--iris-soft);
  padding: 6px 13px; border-radius: 999px;
  border: 1px solid var(--border-strong);
  margin-bottom: 22px;
}
.feature-body h3 { font-size: clamp(1.4rem, 2.8vw, 1.9rem); line-height: 1.55; }
.feature-body p {
  margin-top: 20px; color: var(--text-soft); font-size: 1rem; line-height: 2.05;
}
.feature-body .example {
  margin-top: 24px;
  border-left: 2px solid var(--iris);
  padding: 4px 0 4px 18px;
  color: var(--text-soft);
  font-size: 0.95rem;
  font-style: normal;
}
.feature-body .example .who { color: var(--iris-soft); font-size: 0.8rem; display: block; margin-bottom: 4px; }

.feature-visual { display: flex; justify-content: center; position: relative; }
.feature-visual .phone { width: 262px; }
.feature-visual .phone img { border-radius: 32px; }
.feature-glow {
  position: absolute; inset: 10% 18%;
  background: radial-gradient(circle, rgba(123,124,232,0.3), transparent 70%);
  filter: blur(50px); z-index: -1;
}

/* =====================================================
   Same-feeling highlight (counter)
   ===================================================== */
.same {
  text-align: center;
  background:
    radial-gradient(700px 400px at 50% 0%, rgba(240,166,173,0.12), transparent 60%),
    rgba(255,255,255,0.012);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.same .heart {
  width: 64px; height: 64px; margin: 0 auto 26px;
  border-radius: 20px;
  background: linear-gradient(150deg, #f6c2c6, #e8878f);
  display: grid; place-items: center; font-size: 1.7rem;
  box-shadow: 0 16px 40px -12px rgba(240,166,173,0.6);
}
.same h2 { font-size: clamp(1.5rem, 3.4vw, 2.2rem); }
.counter-line {
  margin-top: 40px;
  font-size: clamp(1.1rem, 2.6vw, 1.5rem);
  color: var(--text-soft);
  letter-spacing: 0.04em;
}
.counter {
  font-size: clamp(2.8rem, 8vw, 4.6rem);
  font-weight: 700;
  background: linear-gradient(120deg, var(--coral-soft), var(--iris-soft));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: 0;
  display: inline-block;
  min-width: 3ch;
  font-variant-numeric: tabular-nums;
}
.same .after { margin-top: 34px; color: var(--text-soft); font-size: 1.02rem; line-height: 2; max-width: 620px; margin-left:auto; margin-right:auto; }

/* =====================================================
   Notes (note 記事)
   ===================================================== */
.notes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.note-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.012));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.35s var(--ease), border-color 0.35s;
}
.note-card:hover { transform: translateY(-6px); border-color: var(--border-strong); }

.note-thumb {
  aspect-ratio: 1200 / 630;
  background: rgba(255,255,255,0.04);   /* 読み込み前・失敗時のプレースホルダ */
  overflow: hidden;
}
.note-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.note-card:hover .note-thumb img { transform: scale(1.04); }

.note-body { display: flex; flex-direction: column; flex: 1; padding: 24px 24px 26px; }
.note-date { color: var(--text-faint); font-size: 0.76rem; letter-spacing: 0.08em; }
.note-body h3 {
  margin-top: 10px;
  font-size: 1rem; font-weight: 500; line-height: 1.7; letter-spacing: 0.02em;
  display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.note-body p {
  margin-top: 12px;
  color: var(--text-muted); font-size: 0.86rem; line-height: 1.85;
  display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.note-more {
  margin-top: auto; padding-top: 18px;
  color: var(--iris-soft); font-size: 0.82rem;
  display: inline-flex; align-items: center; gap: 6px;
}
.note-more .arrow { transition: transform 0.25s var(--ease); }
.note-card:hover .note-more .arrow { transform: translateX(3px); }

/* セクション末尾の note 導線 */
.notes-cta { margin-top: 44px; text-align: center; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px;
  border: 1px solid var(--border-strong);
  border-radius: 13px;
  color: var(--text-soft); font-size: 0.92rem; font-weight: 500;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.btn-outline:hover { color: var(--text); border-color: var(--iris); background: rgba(123,124,232,0.08); }
.btn-outline .arrow { transition: transform 0.25s var(--ease); }
.btn-outline:hover .arrow { transform: translateX(3px); }

/* =====================================================
   Philosophy
   ===================================================== */
.philosophy { text-align: center; }
.philosophy-card {
  max-width: 800px; margin: 0 auto;
  background:
    radial-gradient(600px 300px at 50% -10%, rgba(123,124,232,0.14), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.012));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 68px 48px;
  box-shadow: var(--shadow-soft);
}
.philosophy-card .mark { font-size: 2rem; margin-bottom: 20px; opacity: 0.9; }
.philosophy-card h2 {
  font-size: clamp(1.5rem, 3.4vw, 2.15rem);
  line-height: 1.7;
}
.philosophy-card p {
  margin-top: 28px; color: var(--text-soft); font-size: 1.04rem; line-height: 2.1;
}
.philosophy-card p .hl { color: var(--iris-soft); }

/* =====================================================
   Final CTA
   ===================================================== */
.final { position: relative; padding: 130px 0; }
.final-card {
  max-width: 720px; margin: 0 auto;
  text-align: center;
  background:
    radial-gradient(700px 400px at 50% 0%, rgba(240,166,173,0.12), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 64px 44px;
  box-shadow: var(--shadow-soft), var(--shadow-glow);
}
.final-card .eyebrow { justify-content: center; }
.final-card .eyebrow::before { display: none; }
.final-card h2 { font-size: clamp(1.6rem, 3.6vw, 2.3rem); line-height: 1.6; }
.final-card .lead { margin-top: 22px; color: var(--text-soft); font-size: 1.02rem; line-height: 2; }
.final-card .signup { max-width: 520px; margin: 36px auto 0; text-align: left; }
.final-card .signup-row { flex-direction: column; }
.final-card .btn-primary { justify-content: center; }

/* =====================================================
   Footer
   ===================================================== */
footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 48px;
  background: rgba(0,0,0,0.25);
}
.footer-inner {
  display: flex; flex-wrap: wrap; gap: 26px;
  align-items: center; justify-content: space-between;
}
.footer-inner .logo { font-size: 1rem; }
.footer-copy { color: var(--text-muted); font-size: 0.86rem; line-height: 1.9; max-width: 460px; }
.footer-meta { color: var(--text-faint); font-size: 0.76rem; text-align: right; line-height: 1.9; }
.footer-links { display: flex; gap: 22px; margin-top: 6px; }
.footer-links a { color: var(--text-muted); font-size: 0.82rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }

/* =====================================================
   Reveal animation
   ===================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* =====================================================
   Responsive
   ===================================================== */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-copy { max-width: 620px; margin: 0 auto; text-align: center; }
  .hero-tags { justify-content: center; }
  .signup { text-align: left; }
  .feature { grid-template-columns: 1fr; gap: 40px; }
  .feature.reverse .feature-visual { order: 0; }
  .feature-body { text-align: center; }
  .feature-body .example { display: inline-block; text-align: left; }
  .moments { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .notes-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .section { padding: 88px 0; }
  .notes-grid { grid-template-columns: 1fr; gap: 18px; }
  .hero { padding: 130px 0 70px; }
  .wrap { padding: 0 20px; }
  .signup-row { flex-direction: column; }
  .btn-primary { justify-content: center; }
  .whisper { display: none; }
  .nav-cta { padding: 9px 16px; font-size: 0.8rem; }
  .philosophy-card { padding: 48px 26px; }
  .final-card { padding: 48px 24px; }
  .trust-inner { gap: 14px 26px; font-size: 0.84rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
