:root {
  color-scheme: light;
  --ink: #18211a;
  --muted: #5f6a61;
  --leaf: #2d7748;
  --leaf-dark: #173d27;
  --petal: #c564d4;
  --wash: #f6f7f1;
  --line: rgba(24, 33, 26, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--wash);
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(201, 106, 218, 0.22), transparent 30%),
    radial-gradient(circle at 88% 78%, rgba(183, 214, 95, 0.12), transparent 26%),
    linear-gradient(135deg, #07150b 0%, #122417 52%, #08100a 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 21, 11, 0.96), rgba(7, 21, 11, 0.78) 46%, rgba(7, 21, 11, 0.24));
}

.hero-inner {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 7vw, 88px);
  align-items: center;
}

.copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}

.brand img {
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
}

.eyebrow {
  margin: 0;
  color: rgba(238, 245, 208, 0.82);
  font-size: 0.98rem;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-name {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.2rem, 10vw, 8.2rem);
  font-weight: 500;
  line-height: 0.9;
  color: #f8fbef;
  text-shadow: 0 18px 55px rgba(0, 0, 0, 0.28);
}

.brand-name span {
  color: #b7d65f;
}

.tagline {
  max-width: 620px;
  margin: 0 0 22px;
  font-size: clamp(1.55rem, 3.1vw, 2.85rem);
  line-height: 1.12;
  color: #edf5d0;
}

.dedication {
  max-width: 610px;
  margin: 0 0 34px;
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.84);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: 190px;
  min-height: 62px;
  padding: 10px 16px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #050705;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}

.store-badge svg {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
}

.store-badge span {
  display: grid;
  gap: 1px;
  font-size: 1.16rem;
  line-height: 1.02;
  font-weight: 800;
}

.store-badge small {
  font-size: 0.69rem;
  line-height: 1;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.78);
}

.store-badge.google {
  background: #0b0d0d;
}

.store-badge.apple {
  background: rgba(255, 255, 255, 0.13);
  color: #f8fbef;
}

.store-badge.disabled {
  cursor: default;
}

.visual {
  position: relative;
  z-index: 1;
  margin: 0;
  min-height: min(720px, 78svh);
  border-radius: 8px;
}

.visual::before {
  content: "";
  position: absolute;
  inset: 10% 4% 6%;
  border-radius: 999px;
  background: rgba(211, 137, 67, 0.18);
  filter: blur(54px);
}

.visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 28px 54px rgba(0, 0, 0, 0.44));
}

.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.92);
  color: #172216;
  text-decoration: none;
  font-weight: 750;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.store-button.secondary {
  background: rgba(18, 33, 20, 0.72);
  color: #f8fbef;
}

.store-button[aria-disabled="true"] {
  opacity: 0.68;
  cursor: default;
}

.content {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 42px;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.96rem;
}

.policy {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 72px;
}

.policy h1 {
  margin: 0 0 8px;
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1;
}

.policy .back {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--leaf);
  font-weight: 750;
  text-decoration: none;
}

.policy h2 {
  margin-top: 34px;
  color: var(--leaf);
}

.policy p {
  color: #2b332d;
  line-height: 1.75;
}

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

@media (max-width: 700px) {
  .hero-inner {
    width: min(100% - 28px, 520px);
    padding: 34px 0 28px;
    min-height: 100svh;
    grid-template-columns: 1fr;
    gap: 14px;
    align-content: center;
  }

  .brand {
    gap: 14px;
    margin-bottom: 18px;
  }

  .brand img {
    width: 62px;
    height: 62px;
    border-radius: 16px;
  }

  .brand-name {
    font-size: clamp(3.4rem, 17vw, 5.3rem);
    margin-bottom: 16px;
  }

  .tagline {
    font-size: clamp(1.5rem, 8vw, 2.35rem);
  }

  .dedication {
    margin-bottom: 24px;
  }

  .actions {
    gap: 10px;
  }

  .store-badge {
    width: 100%;
    justify-content: flex-start;
  }

  .visual {
    min-height: 35svh;
    order: -1;
    opacity: 0.92;
  }

  .store-button {
    width: 100%;
  }
}
