:root {
  --background: #f8f6f1;
  --surface: #fffdf8;
  --gold: #c9a24a;
  --gold-dark: #9d7728;
  --text: #1f1f1f;
  --secondary: #7a7a7a;
  --border: #e8dfc8;
  --shadow: 0 24px 70px rgba(73, 55, 16, 0.12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 2%, rgba(201, 162, 74, 0.12), transparent 32rem),
    linear-gradient(rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
}

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

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  padding: 22px 0;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(31, 31, 31, 0.12);
}

.desktop-nav {
  display: flex;
  gap: 30px;
  align-items: center;
  color: #595959;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a,
.footer-links a {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.footer-links a:hover {
  color: var(--gold-dark);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.75);
  color: var(--text);
  font-size: 20px;
}

.mobile-nav {
  padding: 14px 20px 4px;
  text-align: right;
}

.mobile-nav a {
  display: block;
  padding: 10px 0;
  color: #595959;
  font-weight: 600;
}

.hero {
  padding: 82px 0 84px;
  overflow: hidden;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 24px;
  padding: 9px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

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

h1 {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 8vw, 92px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-copy {
  max-width: 640px;
  margin: 0 auto 32px;
  color: var(--secondary);
  font-size: clamp(18px, 2.2vw, 21px);
  line-height: 1.65;
}

.button-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.store-download {
  display: flex;
  min-width: 210px;
  align-items: center;
  flex-direction: column;
}

.app-store-name {
  margin-bottom: 10px;
  color: #525252;
  font-size: 14px;
  font-weight: 700;
}

.app-store-badge {
  display: block;
  width: 180px;
  transition: opacity 180ms ease, transform 180ms ease;
}

.app-store-badge:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.app-store-badge img {
  width: 100%;
}

.android-note {
  margin-top: 8px;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 600;
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--gold);
  color: #18150e;
  box-shadow: 0 12px 28px rgba(160, 121, 36, 0.2);
}

.button-primary:hover {
  background: #d4af5a;
  box-shadow: 0 16px 34px rgba(160, 121, 36, 0.25);
}

.button-secondary {
  border-color: var(--border);
  background: rgba(255, 253, 248, 0.8);
}

.phones {
  position: relative;
  display: flex;
  min-height: 720px;
  margin-top: 72px;
  align-items: center;
  justify-content: center;
}

.phones::before {
  position: absolute;
  width: 740px;
  height: 460px;
  border: 1px solid rgba(201, 162, 74, 0.18);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 74, 0.18), rgba(201, 162, 74, 0.02) 48%, transparent 68%);
  content: "";
}

.phone {
  position: absolute;
  width: 340px;
  padding: 9px;
  border: 1px solid #32302c;
  border-radius: 48px;
  overflow: hidden;
  background: #171717;
  box-shadow: 0 24px 64px rgba(73, 55, 16, 0.18);
}

.phone img {
  width: 100%;
  aspect-ratio: 851 / 1847;
  border-radius: 39px;
  object-fit: cover;
}

.phone-center {
  z-index: 2;
  transform: translateY(-12px);
}

.section {
  padding: 112px 0;
}

