@import "https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@400;500;600;700&display=swap";

:root {
  --ink: #14110e;
  --ink-soft: #1c1814;
  --cream: #f3e6d0;
  --cream-soft: #efe4cf;
  --gold: #c4a46a;
  --muted: #9a9186;
  --line: rgba(243, 230, 208, 0.16);
  --button: #2b2723;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

main {
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 8%, rgba(196, 164, 106, 0.14), transparent 26%),
    var(--ink);
}

nav,
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: auto;
  padding: 26px 5vw;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.brand-icon {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.36);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-size: 13px;
}

.nav-links a:hover,
.text-link:hover,
.footer-links a:hover,
.help-contact:hover,
.faq-support a:hover {
  color: var(--cream);
}

.nav-cta {
  color: var(--cream);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 11px 16px;
}

.button span,
.nav-cta span,
.text-link span {
  margin-left: 10px;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1240px;
  min-height: 720px;
  margin: auto;
  padding: 72px 5vw 80px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Instrument Serif", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

h1 {
  margin: 22px 0 26px;
  font-size: clamp(52px, 6.6vw, 88px);
}

h2 {
  margin: 20px 0 24px;
  font-size: clamp(42px, 5vw, 68px);
}

h1 em,
h2 em {
  color: var(--gold);
  font-style: italic;
}

.lede,
.section-intro > p,
.loop-copy > p,
.download-card p {
  color: var(--muted);
  max-width: 470px;
  font-size: 17px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.button {
  display: inline-block;
  border-radius: 100px;
  padding: 16px 21px;
  font-size: 13px;
  font-weight: 700;
}

.primary {
  background: var(--cream);
  color: var(--ink);
  white-space: nowrap;
}

.text-link {
  color: var(--cream);
  font-size: 13px;
}

.text-link span {
  color: var(--gold);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 64px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.mini-mark {
  color: var(--gold);
  margin-right: 4px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 580px;
}

.hero-phone-shot {
  position: relative;
  z-index: 2;
  width: auto;
  max-width: 100%;
  height: 590px;
  object-fit: contain;
  border-radius: 28px;
  transform: rotate(2deg);
  filter: drop-shadow(0 34px 40px rgba(6, 5, 3, 0.58));
}

.orb {
  position: absolute;
  border-radius: 50%;
}

.orb-one {
  width: 410px;
  height: 410px;
  background: radial-gradient(circle, rgba(196, 164, 106, 0.22) 0, rgba(196, 164, 106, 0.05) 58%, transparent 72%);
}

.orb-two {
  top: 8%;
  right: 6%;
  width: 160px;
  height: 160px;
  background: #c4a46a;
  opacity: 0.16;
  filter: blur(48px);
}

.quote-band {
  background: var(--cream);
  color: var(--ink);
  text-align: center;
  padding: 96px 5vw;
}

.quote-band p {
  margin: 0;
  font-family: "Instrument Serif", "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 54px);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.quote-band p span {
  display: block;
}

.section {
  max-width: 1240px;
  margin: auto;
  padding: 140px 5vw;
}

.loop {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
}

.loop-list {
  border-top: 1px solid var(--line);
}

.loop-item,
.how-step {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 16px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.loop-number,
.how-number {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.loop-item h3,
.how-step h3 {
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.loop-item p,
.how-step p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.how {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12vw;
}

.how-list {
  border-top: 1px solid var(--line);
}

.watch-shot {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.8fr);
  align-items: center;
  gap: clamp(40px, 7vw, 96px);
}

.watch-copy > p {
  color: var(--muted);
  max-width: 470px;
  font-size: 17px;
  line-height: 1.65;
}

.watch-media {
  display: flex;
  justify-content: center;
  margin: 0;
}

.watch-media img {
  width: auto;
  max-width: min(100%, 340px);
  height: auto;
  border-radius: 36px;
  box-shadow: 0 22px 36px rgba(4, 3, 2, 0.42);
}


.widget-gallery {
  display: grid;
  grid-template-columns: minmax(230px, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(40px, 7vw, 96px);
}

.story-number {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.widget-gallery-copy > p {
  color: var(--muted);
  max-width: 470px;
  font-size: 17px;
  line-height: 1.65;
}

.widget-shots {
  display: flex;
  justify-content: center;
  margin: 0;
}

.widget-shots figure {
  margin: 0;
  min-width: 0;
}

.widget-shots img {
  width: auto;
  max-width: min(100%, 320px);
  height: auto;
  max-height: 620px;
  border-radius: 28px;
  box-shadow: 0 22px 36px rgba(4, 3, 2, 0.42);
  object-fit: contain;
}

.widget-shots figcaption {
  margin-top: 15px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.honesty-faq h2 {
  max-width: 720px;
  margin: 18px 0 36px;
  font-size: clamp(36px, 4.4vw, 56px);
}

.faq-list {
  max-width: 760px;
  margin: 0;
}

.faq-item {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-item dt {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.faq-item dd {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.faq-support {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.faq-support a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.download {
  padding-top: 80px;
  padding-bottom: 120px;
}

.download-card {
  display: flex;
  align-items: center;
  gap: 38px;
  padding: 64px 8%;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(120deg, #221d18, #181410);
}

.download-icon {
  flex: none;
  width: 84px;
  height: 84px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 12px 35px rgba(9, 7, 4, 0.5);
}

.download-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.download-card h2 {
  margin: 16px 0;
  font-size: clamp(40px, 5vw, 56px);
}

.button.soon {
  margin-top: 12px;
  background: var(--gold);
  color: var(--ink);
}

.help-sections {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  max-width: 1240px;
  margin: auto;
  padding: 0 5vw 72px;
}

.help-section {
  padding-top: 26px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 32px;
}

.help-section h2 {
  margin: 0 0 16px;
  font-size: 28px;
}

.help-section p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.help-contact {
  color: var(--gold);
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}

footer {
  gap: 10px;
  padding-top: 27px;
  padding-bottom: 27px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

footer .brand {
  color: var(--cream);
  font-size: 14px;
}

footer .brand-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.nav-links a:focus-visible,
.button:focus-visible,
.text-link:focus-visible,
.help-contact:focus-visible,
.footer-links a:focus-visible,
.faq-support a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}

@media (max-width: 760px) {
  nav {
    padding: 22px 6vw;
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .hero,
  .loop,
  .how,
  .watch-shot,
  .widget-gallery {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 28px;
    padding: 64px 7vw 40px;
  }

  .hero-visual {
    height: 560px;
  }

  .hero-phone-shot {
    height: 540px;
  }

  .hero-note {
    margin-top: 40px;
  }

  .section {
    padding: 96px 7vw;
  }

  .loop,
  .how {
    gap: 48px;
  }

  .download {
    padding: 72px 7vw 96px;
  }

  .download-card {
    display: block;
    padding: 40px 28px;
  }

  .download-icon {
    margin-bottom: 28px;
  }

  .help-sections {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 7vw 56px;
  }

  footer {
    flex-wrap: wrap;
    gap: 14px;
    padding: 25px 7vw;
  }
}
