/* One stylesheet, no scripts, nothing third-party. Fonts are served from this
   origin — the Fontshare licence permits self-hosting but forbids converting or
   subsetting them, so the .ttf files ship as they were downloaded. A site for an
   app with no network code should not itself phone home. */

@font-face { font-family: Satoshi; src: url("fonts/Satoshi-Regular.ttf") format("truetype"); font-weight: 400; font-display: swap; }
@font-face { font-family: Satoshi; src: url("fonts/Satoshi-Bold.ttf") format("truetype"); font-weight: 700; font-display: swap; }
@font-face { font-family: Satoshi; src: url("fonts/Satoshi-Black.ttf") format("truetype"); font-weight: 900; font-display: swap; }
@font-face { font-family: Zodiak; src: url("fonts/Zodiak-Regular.ttf") format("truetype"); font-weight: 400; font-display: swap; }

:root {
  --ground: #100f0d; --surface: #171613; --hair: #2a2825;
  --text: #f2ede3; --body: #cdc6ba; --muted: #8f887c; --brass: #c58a3d;
  --sans: Satoshi, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --serif: Zodiak, Georgia, "Times New Roman", serif;
}
@media (prefers-color-scheme: light) {
  :root { --ground:#faf8f4; --surface:#fff; --hair:#e5e0d6;
          --text:#171613; --body:#3d3a34; --muted:#6d675d; --brass:#9c6a24; }
}
* { box-sizing: border-box; }
body {
  margin: 0; padding: 0 24px 96px; background: var(--ground); color: var(--body);
  font: 16px/1.65 var(--sans); -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 660px; margin: 0 auto; }
.wrap.wide { max-width: 1040px; }

h1, h2, h3, h4 { color: var(--text); font-weight: 800; letter-spacing: -0.5px; }
h1 { font-size: 30px; line-height: 1.15; letter-spacing: -0.7px; margin: 0 0 10px; }
h2 { font-size: 17px; margin: 40px 0 12px; font-weight: 700; letter-spacing: -0.2px; }
p { margin: 0 0 16px; }
a { color: var(--brass); }
ul { margin: 0 0 16px; padding-left: 20px; }
li { margin-bottom: 8px; }
img { max-width: 100%; height: auto; display: block; }
.mark { display: block; width: 34px; height: 46px; margin-bottom: 22px; }
.kicker { color: var(--brass); font-size: 11px; letter-spacing: 1.6px; text-transform: uppercase; margin: 0 0 14px; font-weight: 700; }
.lede { color: var(--muted); font-size: 15px; }
.aside { color: var(--muted); font-size: 14px; }
.card { background: var(--surface); border: 1px solid var(--hair); border-radius: 14px; padding: 20px 22px; margin: 0 0 16px; }
.card h3 { font-size: 15px; margin: 0 0 8px; font-weight: 700; }
.card p:last-child { margin-bottom: 0; }
code { background: var(--surface); border: 1px solid var(--hair); border-radius: 5px; padding: 1px 5px; font-size: 13px; }
footer { margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--hair); color: var(--muted); font-size: 13px; }
footer a { margin-right: 18px; }

/* ---- support / privacy pages keep the narrow header ---- */
header:not(.hero) { padding: 72px 0 40px; border-bottom: 1px solid var(--hair); margin-bottom: 40px; }

/* ---- landing ---- */
.hero { padding: 96px 0 72px; }
.hero h1 { font-size: clamp(40px, 8vw, 72px); font-weight: 900; line-height: 1.02; letter-spacing: -2px; margin: 0 0 24px; }
.hero .lede { font-size: clamp(17px, 2.2vw, 20px); line-height: 1.55; color: var(--body); max-width: 34em; }
.cta { margin: 40px 0 12px; }
.button {
  display: inline-block; background: var(--brass); color: #100f0d; text-decoration: none;
  font-weight: 700; font-size: 16px; padding: 15px 30px; border-radius: 999px;
  letter-spacing: -0.2px;
}
.button:hover { filter: brightness(1.08); }
.cta-note { color: var(--muted); font-size: 14px; margin: 0; }

.band { padding: 64px 0; border-top: 1px solid var(--hair); }
.band h2 { font-size: clamp(26px, 4vw, 38px); font-weight: 900; letter-spacing: -1.1px; line-height: 1.1; margin: 0 0 20px; }
.wide-body { max-width: 42em; font-size: 17px; }

