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

:root {
  color-scheme: light;
  --text: #1f1713;
  --muted: rgba(31, 23, 19, 0.68);
  --muted-strong: rgba(31, 23, 19, 0.82);
  --surface: #fffdf9;
  --surface-soft: rgba(255, 250, 244, 0.78);
  --surface-strong: #fff4e6;
  --surface-dark: #2d1b12;
  --surface-dark-soft: #3c2619;
  --border: rgba(77, 47, 28, 0.1);
  --border-strong: rgba(77, 47, 28, 0.18);
  --shadow: rgba(82, 47, 24, 0.16);
  --shadow-strong: rgba(41, 20, 10, 0.25);
  --accent: #8a5a33;
  --accent-strong: #3f2617;
  --accent-soft: #f2dfcb;
  --gold: #d6a560;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Varela Round",
    ui-rounded,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    sans-serif;
  min-height: 100vh;
  background:
    radial-gradient(
      circle at top left,
      rgba(245, 219, 191, 0.95),
      transparent 30%
    ),
    radial-gradient(
      circle at top right,
      rgba(219, 187, 153, 0.5),
      transparent 24%
    ),
    linear-gradient(180deg, #f8ede1 0%, #fffaf5 34%, #fffdf9 100%);
  color: var(--text);
}

a {
  color: inherit;
}

.landing-page {
  overflow-x: hidden;
}

.page-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0 0.7rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.brand-logo {
  width: 2.7rem;
  height: 2.7rem;
  padding: 0.55rem;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 0.95rem;
  box-shadow: 0 12px 30px rgba(133, 89, 52, 0.12);
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.header-links {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  backdrop-filter: blur(18px);
}

.header-links a {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  text-decoration: none;
  color: var(--muted-strong);
  font-size: 0.94rem;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.header-links a:hover,
.footer-links a:hover,
.back-link:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.header-links a:hover {
  background: rgba(255, 255, 255, 0.72);
}

.landing-main {
  padding: 1rem 0 3rem;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: 3rem;
  align-items: center;
  min-height: calc(100vh - 140px);
  padding: 2.4rem 0 2rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--accent-strong);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 28px rgba(119, 78, 45, 0.08);
  margin-bottom: 1.15rem;
}

.hero-title {
  max-width: 10ch;
  font-size: clamp(3.7rem, 8vw, 7.4rem);
  line-height: 1.06;
  letter-spacing: -0.06em;
  font-weight: 600;
  margin-bottom: 1.15rem;
  padding-bottom: 0.14em;
  overflow: visible;
}

.hero-title-accent {
  display: block;
  background: linear-gradient(135deg, #a66637 0%, #6f3f21 48%, #d39a52 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-bottom: 0.1em;
  overflow: visible;
}

.hero-subtitle {
  max-width: 30rem;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 1.6rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
  margin-bottom: 1.4rem;
}

.cta-note {
  max-width: 20rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.point-pill {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 24px rgba(128, 86, 49, 0.08);
  color: var(--muted-strong);
  font-size: 0.95rem;
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.6rem;
  padding: 1rem 1.45rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.04rem;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px var(--shadow-strong);
}

.btn-apple {
  color: #fff;
  background: linear-gradient(135deg, #4a2e1d 0%, #2d1b12 100%);
  box-shadow: 0 16px 30px rgba(61, 35, 20, 0.24);
}

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

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(24px);
  opacity: 0.9;
}

.glow-left {
  width: 220px;
  height: 220px;
  left: 6%;
  top: 18%;
  background: rgba(218, 151, 83, 0.28);
}

.glow-right {
  width: 280px;
  height: 280px;
  right: 0;
  bottom: 12%;
  background: rgba(109, 62, 36, 0.18);
}

.phone-frame {
  position: relative;
  z-index: 2;
  width: min(380px, 100%);
  padding: 14px;
  border-radius: 42px;
  background: linear-gradient(180deg, #432818 0%, #140c08 100%);
  box-shadow:
    0 28px 80px rgba(32, 17, 10, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.phone-frame::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  width: 32%;
  height: 28px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(10, 7, 5, 0.92);
}

.phone-screen {
  overflow: hidden;
  position: relative;
  border-radius: 30px;
  padding: 3.3rem 1rem 1rem;
  min-height: 620px;
  background:
    radial-gradient(circle at top, rgba(248, 229, 206, 0.9), transparent 34%),
    linear-gradient(180deg, #fff8f0 0%, #f6ebe0 100%);
}

.screen-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.screen-top h2 {
  font-size: 1.55rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.screen-label,
.card-kicker,
.floating-label,
.feature-kicker {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.screen-label,
.card-kicker,
.floating-label {
  color: rgba(64, 36, 18, 0.62);
}

.screen-badge {
  min-width: 3rem;
  padding: 0.7rem 0.8rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.78);
  color: var(--accent-strong);
  text-align: center;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(113, 73, 42, 0.12);
}

.screen-card {
  border-radius: 1.4rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 24px rgba(116, 75, 43, 0.08);
}

.card-highlight {
  margin-bottom: 0.9rem;
  background: linear-gradient(
    135deg,
    rgba(255, 245, 232, 0.95),
    rgba(255, 255, 255, 0.68)
  );
}

.taste-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.8rem;
}

.taste-row span {
  padding: 0.5rem 0.7rem;
  border-radius: 999px;
  background: rgba(140, 90, 51, 0.09);
  color: var(--accent-strong);
  font-size: 0.88rem;
  font-weight: 500;
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.stat-card strong {
  display: block;
  margin: 0.45rem 0 0.2rem;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.trend-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.trend-header span {
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: rgba(105, 164, 111, 0.16);
  color: #2c6b36;
  font-size: 0.76rem;
  font-weight: 700;
}

.trend-bars {
  display: flex;
  align-items: end;
  gap: 0.45rem;
  height: 110px;
  margin-bottom: 0.9rem;
}

.trend-bar {
  flex: 1;
  border-radius: 999px 999px 0.7rem 0.7rem;
  background: linear-gradient(180deg, #e3b476 0%, #8d5a33 100%);
}

.bar-1 {
  height: 36%;
}

.bar-2 {
  height: 58%;
}

.bar-3 {
  height: 46%;
}

.bar-4 {
  height: 74%;
}

.bar-5 {
  height: 90%;
}

.bar-6 {
  height: 62%;
}

.trend-caption {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.floating-card {
  position: absolute;
  z-index: 3;
  max-width: 200px;
  padding: 1rem 1.1rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 34px rgba(75, 44, 25, 0.12);
  backdrop-filter: blur(12px);
}

.floating-card strong {
  display: block;
  margin-top: 0.3rem;
  line-height: 1.25;
  font-size: 0.98rem;
  letter-spacing: -0.03em;
}

.floating-card-left {
  left: 0;
  bottom: 18%;
}

.floating-card-right {
  right: 2%;
  top: 14%;
}

.feature-strip,
.showcase-grid {
  display: grid;
  gap: 1.1rem;
  margin-top: 2rem;
}

.feature-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.showcase-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.feature-card,
.showcase-card {
  padding: 1.5rem;
  border-radius: 1.7rem;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 34px rgba(86, 53, 30, 0.08);
}

.feature-card h2,
.showcase-card h2 {
  font-size: 1.55rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 0.45rem 0 0.7rem;
}

.feature-card p:not(.feature-kicker),
.showcase-card p:not(.feature-kicker) {
  color: var(--muted);
  line-height: 1.6;
}

.feature-kicker {
  color: var(--accent);
}

.showcase-dark {
  color: #fff8f1;
  background:
    radial-gradient(
      circle at top right,
      rgba(221, 166, 99, 0.18),
      transparent 26%
    ),
    linear-gradient(135deg, #4f2f1c 0%, #25150e 100%);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 42px rgba(40, 24, 16, 0.22);
}

.showcase-dark .feature-kicker,
.showcase-dark p:not(.feature-kicker) {
  color: rgba(255, 244, 232, 0.76);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0 2.2rem;
  color: var(--muted);
}

.footer-tagline {
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.footer-links a,
.back-link {
  text-decoration: none;
  color: var(--muted);
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.divider {
  margin: 0 0.75rem;
  opacity: 0.5;
}

.policy-page {
  max-width: 920px;
  width: min(100%, calc(100% - 32px));
  margin: 0 auto;
  padding: 2rem 0 3rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.4rem;
  font-weight: 600;
}

.policy-content {
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 1.8rem;
  padding: 2rem;
  box-shadow: 0 20px 44px rgba(58, 36, 22, 0.08);
  line-height: 1.72;
}

.policy-content h1,
.policy-content h2,
.policy-content h3,
.policy-content h4,
.policy-content h5,
.policy-content h6 {
  margin-top: 2rem;
  margin-bottom: 0.95rem;
  color: var(--text);
}

.policy-content h1 {
  margin-top: 0;
  font-size: 2.45rem;
  line-height: 1.02;
  letter-spacing: -0.05em;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.policy-content h2 {
  font-size: 1.45rem;
}

.policy-content h3 {
  font-size: 1.08rem;
}

.policy-content p,
.policy-content ul,
.policy-content ol {
  margin-bottom: 1rem;
}

.policy-content ul,
.policy-content ol {
  padding-left: 1.35rem;
}

.policy-content li + li {
  margin-top: 0.48rem;
}

.policy-content strong {
  font-weight: 700;
}

.policy-content a {
  color: var(--accent);
}

.policy-meta {
  color: var(--muted);
}

@media (min-width: 1500px) {
  .page-shell {
    width: min(1420px, calc(100% - 96px));
  }

  .site-header {
    padding-top: 1.25rem;
  }

  .landing-main {
    padding-top: 1.4rem;
  }

  .hero-section {
    grid-template-columns: minmax(0, 1.08fr) minmax(520px, 0.92fr);
    gap: 4.5rem;
    min-height: calc(100vh - 120px);
    padding-top: 2.8rem;
  }

  .hero-title {
    max-width: 9.5ch;
    font-size: clamp(5.4rem, 6vw, 7.9rem);
  }

  .hero-subtitle {
    max-width: 34rem;
    font-size: 1.38rem;
  }

  .cta-note {
    max-width: 22rem;
    font-size: 1.04rem;
  }

  .hero-visual {
    min-height: 700px;
  }

  .phone-frame {
    width: min(430px, 100%);
  }

  .phone-screen {
    min-height: 680px;
  }

  .floating-card-left {
    left: -2%;
    bottom: 18%;
  }

  .floating-card-right {
    right: -2%;
    top: 13%;
  }
}

@media (max-width: 1040px) {
  .hero-section,
  .feature-strip,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
    padding-top: 1.6rem;
  }

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 2;
    min-height: auto;
    padding: 1rem 0 0;
  }

  .floating-card-left {
    left: 2%;
    bottom: 10%;
  }

  .floating-card-right {
    right: 2%;
    top: 6%;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: calc(100% - 24px);
  }

  .site-header {
    flex-direction: column;
    align-items: stretch;
  }

  .header-links {
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 1.1rem;
  }

  .hero-title {
    max-width: 11ch;
    font-size: 3.4rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .cta-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .phone-frame {
    width: min(100%, 360px);
  }

  .phone-screen {
    min-height: 560px;
  }

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

  .floating-card {
    display: none;
  }

  .feature-card,
  .showcase-card,
  .policy-content {
    padding: 1.25rem;
  }

  .site-footer {
    justify-content: center;
    text-align: center;
    padding-bottom: 1.6rem;
  }

  .policy-page {
    width: calc(100% - 20px);
    padding-top: 1rem;
  }

  .policy-content h1 {
    font-size: 2rem;
  }
}
