:root {
  --ink: #0d0d0d;
  --ink-soft: #4a4a48;
  --ink-faint: #8a8a86;
  --paper: #fbfaf7;
  --paper-warm: #f4f2ec;
  --line: #e4e1d8;
  --gold: #d4af37;
  --gold-deep: #996515;
  --indigo: #2c1b47;
  --indigo-deep: #1a0f2e;
  --indigo-soft: #3d2a5f;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: var(--paper);
  padding: 10px 18px; font-weight: 700;
}
.skip:focus { left: 0; }
a:focus-visible, .btn:focus-visible {
  outline: 3px solid var(--gold); outline-offset: 3px;
}
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.display { font-family: "Archivo Black", "Arial Black", sans-serif; font-weight: 400; }
.wrap { max-width: 1040px; margin: 0 auto; padding: 0 28px; }

/* ---------- header ---------- */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 250, 247, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
header.site .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand img { height: 52px; width: auto; }
.brand .name {
  font-family: "Archivo Black", sans-serif; font-size: 13px;
  letter-spacing: 2.5px; text-transform: uppercase; line-height: 1.25;
}
.brand .name small { display: block; font-family: "Inter", sans-serif; font-weight: 600; font-size: 9px; letter-spacing: 4.5px; color: var(--ink-faint); }
nav { display: flex; gap: 26px; }
nav a {
  color: var(--ink-soft); text-decoration: none; font-size: 13px;
  font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
}
nav a:hover { color: var(--ink); }

/* ---------- hero ---------- */
.hero {
  padding: 72px 28px 64px;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 55% at 50% 38%, #ffffff 0%, var(--paper) 70%);
}
.hero img.logo {
  width: min(680px, 88vw);
  height: auto;
  display: block;
  margin: 0 auto;
}
.hero h1 {
  font-size: clamp(22px, 3.4vw, 34px);
  letter-spacing: -0.3px;
  margin-top: 34px;
}
.hero p.lede {
  margin: 14px auto 0; max-width: 540px;
  font-size: 17px; color: var(--ink-soft);
}
.cta-row {
  margin-top: 34px; display: flex; gap: 14px; justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-block; padding: 14px 28px; border-radius: 999px;
  font-weight: 700; font-size: 15px; text-decoration: none;
  letter-spacing: 0.2px; transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-dark {
  background: var(--ink); color: var(--paper);
  box-shadow: 0 6px 18px rgba(13,13,13,0.25);
}
.btn-dark:hover { box-shadow: 0 10px 24px rgba(13,13,13,0.3); }
.btn-ghost {
  border: 2px solid var(--ink); color: var(--ink);
}
.btn-gold {
  background: var(--gold); color: #2b1f00; margin-top: 26px;
  box-shadow: 0 6px 20px rgba(212,175,55,0.35);
}
.btn-gold:hover { box-shadow: 0 10px 26px rgba(212,175,55,0.45); }

/* ---------- statement band ---------- */
.band {
  background: var(--ink); color: var(--paper);
  padding: 58px 28px; text-align: center;
}
.band p.statement {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(20px, 3.6vw, 34px);
  line-height: 1.35;
  max-width: 820px; margin: 0 auto;
  letter-spacing: 0.4px;
}
.band p.statement em { font-style: normal; color: var(--gold); }

/* ---------- sections ---------- */
section { padding: 88px 0; }
.kicker {
  font-size: 12px; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: var(--ink-faint);
}
section h2 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  margin: 10px 0 16px; letter-spacing: -0.5px;
}
section > .wrap > p.intro { color: var(--ink-soft); max-width: 620px; font-size: 17px; }