.refusals { list-style: none; padding: 0; margin: 32px 0; display: grid; gap: 2px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.refusals li { background: var(--surface); border: 1px solid var(--hair); border-radius: 12px; padding: 20px 22px; margin: 0; font-size: 15px; }
.refusals strong { color: var(--text); display: block; margin-bottom: 4px; }

.pull { font-family: var(--serif); font-size: clamp(21px, 3.2vw, 30px); line-height: 1.35; color: var(--text); border-left: 2px solid var(--brass); padding-left: 24px; margin: 40px 0 0; max-width: 26em; }

.pillars { padding-top: 8px; }
.pillar { display: grid; grid-template-columns: 300px 1fr; gap: 56px; align-items: center; padding: 64px 0; border-top: 1px solid var(--hair); }
/* Alternate which side the phone sits on. Swapping with `order` alone lets grid
   auto-placement drop the text into the 300px track and stretch the image across
   the 1fr one, so the columns are named explicitly on both sides. */
.pillar:nth-child(even) { grid-template-columns: 1fr 300px; }
.pillar:nth-child(even) .shot { grid-column: 2; grid-row: 1; }
.pillar:nth-child(even) .say  { grid-column: 1; grid-row: 1; }
.pillar h3 { font-size: clamp(22px, 3vw, 30px); font-weight: 900; letter-spacing: -0.9px; line-height: 1.15; margin: 0 0 18px; }
.shot img { border-radius: 22px; border: 1px solid var(--hair); }
.say p { font-size: 16px; }

.pair { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 300px)); gap: 32px; margin-top: 36px; }
.pair img { border-radius: 22px; border: 1px solid var(--hair); }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2px; margin-top: 32px; }
.grid > div { background: var(--surface); border: 1px solid var(--hair); border-radius: 12px; padding: 22px; }
.grid h4 { font-size: 15px; margin: 0 0 6px; font-weight: 700; letter-spacing: 0; }
.grid p { margin: 0; font-size: 15px; color: var(--muted); }


.disclaimer { color: var(--muted); font-size: 15px; max-width: 42em; margin: 0; }

.verse { padding: 88px 0; border-top: 1px solid var(--hair); text-align: center; }
.verse blockquote { font-family: var(--serif); font-size: clamp(22px, 3.6vw, 34px); line-height: 1.35; color: var(--text); margin: 0 auto 20px; max-width: 20em; }
.verse cite { color: var(--muted); font-style: normal; font-size: 13px; letter-spacing: 1.4px; text-transform: uppercase; font-weight: 700; }

@media (max-width: 760px) {
  .hero { padding: 64px 0 48px; }
  .pillar, .pillar:nth-child(even) { grid-template-columns: 1fr; gap: 32px; }
  .pillar:nth-child(even) .shot,
  .pillar:nth-child(even) .say { grid-column: 1; grid-row: auto; }
  .shot { max-width: 300px; }
  .band, .pillar { padding: 48px 0; }
}

/* ---- brand lockup ----
   The arch was carrying the brand alone on the landing page, so the name never
   appeared as a wordmark — only in body copy and the tab title. The app's own
   sidebar sets them together, and so should this. */
.brand { display: flex; align-items: center; gap: 16px; margin-bottom: 34px; }
.brand .mark { width: 34px; height: 46px; margin: 0; flex: none; }
.brand .word { color: var(--text); font-size: 31px; font-weight: 800; line-height: 1;
               letter-spacing: 7px; text-transform: uppercase; }
.brand a { text-decoration: none; display: flex; align-items: center; gap: 16px; }
@media (max-width: 480px) {
  .brand .mark { width: 27px; height: 36px; }
  .brand .word { font-size: 24px; letter-spacing: 5px; }
}

/* ---- pillar detail pages ---- */
.crumb { margin-bottom: 40px; font-size: 14px; }
.crumb a { text-decoration: none; }
.p-hero { padding: 8px 0 64px; border-bottom: 1px solid var(--hair); }
.p-hero h1 { font-size: clamp(36px, 6.5vw, 60px); font-weight: 900; line-height: 1.05;
             letter-spacing: -1.8px; margin: 0 0 22px; }
.p-hero .lede { font-size: clamp(17px, 2.2vw, 20px); color: var(--body); max-width: 36em; }
.sec { padding: 56px 0; border-bottom: 1px solid var(--hair); }
.sec h2 { font-size: clamp(23px, 3.4vw, 32px); font-weight: 900; letter-spacing: -1px;
          line-height: 1.15; margin: 0 0 22px; }
.sec h3 { font-size: 17px; font-weight: 700; margin: 32px 0 10px; letter-spacing: -0.2px; }
.sec p, .sec li { font-size: 16px; max-width: 40em; }
.sec > p:first-of-type { font-size: 17px; }
.why { border-left: 2px solid var(--brass); padding: 4px 0 4px 22px; margin: 28px 0;
       max-width: 38em; }
.why .tag { color: var(--brass); font-size: 11px; letter-spacing: 1.6px;
            text-transform: uppercase; font-weight: 700; display: block; margin-bottom: 8px; }
