/* Somnest landing — dark "night" system. Class vocabulary: sn-*. */
:root {
  --bg: #0e1230;            /* midnight indigo */
  --bg-2: #0a0d24;          /* deeper night (hero/cta) */
  --panel: #171d40;         /* raised surface */
  --panel-2: #1c2350;       /* nested surface */
  --fg: #eef1ff;            /* moonlight */
  --muted: #9aa3c7;         /* dim starlight */
  --faint: #6b74a0;         /* faintest text */
  --accent: #a9b4ff;        /* periwinkle */
  --accent-2: #c3b8ff;      /* lavender */
  --dawn: #e9c46a;          /* warm amber — alarm/sunrise */
  --line: #2a3163;          /* border */
  --line-soft: #20264c;     /* subtle border */
  --bezel: #05060f;         /* device bezel */
  --warn: #ffb454;
  --ink: #0d1130;           /* text on light accents */
  --glow: 0 0 0 1px var(--line), 0 24px 60px rgba(0,0,0,.5);
  --soft: 0 10px 30px rgba(0,0,0,.35);
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 {
  font-family: "Spectral", Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.12;
}
a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }

.sn-wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.sn-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }

/* starfield layer (reused in hero + cta) */
.sn-stars { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.sn-stars::before {
  content: ""; position: absolute; inset: -10%;
  background-image:
    radial-gradient(1.6px 1.6px at 12% 22%, rgba(255,255,255,.65), transparent),
    radial-gradient(1.4px 1.4px at 72% 14%, rgba(255,255,255,.5), transparent),
    radial-gradient(1px 1px at 38% 9%, rgba(255,255,255,.5), transparent),
    radial-gradient(1.2px 1.2px at 88% 38%, rgba(255,255,255,.4), transparent),
    radial-gradient(1px 1px at 24% 54%, rgba(255,255,255,.35), transparent),
    radial-gradient(1.3px 1.3px at 60% 60%, rgba(255,255,255,.4), transparent),
    radial-gradient(1px 1px at 92% 72%, rgba(255,255,255,.3), transparent),
    radial-gradient(1px 1px at 46% 80%, rgba(255,255,255,.3), transparent);
}
.sn-stars::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 50% -8%, rgba(120,96,220,.28), transparent 70%),
    radial-gradient(40% 30% at 84% 8%, rgba(169,180,255,.20), transparent 70%),
    radial-gradient(50% 40% at 10% 20%, rgba(233,196,106,.08), transparent 70%);
}

/* buttons */
.sn-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 600; font-size: 1rem; color: var(--ink);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 34px rgba(169,180,255,.3);
}
.sn-btn:hover { text-decoration: none; filter: brightness(1.06); }
.sn-btn--ghost {
  background: transparent; color: var(--accent-2);
  border: 1px solid var(--line); box-shadow: none;
}
.sn-btn--ghost:hover { background: var(--panel); }
.sn-btn--get::before { content: "🌙"; }

/* header */
.sn-top {
  position: sticky; top: 0; z-index: 30;
  background: rgba(10,13,36,.72); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.sn-nav { display: flex; align-items: center; justify-content: space-between; padding: 13px 24px; max-width: 1120px; margin: 0 auto; }
.sn-brand { display: flex; align-items: center; gap: 11px; font-family: "Spectral", Georgia, serif; font-weight: 600; font-size: 1.16rem; letter-spacing: -0.01em; }
.sn-brand .sn-moon {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  background: radial-gradient(circle at 35% 30%, #2f3a86, #141a3d);
  border: 1px solid var(--line); box-shadow: inset 0 0 12px rgba(169,180,255,.25);
}
.sn-tag--get {
  font-size: .86rem; font-weight: 600; color: var(--accent-2);
  padding: 7px 15px; border-radius: 999px;
  background: rgba(169,180,255,.1); border: 1px solid var(--line);
  transition: background .15s ease, border-color .15s ease;
}
.sn-tag--get:hover { text-decoration: none; background: rgba(169,180,255,.18); border-color: var(--accent-2); }

/* eyebrow + lede */
.sn-eyebrow {
  display: inline-block; font-size: .74rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 14px;
}
.sn-lede { color: var(--muted); font-size: 1.06rem; max-width: 58ch; }

/* section rhythm */
.sn-sec { padding: 74px 0; }
.sn-sec--tight { padding: 48px 0; }
.sn-center { text-align: center; }
.sn-center .sn-lede { margin-inline: auto; }
h2.sn-h { font-size: 2.3rem; margin: 0 0 14px; }
.sn-kicker { color: var(--accent); font-weight: 600; }

/* ============ HERO (centered, night sky) ============ */
.sn-hero { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--bg-2), var(--bg)); padding: 92px 0 72px; text-align: center; }
.sn-hero .sn-wrap { position: relative; z-index: 1; }
.sn-hero h1 { font-size: 3.7rem; margin: 0 auto 18px; max-width: 16ch; }
.sn-hero h1 .sn-em { color: var(--accent); font-style: italic; }
.sn-hero .sn-lede { font-size: 1.24rem; margin: 0 auto 30px; max-width: 46ch; }
.sn-cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; align-items: center; }
.sn-subnote { color: var(--faint); font-size: .9rem; margin-top: 16px; }
.sn-hero-device { display: flex; justify-content: center; margin-top: 52px; position: relative; z-index: 1; }
.sn-hero-device .sn-device::after {
  content: ""; position: absolute; inset: -40px -30px -60px; z-index: -1;
  background: radial-gradient(50% 45% at 50% 40%, rgba(169,180,255,.22), transparent 72%);
}