.section-kicker {
  margin-bottom: 16px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-title {
  max-width: 680px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.section-intro {
  max-width: 620px;
  margin: 0;
  color: var(--secondary);
  font-size: 18px;
  line-height: 1.7;
}

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

.feature {
  display: grid;
  grid-template-columns: 80px minmax(240px, 0.9fr) minmax(320px, 1.1fr);
  gap: 48px;
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.feature-number {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
}

.feature h3 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.4vw, 45px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.feature p {
  margin: 4px 0 0;
  color: var(--secondary);
  font-size: 18px;
  line-height: 1.75;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

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

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

.faq-question {
  display: flex;
  width: 100%;
  padding: 24px 0;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  font: inherit;
  font-size: 17px;
  font-weight: 700;
  text-align: left;
}

.faq-question::after {
  color: var(--gold-dark);
  content: "+";
  font-size: 24px;
  font-weight: 400;
}

.faq-item.is-open .faq-question::after {
  content: "−";
}

.faq-answer {
  display: none;
  margin: -8px 0 24px;
  padding-right: 48px;
  color: var(--secondary);
  font-size: 15px;
  line-height: 1.7;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.support-card {
  position: relative;
  padding: 72px;
  border: 1px solid var(--border);
  border-radius: 36px;
  overflow: hidden;
  background: #25231f;
  color: #fffdf8;
}

.support-card::after {
  position: absolute;
  top: -160px;
  right: -120px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(201, 162, 74, 0.3);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(201, 162, 74, 0.04), 0 0 0 120px rgba(201, 162, 74, 0.025);
  content: "";
}

.support-card .section-title {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.support-card p {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 0 28px;
  color: #c8c4bb;
  font-size: 17px;
  line-height: 1.7;
}

.support-card .button {
  position: relative;
  z-index: 1;
}

.site-footer {
  padding: 38px 0 44px;
  border-top: 1px solid var(--border);
  color: var(--secondary);
  font-size: 13px;
}

.footer-inner {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  gap: 24px;
  color: #565656;
  font-weight: 600;
}

.legal-hero {
  padding: 72px 0 52px;
}

.legal-hero h1 {
  margin-inline: 0;
  font-size: clamp(48px, 7vw, 76px);
}

.legal-meta {
  color: var(--secondary);
  font-size: 14px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 720px);
  gap: 72px;
  padding-bottom: 112px;
}

.legal-aside {
  color: var(--secondary);
  font-size: 13px;
  line-height: 1.7;
}

.legal-content h2 {
  margin: 48px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: #5f5f5f;
  font-size: 15px;
  line-height: 1.8;
}

.legal-content ul {
  padding-left: 20px;
}

.legal-content a,
.support-email {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 42px;
}

.support-option {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.7);
}

.support-option h2 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
}

.support-option p {
  margin: 0;
  color: var(--secondary);
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 800px) {
  .container {
    width: min(100% - 28px, 640px);
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero {
    padding-top: 58px;
  }

  .phones {
    min-height: 560px;
    margin-top: 42px;
  }

  .phone {
    width: 260px;
    border-radius: 38px;
  }

  .phone-center {
    transform: translateY(-8px);
  }

  .phone img {
    border-radius: 30px;
  }

  .section {
    padding: 82px 0;
  }

  .feature {
    grid-template-columns: 48px 1fr;
    gap: 10px 16px;
    padding: 48px 0;
  }

  .feature p {
    grid-column: 2;
  }

  .faq-layout,
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .legal-aside {
    display: none;
  }

  .support-card {
    padding: 48px 30px;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 52px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    gap: 18px;
  }

  .store-download,
  .app-store-badge {
    width: 100%;
  }

  .app-store-badge img {
    width: 180px;
    margin-inline: auto;
  }

  .phones {
    min-height: 450px;
  }

  .phones::before {
    width: 460px;
    height: 310px;
  }

  .phone {
    width: 220px;
    padding: 7px;
    border-radius: 34px;
  }

  .phone img {
    border-radius: 27px;
  }

  .feature {
    grid-template-columns: 34px 1fr;
  }

  .feature p {
    font-size: 16px;
  }

  .footer-inner,
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* Minimal landing page */
.minimal-home::before {
  background:
    radial-gradient(circle at 50% 18%, rgba(201, 162, 74, 0.15), transparent 30rem),
    linear-gradient(rgba(255, 255, 255, 0.3), transparent);
}

.minimal-hero {
  padding: 100px 0 0;
  overflow: hidden;
  text-align: center;
}

.minimal-hero-inner {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.minimal-hero h1 {
  max-width: 880px;
  margin: 0 auto 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 7.4vw, 88px);
  font-weight: 500;
  line-height: 1.01;
  letter-spacing: -0.055em;
}

.minimal-hero h1 span,
.minimal-subtitle span {
  color: var(--gold);
}

.minimal-subtitle {
  margin: 0 0 34px;
  color: #4e4e4e;
  font-size: clamp(19px, 2.2vw, 25px);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.minimal-store-badge {
  width: 190px;
}

.android-request {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 650;
}

.android-request a {
  display: inline-flex;
  min-height: 38px;
  gap: 8px;
  padding: 0 15px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.82);
  color: #4d473b;
  align-items: center;
  font-size: 12px;
  font-weight: 750;
  box-shadow: 0 8px 24px rgba(73, 55, 16, 0.06);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.android-request a:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 28px rgba(73, 55, 16, 0.1);
  transform: translateY(-1px);
}

.android-request a.is-disabled {
  border-color: var(--border);
  cursor: default;
  opacity: 0.58;
  pointer-events: none;
  box-shadow: none;
}

.android-request svg {
  width: 18px;
  height: 18px;
  fill: #78a748;
}

.android-message {
  display: flex;
  max-width: 510px;
  gap: 13px;
  margin: 22px auto 0;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.75);
  color: var(--secondary);
  align-items: center;
  text-align: left;
  box-shadow: 0 10px 32px rgba(73, 55, 16, 0.06);
}

.android-message-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  background: #f1e8d1;
  color: var(--gold-dark);
  place-items: center;
}

.android-message p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.android-message strong {
  color: #4a4439;
}

.android-message a {
  color: var(--gold-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.single-mockup {
  position: relative;
  display: flex;
  min-height: 710px;
  width: 100%;
  margin-top: 38px;
  align-items: center;
  justify-content: center;
}

.single-mockup::before {
  position: absolute;
  width: 620px;
  height: 430px;
  border: 1px solid rgba(201, 162, 74, 0.2);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 74, 0.16), rgba(201, 162, 74, 0.025) 55%, transparent 72%);
  content: "";
}

.single-mockup .phone {
  width: 330px;
}

.minimal-footer {
  padding: 34px 0 42px;
  border-top: 1px solid var(--border);
  color: var(--secondary);
  text-align: center;
}

.minimal-footer-links {
  display: flex;
  gap: 28px;
  margin-bottom: 16px;
  justify-content: center;
  color: #545454;
  font-size: 14px;
  font-weight: 700;
}

.minimal-footer-links a:hover {
  color: var(--gold-dark);
}

.minimal-footer p {
  margin: 0;
  font-size: 13px;
}

@media (max-width: 600px) {
  .minimal-hero {
    padding-top: 64px;
  }

  .minimal-hero h1 {
    font-size: clamp(47px, 14vw, 64px);
  }

  .minimal-subtitle {
    margin-bottom: 30px;
  }

  .android-message {
    padding: 13px 15px;
  }

  .single-mockup {
    min-height: 550px;
    margin-top: 28px;
  }

  .single-mockup::before {
    width: 430px;
    height: 300px;
  }

  .single-mockup .phone {
    width: 250px;
  }

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