.why p { margin: 0; color: var(--text); }
.spec { list-style: none; padding: 0; margin: 24px 0; border-top: 1px solid var(--hair); max-width: 40em; }
.spec li { display: grid; grid-template-columns: 168px 1fr; gap: 20px;
           padding: 13px 0; border-bottom: 1px solid var(--hair); margin: 0; }
.spec b { color: var(--text); font-weight: 700; font-size: 14px; letter-spacing: 0.2px; }
.p-shot { margin: 36px 0 0; max-width: 300px; }
.p-shot img { border-radius: 22px; border: 1px solid var(--hair); }
.p-shot figcaption { color: var(--muted); font-size: 13px; margin-top: 12px; }
.next { padding: 56px 0 0; }
.next-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
             gap: 2px; margin-top: 20px; }
.next-grid a { background: var(--surface); border: 1px solid var(--hair); border-radius: 12px;
               padding: 20px 22px; text-decoration: none; display: block; }
.next-grid .k { color: var(--brass); font-size: 11px; letter-spacing: 1.6px;
                text-transform: uppercase; font-weight: 700; }
.next-grid .t { color: var(--text); font-weight: 700; margin-top: 6px; display: block; }
.pillar .say h3 a { color: inherit; text-decoration: none; border-bottom: 2px solid var(--brass); }
.more { display: inline-block; margin-top: 6px; font-weight: 700; font-size: 15px;
        text-decoration: none; }
@media (max-width: 620px) { .spec li { grid-template-columns: 1fr; gap: 4px; } }

/* ---- compact point lists ----
   The stance and privacy bands each carried five fat cards plus two long
   paragraphs, which reads as a wall on a phone. The claim is now one line per
   point and the argument moved to its own page, the way the pillars work. */
.points { list-style: none; padding: 0; margin: 26px 0 26px; max-width: 44em;
          border-top: 1px solid var(--hair); }
.points li { margin: 0; padding: 12px 0 12px 22px; border-bottom: 1px solid var(--hair);
             position: relative; font-size: 15.5px; }
.points li::before { content: ""; position: absolute; left: 0; top: 21px;
                     width: 9px; height: 1px; background: var(--brass); }
.points strong { color: var(--text); font-weight: 700; }

/* ---- hero showcase ----
   Six screens on a loop beside the headline, so there is something moving in
   the first viewport.

   Pure CSS keyframes, no script. The page claims it ships no tracking scripts
   and nothing third-party, and /nothing-leaves invites the reader to open the
   network tab and check — a JS carousel would make that invitation awkward to
   accept. These are also the same six files the pillars use further down the
   page, so the slideshow adds no bytes; it only loads them sooner.

   Each frame owns one sixth of a 24s loop and is staggered by a positive
   delay, so the first pass through is already in the right order. The fade-out
   of one frame and the fade-in of the next occupy the same slice of the
   timeline, which is what makes it a crossfade rather than a blink. */
.hero-show { width: 100%; max-width: 240px; margin: 52px auto 0; }
@media (min-width: 900px) {
  .hero { display: grid; grid-template-columns: 1fr 272px; gap: 60px; align-items: center; }
  .hero-say { min-width: 0; }
  .hero-show { margin: 0; max-width: none; }
}
.hero-phone {
  position: relative; width: 100%; aspect-ratio: 560 / 1217;
  border-radius: 26px; overflow: hidden;
  border: 1px solid var(--hair);
  box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.65);
}
.hero-phone img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block; opacity: 0;
  animation: hero-cycle 24s linear infinite;
}
/* Every frame is shifted back by the 0.72s fade-in (3% of 24s) so the first one
   is already at full opacity on load. Without it the box sits empty for the
   length of one fade before the first screen arrives. */
.hero-phone img:nth-child(1) { animation-delay: -0.72s; }
.hero-phone img:nth-child(2) { animation-delay:  3.28s; }
.hero-phone img:nth-child(3) { animation-delay:  7.28s; }
.hero-phone img:nth-child(4) { animation-delay: 11.28s; }
.hero-phone img:nth-child(5) { animation-delay: 15.28s; }
.hero-phone img:nth-child(6) { animation-delay: 19.28s; }

@keyframes hero-cycle {
  0%     { opacity: 0; }
  3%     { opacity: 1; }
  16.6%  { opacity: 1; }
  19.6%  { opacity: 0; }
  100%   { opacity: 0; }
}

/* Without this the whole stack sits at opacity 0 for anyone who has asked the
   system to stop animations. */
@media (prefers-reduced-motion: reduce) {
  .hero-phone img { animation: none; }
  .hero-phone img:first-child { opacity: 1; }
}