/* ---------- product ---------- */
.product-card {
  margin-top: 44px;
  background: linear-gradient(150deg, var(--indigo-soft), var(--indigo) 45%, var(--indigo-deep));
  color: #fff;
  border-radius: 24px;
  padding: clamp(28px, 5vw, 56px);
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  box-shadow: 0 24px 60px rgba(26, 15, 46, 0.35);
}
.product-card img.appicon {
  width: 168px; height: 168px; border-radius: 38px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
.product-card .tag {
  display: inline-block; padding: 5px 14px; border-radius: 999px;
  background: rgba(212, 175, 55, 0.18); border: 1px solid rgba(212, 175, 55, 0.45);
  color: var(--gold); font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
}
.product-card h3 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(24px, 3.4vw, 34px);
  margin: 14px 0 10px;
}
.product-card p { color: rgba(255,255,255,0.82); max-width: 560px; }
.features {
  margin-top: 22px; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 12px 26px; list-style: none;
}
.features li {
  padding-left: 26px; position: relative;
  color: rgba(255,255,255,0.88); font-size: 15px;
}
.features li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold);
}
.fine {
  margin-top: 22px; font-size: 13px; color: var(--ink-faint);
  max-width: 720px; line-height: 1.6;
}
.next-up {
  margin-top: 22px;
  border: 1.5px dashed var(--line);
  border-radius: 18px;
  padding: 26px 30px;
  color: var(--ink-faint);
  display: flex; align-items: center; gap: 16px;
  font-weight: 600;
}
.next-up .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--ink-faint); opacity: .5; }

/* ---------- principles ---------- */
#studio { background: var(--paper-warm); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.principles {
  margin-top: 40px; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.principle {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 30px 28px;
}
.principle .num {
  font-family: "Archivo Black", sans-serif; font-size: 15px;
  color: var(--gold-deep);
}
.principle h3 { font-size: 18px; margin: 8px 0 8px; font-weight: 800; letter-spacing: -0.2px; }
.principle p { color: var(--ink-soft); font-size: 15px; }

/* ---------- contact ---------- */
#contact { background: var(--ink); color: var(--paper); }
#contact .kicker { color: rgba(251,250,247,0.5); }
#contact h2 { color: var(--paper); }
#contact p.intro { color: rgba(251,250,247,0.72); }
.email-link {
  display: inline-block; margin-top: 26px;
  max-width: 100%; overflow-wrap: break-word; word-break: break-all;
  font-size: clamp(16px, 4.2vw, 26px);
  font-family: "Archivo Black", sans-serif;
  color: var(--gold); text-decoration: none;
  border-bottom: 3px solid var(--gold);
  padding-bottom: 4px;
}
.email-link:hover { color: #fff; border-color: #fff; }

/* ---------- footer ---------- */
footer {
  background: var(--ink); color: rgba(251,250,247,0.55);
  padding: 30px 0 42px; font-size: 13.5px;
  border-top: 1px solid rgba(251,250,247,0.12);
}
footer .footer-grid {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 26px; padding-top: 14px; padding-bottom: 26px;
}
.footer-brand img { filter: invert(1) brightness(1.6); opacity: 0.85; height: 72px; width: auto; }
.footer-brand p { margin-top: 10px; line-height: 1.5; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
footer a { color: rgba(251,250,247,0.75); text-decoration: none; }
footer a:hover { color: var(--gold); }
footer .copyright {
  border-top: 1px solid rgba(251,250,247,0.12);
  padding-top: 20px; font-size: 12.5px; color: rgba(251,250,247,0.4);
}

/* ---------- legal pages ---------- */
.legal { max-width: 760px; margin: 0 auto; padding: 64px 28px 90px; }
.legal h1 { font-family: "Archivo Black", sans-serif; font-size: 34px; letter-spacing: -0.4px; }
.legal .meta { color: var(--ink-faint); font-size: 14px; margin: 8px 0 18px; }
.legal .scope {
  white-space: normal;
  background: var(--paper-warm); border: 1px solid var(--line);
  border-radius: 12px; padding: 14px 18px; margin-bottom: 36px;
  font-size: 14px; color: var(--ink-soft);
}
.legal h2 { font-size: 19px; font-weight: 800; margin: 32px 0 8px; }
.legal p { color: var(--ink-soft); white-space: pre-line; }
.legal .contact-card, .contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 26px 30px; margin-top: 22px; max-width: 520px;
}
.contact-card a { color: var(--ink); font-weight: 700; text-decoration: none; border-bottom: 2px solid var(--gold); }

@media (max-width: 640px) {
  .product-card { grid-template-columns: 1fr; }
  .product-card img.appicon { width: 128px; height: 128px; border-radius: 30px; }
  nav { gap: 13px; }
  nav a { font-size: 11px; letter-spacing: 0.8px; }
  .brand .name { display: none; }
  .brand img { height: 44px; }
  header.site .wrap { padding: 0 16px; }
}