/* ============ TRUST STRIP ============ */
.sn-trust { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: rgba(255,255,255,.015); }
.sn-trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 30px; padding: 22px 24px; max-width: 1120px; margin: 0 auto; }
.sn-badge { display: inline-flex; align-items: center; gap: 9px; color: var(--muted); font-size: .95rem; font-weight: 500; }
.sn-badge b { color: var(--fg); font-weight: 600; }
.sn-badge .sn-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }

/* ============ ZIGZAG FEATURE ROWS ============ */
.sn-loop { display: flex; flex-direction: column; gap: 44px; }
.sn-row { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.sn-row:nth-child(even) .sn-row-art { order: -1; }
.sn-row-text h2 { font-size: 2.1rem; margin: 0 0 12px; }
.sn-row-text p { color: var(--muted); margin: 0 0 18px; max-width: 46ch; }
.sn-mini { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.sn-mini li { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); font-size: .96rem; }
.sn-mini li::before { content: "◆"; color: var(--accent); font-size: .7rem; margin-top: .35em; }
.sn-row-art { display: flex; justify-content: center; }

/* ============ DEVICE + MOCK SCREENS ============ */
.sn-device { width: 288px; background: var(--bezel); border-radius: 46px; padding: 12px; box-shadow: var(--glow); flex: 0 0 auto; position: relative; }
.sn-screen { position: relative; background: linear-gradient(180deg, #10163a, #0b1030); border-radius: 35px; overflow: hidden; aspect-ratio: 9 / 19.5; display: flex; flex-direction: column; }
.sn-scr { display: flex; flex-direction: column; height: 100%; padding: 0 14px 16px; overflow: hidden; }
.sn-scr-top { display: flex; justify-content: space-between; align-items: center; padding: 13px 8px 8px; font-size: .7rem; font-weight: 600; color: var(--muted); }
.sn-scr-h { font-family: "Spectral", Georgia, serif; font-weight: 600; font-size: 1.3rem; margin: 4px 4px 2px; }
.sn-scr-sub { font-size: .76rem; color: var(--muted); margin: 0 4px 12px; }
.sn-scr-sub.c { text-align: center; }
.sn-scr-label { font-size: .66rem; text-transform: uppercase; letter-spacing: .07em; color: var(--faint); font-weight: 700; margin: 4px 4px 8px; }
.sn-scr-card { background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 12px 13px; box-shadow: var(--soft); margin-bottom: 10px; }

.sn-sleepline { display: flex; align-items: center; gap: 8px; }
.sn-slot { display: flex; flex-direction: column; align-items: center; flex: 1; }
.sn-slot .i { font-size: 17px; }
.sn-slot .t { font-weight: 600; font-size: .92rem; margin-top: 3px; }
.sn-slot .l { font-size: .68rem; color: var(--muted); }
.sn-arrow { color: var(--accent); }
.sn-dur { margin-left: 4px; padding: 5px 10px; border-radius: 999px; flex: 0 0 auto; font-size: .74rem; font-weight: 700; color: var(--accent); background: rgba(169,180,255,.12); border: 1px solid var(--line); }

.sn-rate { display: flex; align-items: baseline; gap: 6px; margin-top: 4px; }
.sn-rate .n { font-family: "Spectral", Georgia, serif; font-size: 1.9rem; font-weight: 600; }
.sn-rate .d { font-size: .9rem; color: var(--muted); }
.sn-rate .dots { display: flex; gap: 4px; margin-left: auto; }
.sn-rate .dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--line); }
.sn-rate .dots i.on { background: linear-gradient(135deg, var(--accent), var(--accent-2)); }

.sn-facts { display: flex; flex-wrap: wrap; gap: 6px; }
.sn-fact { font-size: .7rem; padding: 4px 9px; border-radius: 999px; background: var(--panel-2); color: var(--muted); border: 1px solid var(--line); }
.sn-fact.on { color: var(--accent-2); border-color: rgba(169,180,255,.45); background: rgba(169,180,255,.12); }

.sn-photo { height: 116px; border-radius: 14px; margin-bottom: 12px; display: flex; align-items: flex-end; font-size: 30px; padding: 10px; background: radial-gradient(60% 80% at 80% 20%, rgba(233,196,106,.3), transparent 70%), linear-gradient(160deg, #2a2f5e, #171b3d); border: 1px solid var(--line); }
.sn-item { display: flex; align-items: center; gap: 10px; }
.sn-item > div { flex: 1; min-width: 0; }
.sn-item b { display: block; font-size: .9rem; }
.sn-item .d { display: block; font-size: .72rem; color: var(--muted); }
.sn-item .ic { width: 34px; height: 34px; border-radius: 10px; flex: 0 0 auto; display: flex; align-items: center; justify-content: center; font-size: 16px; background: rgba(169,180,255,.14); }
.sn-sev { font-size: .66rem; font-weight: 700; padding: 3px 8px; border-radius: 999px; flex: 0 0 auto; color: var(--warn); background: rgba(255,180,84,.14); border: 1px solid rgba(255,180,84,.35); }
.sn-mbuy { flex: 0 0 auto; font-size: .7rem; font-weight: 700; color: var(--ink); padding: 5px 10px; border-radius: 9px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); }

.sn-clock { font-family: "Spectral", Georgia, serif; font-size: 3.1rem; font-weight: 600; text-align: center; margin: 16px 0 2px; letter-spacing: -.02em; }
.sn-clock .ap { font-size: 1.1rem; color: var(--muted); margin-left: 6px; }
.sn-wave { display: flex; align-items: flex-end; gap: 4px; height: 44px; margin-top: 10px; }
.sn-wave i { flex: 1; border-radius: 4px 4px 2px 2px; background: linear-gradient(180deg, var(--dawn), rgba(233,196,106,.35)); }
.sn-wave i:nth-child(1){height:22%}.sn-wave i:nth-child(2){height:31%}.sn-wave i:nth-child(3){height:40%}.sn-wave i:nth-child(4){height:50%}.sn-wave i:nth-child(5){height:61%}.sn-wave i:nth-child(6){height:73%}.sn-wave i:nth-child(7){height:86%}.sn-wave i:nth-child(8){height:100%}
.sn-toggle-row { display: flex; align-items: center; justify-content: space-between; font-size: .9rem; font-weight: 600; }
.sn-switch { width: 40px; height: 23px; border-radius: 999px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); position: relative; flex: 0 0 auto; }
.sn-switch::after { content: ""; position: absolute; top: 2px; right: 2px; width: 19px; height: 19px; border-radius: 50%; background: #fff; }

/* ============ REAL SCREENSHOT GALLERY ============ */
.sn-gallery { display: flex; gap: 22px; overflow-x: auto; padding: 8px 4px 26px; scroll-snap-type: x mandatory; }
.sn-shot { flex: 0 0 auto; scroll-snap-align: center; margin: 0; text-align: center; }
.sn-shot-frame { width: 250px; background: var(--bezel); border-radius: 42px; padding: 11px; box-shadow: var(--glow); }
.sn-shot-frame img { display: block; width: 100%; height: auto; border-radius: 32px; }
.sn-shot figcaption { margin-top: 15px; color: var(--muted); font-size: .92rem; }
@media (min-width: 1140px) { .sn-gallery { justify-content: center; overflow-x: visible; } }

/* ============ BENTO ============ */
.sn-bento { display: grid; grid-template-columns: 1.5fr 1fr 1fr; grid-auto-rows: minmax(150px, auto); gap: 16px; }
.sn-tile { background: var(--panel); border: 1px solid var(--line); border-radius: 22px; padding: 24px; box-shadow: var(--soft); position: relative; overflow: hidden; }
.sn-tile h3 { margin: 0 0 6px; font-size: 1.16rem; color: var(--accent-2); }
.sn-tile p { margin: 0; color: var(--muted); font-size: .95rem; }
.sn-tile .sn-ic { width: 46px; height: 46px; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 22px; background: linear-gradient(135deg, #232a5e, #2f3a86); margin-bottom: 14px; }
.sn-tile--a { grid-column: 1; grid-row: span 2; }
.sn-tile--b { grid-column: 2 / span 2; }
.sn-tile--c { grid-column: 2; }
.sn-tile--d { grid-column: 3; }
.sn-chart { display: flex; align-items: flex-end; gap: 7px; height: 120px; margin-top: 18px; }
.sn-chart .b { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.sn-chart .b i { width: 100%; border-radius: 6px 6px 3px 3px; background: linear-gradient(180deg, var(--accent), rgba(169,180,255,.28)); }
.sn-chart .b span { font-size: .64rem; color: var(--faint); }
.sn-chart .b:nth-child(1) i{height:58%}.sn-chart .b:nth-child(2) i{height:72%}.sn-chart .b:nth-child(3) i{height:53%}.sn-chart .b:nth-child(4) i{height:80%}.sn-chart .b:nth-child(5) i{height:64%}.sn-chart .b:nth-child(6) i{height:92%}.sn-chart .b:nth-child(7) i{height:77%}

/* ============ MANIFESTO ============ */
.sn-manifesto { position: relative; overflow: hidden; border-radius: 30px; padding: 56px 44px; background: linear-gradient(140deg, #131a44, #0c1030); border: 1px solid var(--line); }
.sn-manifesto .sn-wrap-in { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; text-align: center; }
.sn-manifesto h2 { font-size: 2.5rem; margin: 0 0 14px; }
.sn-manifesto .sn-lede { margin: 0 auto 30px; }
.sn-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 10px; }
.sn-pillar { text-align: left; padding: 20px; border-radius: 16px; background: rgba(255,255,255,.03); border: 1px solid var(--line-soft); }
.sn-pillar .sn-ic { font-size: 24px; margin-bottom: 8px; }
.sn-pillar b { display: block; margin-bottom: 4px; }
.sn-pillar span { color: var(--muted); font-size: .92rem; }

/* ============ TIMELINE (how it works) ============ */
.sn-timeline { position: relative; max-width: 720px; margin: 0 auto; padding-left: 12px; }
.sn-timeline::before { content: ""; position: absolute; left: 27px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(180deg, var(--accent), rgba(169,180,255,.15)); }
.sn-step { position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 18px; padding: 14px 0 26px; }
.sn-step:last-child { padding-bottom: 0; }
.sn-step .sn-num { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: "Spectral", Georgia, serif; font-weight: 600; font-size: 1.1rem; color: var(--ink); background: linear-gradient(135deg, var(--accent), var(--accent-2)); box-shadow: 0 0 0 6px var(--bg), 0 8px 20px rgba(169,180,255,.3); z-index: 1; }
.sn-step h3 { margin: 6px 0 5px; font-size: 1.18rem; }
.sn-step p { margin: 0; color: var(--muted); font-size: .97rem; }

/* ============ FINDINGS → FIXES (horizontal scroll) ============ */
.sn-finds { display: flex; gap: 20px; overflow-x: auto; padding: 6px 4px 22px; scroll-snap-type: x mandatory; }
.sn-find { flex: 0 0 340px; scroll-snap-align: start; background: var(--panel); border: 1px solid var(--line); border-radius: 22px; padding: 24px; box-shadow: var(--soft); }
.sn-find-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.sn-find-head .sn-ic { width: 46px; height: 46px; border-radius: 13px; flex: 0 0 auto; display: flex; align-items: center; justify-content: center; font-size: 22px; background: linear-gradient(135deg, #232a5e, #2f3a86); }
.sn-find-head h3 { margin: 0; font-size: 1.12rem; }
.sn-find-head .sn-src { font-size: .78rem; color: var(--faint); }
.sn-cat { margin-left: auto; font-size: .74rem; font-weight: 600; color: var(--dawn); padding: 5px 11px; border-radius: 999px; background: rgba(233,196,106,.13); border: 1px solid rgba(233,196,106,.32); white-space: nowrap; }
.sn-fixes { list-style: none; margin: 0; padding: 0; }
.sn-fix { display: flex; align-items: center; gap: 11px; padding: 12px 0; border-top: 1px solid var(--line-soft); }
.sn-fix:first-child { border-top: none; padding-top: 2px; }
.sn-fix .g { width: 34px; height: 34px; border-radius: 10px; flex: 0 0 auto; display: flex; align-items: center; justify-content: center; font-size: 16px; background: rgba(169,180,255,.14); }
.sn-fix .m { flex: 1; min-width: 0; }
.sn-fix .m b { display: block; font-weight: 600; font-size: .95rem; }
.sn-fix .m span { display: block; font-size: .82rem; color: var(--muted); }
.sn-search { flex: 0 0 auto; font-size: .8rem; font-weight: 600; color: var(--accent-2); padding: 7px 12px; border-radius: 999px; border: 1px solid var(--line); }
.sn-search:hover { text-decoration: none; background: var(--panel-2); }

/* ============ AFFILIATE + LEGAL NOTE ============ */
.sn-mt { margin-top: 40px; }
.sn-affil { background: var(--panel); border: 1px solid var(--line); border-radius: 20px; padding: 24px; color: var(--muted); margin-top: 22px; }
.sn-affil strong { color: var(--fg); }
.sn-note { color: var(--faint); font-size: .86rem; text-align: center; max-width: 74ch; margin: 26px auto 0; }

/* ============ FAQ ============ */
.sn-faq { max-width: 780px; margin: 0 auto; display: grid; gap: 12px; }
.sn-q { background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 4px 20px; }
.sn-q summary { cursor: pointer; list-style: none; padding: 16px 0; font-weight: 600; font-size: 1.03rem; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.sn-q summary::-webkit-details-marker { display: none; }
.sn-q summary::after { content: "+"; color: var(--accent); font-size: 1.4rem; font-weight: 400; line-height: 1; flex: 0 0 auto; }
.sn-q[open] summary::after { content: "–"; }
.sn-q p { margin: 0 0 18px; color: var(--muted); font-size: .96rem; }

/* ============ CTA ============ */
.sn-cta { position: relative; overflow: hidden; border-radius: 30px; padding: 64px 44px; text-align: center; background: linear-gradient(180deg, #0c1030, #131a44); border: 1px solid var(--line); }
.sn-cta .sn-wrap-in { position: relative; z-index: 1; }
.sn-cta h2 { font-size: 2.5rem; margin: 0 0 10px; }
.sn-cta p { color: var(--muted); margin: 0 0 26px; }

/* ============ FOOTER ============ */
.sn-foot { border-top: 1px solid var(--line-soft); padding: 40px 0 30px; color: var(--faint); font-size: .9rem; }
.sn-foot-grid { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 20px; max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.sn-foot-brand { display: flex; align-items: center; gap: 10px; color: var(--fg); font-family: "Spectral", Georgia, serif; font-weight: 600; }
.sn-foot-brand .sn-moon { width: 30px; height: 30px; font-size: 15px; }
.sn-foot nav a { color: var(--muted); margin-left: 20px; }
.sn-foot-note { flex-basis: 100%; color: var(--faint); font-size: .82rem; border-top: 1px solid var(--line-soft); padding-top: 18px; margin-top: 4px; }

/* ============ legal pages ============ */
.sn-doc { max-width: 760px; margin: 0 auto; padding: 30px 22px 64px; }
.sn-doc h1 { font-size: 2.1rem; }
.sn-doc h2 { font-size: 1.28rem; margin-top: 1.7em; color: var(--accent-2); }
.sn-doc .sn-meta { color: var(--muted); font-size: .9rem; }
.sn-doc p { color: var(--fg); }

/* ============ responsive ============ */
@media (max-width: 940px) {
  .sn-row { grid-template-columns: 1fr; gap: 28px; }
  .sn-row:nth-child(even) .sn-row-art { order: 0; }
  .sn-bento { grid-template-columns: 1fr 1fr; }
  .sn-tile--a { grid-column: 1 / span 2; grid-row: auto; }
  .sn-tile--b { grid-column: 1 / span 2; }
  .sn-tile--c { grid-column: 1; }
  .sn-tile--d { grid-column: 2; }
  .sn-pillars { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .sn-hero h1 { font-size: 2.6rem; }
  .sn-hero .sn-lede { font-size: 1.1rem; }
  h2.sn-h, .sn-manifesto h2, .sn-cta h2 { font-size: 1.9rem; }
  .sn-bento { grid-template-columns: 1fr; }
  .sn-tile--a, .sn-tile--b, .sn-tile--c, .sn-tile--d { grid-column: 1; }
  .sn-manifesto, .sn-cta { padding: 40px 22px; }
  .sn-search { width: 100%; text-align: center; margin-top: 6px; }
  .sn-fix { flex-wrap: wrap; }
}
