:root {
  --paper: #E9DFC6;
  --paper2: #F3ECD8;
  --ink: #2A2618;
  --ink2: #5E5740;
  --ink3: #8A7F62;
  --line: #C9BB97;
  --line2: #B6A57E;
  --rule: #2A2618;
  --gold: #B8860B;
  --gold-soft: #EFE3BD;
  --green: #2E6B3A;
  --forest: #161D16;
  --serif: 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --mono: 'Courier New', Courier, monospace;
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.6;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.num, .mono, code { font-family: var(--mono); }
a { color: var(--gold); }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 28px; }

/* ---------- masthead ---------- */
.masthead { border-bottom: 4px double var(--rule); }
.masthead .wrap { display: flex; align-items: center; gap: 14px; padding-top: 22px; padding-bottom: 16px; }
.dot {
  width: 11px; height: 11px; border-radius: 50%; background: var(--gold);
  animation: moodglow 24s ease-in-out infinite;
}
@keyframes moodglow {
  0%, 100% { box-shadow: 0 0 11px 2px hsla(43, 90%, 55%, .8); background: hsl(43 80% 55%); }
  25% { box-shadow: 0 0 11px 2px hsla(205, 80%, 60%, .8); background: hsl(205 70% 58%); }
  50% { box-shadow: 0 0 11px 2px hsla(135, 65%, 50%, .8); background: hsl(135 55% 50%); }
  75% { box-shadow: 0 0 11px 2px hsla(0, 75%, 62%, .7); background: hsl(0 65% 60%); }
}
.masthead .kicker { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink2); }
.masthead .right { margin-left: auto; display: flex; gap: 18px; align-items: center; }
.masthead .right a { font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink2); text-decoration: none; }
.masthead .right a:hover { color: var(--gold); }

/* ---------- hero ---------- */
.hero { padding: 54px 0 30px; text-align: center; }
.hero h1 { font-size: clamp(48px, 9vw, 96px); font-weight: 800; font-style: italic; line-height: 0.98; letter-spacing: -0.02em; }
.hero .tag { font-size: clamp(18px, 2.4vw, 24px); font-style: italic; color: var(--ink2); margin-top: 10px; }
.hero .blurb { max-width: 60ch; margin: 22px auto 0; color: var(--ink2); font-size: 18px; }
.cta { display: flex; gap: 14px; justify-content: center; align-items: center; flex-wrap: wrap; margin-top: 30px; }
.btn {
  display: inline-flex; align-items: center; gap: 9px; background: var(--gold); color: #1B1A14;
  font-weight: 700; font-size: 17px; padding: 14px 26px; border-radius: 9px; text-decoration: none;
  border: 1.5px solid var(--gold);
}
.btn:hover { filter: brightness(1.06); }
.btn.ghost { background: transparent; color: var(--ink); border-color: var(--line2); }
.btn.ghost:hover { border-color: var(--gold); filter: none; }
.soon { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; background: var(--gold-soft);
  border: 1px solid var(--line2); border-radius: 99px; padding: 4px 10px; color: var(--ink2); }
.privacy-line { margin-top: 18px; font-size: 14px; font-style: italic; color: var(--ink3); }

/* ---------- hero image ---------- */
.shot { border: 1px solid var(--line2); border-radius: 12px; overflow: hidden; box-shadow: 0 18px 50px rgba(20,18,12,0.28); background: var(--paper2); }
.shot img { display: block; width: 100%; height: auto; }
.hero-shot { max-width: 880px; margin: 40px auto 0; }
figure { margin: 0; }
figcaption { font-size: 13.5px; color: var(--ink3); font-style: italic; text-align: center; margin-top: 10px; }

/* ---------- section frame ---------- */
section.band { padding: 56px 0; border-top: 3px solid var(--rule); }
.eyebrow { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
h2.head { font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -0.01em; }
.lead { color: var(--ink2); max-width: 64ch; margin-top: 10px; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 30px; border-top: 1px solid var(--line); }
.step { padding: 22px 24px; border-right: 1px solid var(--line); }
.step:last-child { border-right: none; }
.step .n { font-family: var(--mono); font-size: 13px; color: var(--ink3); }
.step h3 { font-size: 21px; margin: 8px 0 6px; }
.step p { font-size: 15px; color: var(--ink2); }

/* features */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 30px; }
.feature { background: var(--paper2); border: 1px solid var(--line); border-radius: 12px; padding: 20px 22px; }
.feature .ico { font-size: 22px; }
.feature h3 { font-size: 18px; margin: 10px 0 6px; }
.feature p { font-size: 14.5px; color: var(--ink2); }

/* gallery */
.gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 30px; }
.gallery .span2 { grid-column: 1 / -1; }

/* android band */
.android { text-align: center; background: var(--forest); color: var(--paper); border-top: 3px solid var(--rule); }
.android .eyebrow { color: #D9B24A; }
.android h2.head { color: var(--paper); }
.android .lead { color: #B3BBA2; margin-left: auto; margin-right: auto; }
.notify { display: flex; gap: 10px; justify-content: center; margin-top: 26px; flex-wrap: wrap; }
.notify input {
  font-family: var(--serif); font-size: 16px; padding: 13px 15px; width: min(340px, 80vw);
  border-radius: 9px; border: 1.5px solid #3C4D36; background: #1A241A; color: var(--paper);
}
.notify input:focus { outline: none; border-color: #D9B24A; }
.notify .btn { background: #D9B24A; border-color: #D9B24A; }
.android .fine { font-size: 13px; color: #7E8B6F; margin-top: 14px; font-style: italic; }

/* quote */
.epigraph { text-align: center; padding: 50px 0; border-top: 3px solid var(--rule); }
.epigraph blockquote { font-size: clamp(22px, 3.2vw, 32px); font-style: italic; max-width: 24ch; margin: 0 auto; line-height: 1.4; }
.epigraph cite { display: block; margin-top: 14px; font-style: normal; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink3); }

/* footer */
footer.colophon { border-top: 4px double var(--rule); text-align: center; padding: 30px 0 40px; }
footer.colophon .made { font-style: italic; color: var(--ink2); }
footer.colophon .links { margin-top: 10px; font-size: 14px; }
footer.colophon .links a { color: var(--ink2); text-decoration: none; margin: 0 10px; }
footer.colophon .links a:hover { color: var(--gold); }

@media (max-width: 820px) {
  .steps, .features, .gallery { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--line); }
}

/* privacy page */
.doc { padding: 40px 0 60px; }
.doc h1 { font-size: 40px; font-style: italic; font-weight: 800; }
.doc h2 { font-size: 22px; margin: 28px 0 8px; }
.doc p, .doc li { color: var(--ink2); margin-top: 8px; }
.doc ul { padding-left: 22px; }
.doc .updated { color: var(--ink3); font-style: italic; font-size: 14px; }
