@font-face {
  font-family: "Poppins";
  src: url("/assets/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MaterialCommunityIconsWeb";
  src: url("/assets/MaterialCommunityIcons.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MaterialIconsWeb";
  src: url("/assets/MaterialIcons.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #1a2022;
  --bg-soft: #1a2022;
  --panel: #132821;
  --panel-soft: #1c322b;
  --panel-outline: rgba(128, 162, 130, 0.16);
  --text: #f4eadb;
  --muted: #99a59f;
  --sage: #88a986;
  --gold: #dd9954;
  --gold-soft: rgba(221, 153, 84, 0.16);
  --line: rgba(255, 255, 255, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 120px;
}

body {
  margin: 0;
  background: #1a2022;
  color: var(--text);
  font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

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

.site {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 18px 56px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0 18px;
  background: rgba(26, 32, 34, 0.96);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  background: transparent;
  border: 0;
}

.brand-logo {
  height: 72px;
  width: auto;
  object-fit: contain;
}

.brand-wordmark {
  height: 58px;
  width: auto;
  object-fit: contain;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.03em;
}

.header-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 15px;
}

.hero,
.section,
.site-footer {
  text-align: center;
}

.hero {
  padding: 82px 0 52px;
}

.availability-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid rgba(136, 169, 134, 0.24);
  background: rgba(46, 58, 50, 0.88);
  color: var(--sage);
  font-size: 16px;
  font-weight: 700;
}

.hero-mark {
  width: min(440px, 88%);
  height: auto;
  margin: 34px auto 26px;
}

.hero-mark img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-copy {
  max-width: 700px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 28px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  min-width: 260px;
  border-radius: 999px;
  padding: 26px 34px;
  font-size: 28px;
  font-weight: 800;
}

.button-primary {
  background: var(--gold);
  color: #16211d;
}

.button-secondary {
  background: rgba(74, 72, 65, 0.62);
  border: 1px solid rgba(132, 126, 115, 0.52);
  color: var(--text);
}

.hero-meta {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 20px;
}

.preview-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
  margin-bottom: 84px;
}

.mini-card,
.feature-card,
.pack-panel {
  background: linear-gradient(180deg, #173126 0%, #1b342d 100%);
  border: 1px solid var(--panel-outline);
  border-radius: 32px;
}

.mini-card {
  min-height: 660px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 24px;
  text-align: left;
  overflow: hidden;
  background: #fbf4e8;
  border-color: rgba(251, 244, 232, 0.08);
}

.image-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: center;
  justify-items: center;
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
}

.image-card-grid img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  opacity: 0.92;
}

.image-card-secondary .image-card-grid {
  grid-template-columns: repeat(3, 62px);
  gap: 14px;
}

.image-card-secondary .image-card-grid img {
  width: 62px;
  height: 62px;
}

.explore-screenshot {
  display: block;
  width: 100%;
  margin-top: 0;
  border-radius: 28px;
  border: 1px solid rgba(176, 194, 204, 0.8);
  object-fit: cover;
}

.value-card p,
.image-card p,
.feature-card p,
.pack-copy,
.download-copy,
.footer-brand p,
.footer-meta {
  color: var(--muted);
}

.mini-card,
.mini-card p,
.mini-card span,
.mini-card li {
  color: #1a2022;
}

.mini-card .mini-wordmark {
  filter: none;
}

.value-card li,
.value-card span {
  color: #1a2022;
}

.value-card li::before {
  background: #88a986;
}

.image-card p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
}

.preview-list {
  margin-top: 0;
}

.image-card-secondary {
  justify-content: flex-start;
}

.amenity-pills {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  justify-items: center;
  margin-top: 0;
}

.amenity-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  color: #1a2022;
  text-align: center;
}

.amenity-pill::before {
  content: "";
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background-color: rgba(136, 169, 134, 0.14);
  border: 1px solid rgba(136, 169, 134, 0.26);
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: center;
  flex: 0 0 auto;
}

.amenity-pill-bowl::before {
  content: "\F028E";
  font-family: "MaterialCommunityIconsWeb";
  font-size: 28px;
  line-height: 1;
  color: #729c75;
}

.amenity-pill-bone::before {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23729C75' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 10c.7-.7 1.69 0 2.5 0a2.5 2.5 0 1 0 0-5 .5.5 0 0 1-.5-.5 2.5 2.5 0 1 0-5 0c0 .81.7 1.8 0 2.5l-7 7c-.7.7-1.69 0-2.5 0a2.5 2.5 0 0 0 0 5c.28 0 .5.22.5.5a2.5 2.5 0 1 0 5 0c0-.81-.7-1.8 0-2.5Z'/%3E%3C/svg%3E");
  background-size: 28px 28px;
}

.amenity-pill-menu::before {
  content: "\EA19";
  font-family: "MaterialIconsWeb";
  font-size: 28px;
  line-height: 1;
  color: #729c75;
}

.amenity-pill-label {
  display: block;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
}

.amenity-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 290px;
  text-align: left;
}

.preview-list,
.image-card-secondary .amenity-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 10px;
  margin-bottom: 2px;
}

.amenity-list li {
  position: relative;
  padding-left: 24px;
  margin-top: 0;
  color: #1a2022;
  font-size: 16px;
  line-height: 1.35;
}

.amenity-list li + li {
  margin-top: 0;
}

.amenity-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #88a986;
}

.value-card {
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}

.mini-wordmark {
  width: min(320px, 100%);
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}

.value-card ul,
.pack-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.value-card ul {
  width: 100%;
  max-width: 320px;
  margin-top: 20px;
  text-align: left;
}

.value-card li,
.pack-list li {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 0 0 26px;
  margin-top: 14px;
  position: relative;
  font-size: 18px;
  line-height: 1.45;
}

.value-card li {
  color: #1a2022;
}

.pack-list li {
  color: var(--muted);
}

.value-card li::before,
.pack-list li::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--sage);
  position: absolute;
  left: 0;
  top: 22px;
}

.value-card span {
  margin-top: 24px;
  color: #1a2022;
  font-size: 18px;
  text-align: center;
}

.section {
  margin-bottom: 34px;
}

.section-kicker {
  margin: 0 0 18px;
  color: var(--sage);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section h2 {
  max-width: 860px;
  margin: 0 auto;
  font-size: 86px;
  line-height: 0.98;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 92px;
}

.feature-card {
  padding: 34px;
  text-align: left;
  display: grid;
  grid-template-rows: 104px 132px 1fr;
  align-items: start;
}

.feature-icon {
  width: 104px;
  height: 104px;
  border-radius: 28px;
  background: rgba(91, 112, 98, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.feature-icon img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.feature-card h3 {
  margin: 0 0 18px;
  font-size: 58px;
  line-height: 1;
  display: flex;
  align-items: flex-start;
}

.feature-card p {
  margin: 0;
  font-size: 24px;
  line-height: 1.55;
  align-self: start;
}

.pack-panel {
  max-width: 820px;
  margin: 34px auto 0;
  padding: 44px 40px;
}

.pack-panel h3 {
  margin: 0;
  font-size: 72px;
}

.pack-copy {
  max-width: 620px;
  margin: 18px auto 0;
  font-size: 24px;
  line-height: 1.5;
}

.pack-prices {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  margin-top: 34px;
}

.price-chip {
  min-width: 320px;
  padding: 18px 28px;
  border-radius: 999px;
  background: rgba(105, 117, 105, 0.26);
  border: 1px solid rgba(146, 150, 136, 0.24);
  font-size: 26px;
}

.price-chip-accent {
  color: var(--gold);
  border-color: var(--gold);
  background: var(--gold-soft);
}

.pack-list {
  max-width: 560px;
  margin: 34px auto 0;
  text-align: left;
}

.pack-list li::before {
  background: rgba(136, 169, 134, 0.7);
}

.download-copy {
  max-width: 760px;
  margin: 24px auto 0;
  font-size: 24px;
  line-height: 1.5;
}

.store-buttons {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.store-badge {
  display: block;
  height: auto;
}

.store-badge-apple {
  width: 200px;
}

.store-badge-play {
  width: 226px;
}

.site-footer {
  margin-top: 96px;
  padding: 54px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 24px;
  border-radius: 18px;
  background: rgba(255, 250, 244, 0.98);
  border: 1px solid rgba(41, 46, 49, 0.12);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner-copy {
  min-width: 0;
}

.cookie-banner-title,
.cookie-banner-body {
  margin: 0;
  color: #1a2022;
}

.cookie-banner-title {
  font-size: 16px;
  font-weight: 700;
}

.cookie-banner-body {
  margin-top: 6px;
  max-width: 720px;
  font-size: 14px;
  line-height: 1.45;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-link {
  color: #1a2022;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
}

.cookie-button {
  min-width: 116px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.cookie-button-primary {
  background: #1a2022;
  color: #fffaf4;
}

.cookie-button-secondary {
  background: transparent;
  color: #1a2022;
  border-color: rgba(26, 32, 34, 0.2);
}

.footer-wordmark {
  display: block;
  width: min(340px, 92%);
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}

.footer-brand p {
  max-width: 560px;
  margin: 18px auto 0;
  font-size: 22px;
  line-height: 1.45;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 36px;
  color: var(--muted);
  font-size: 20px;
}

.footer-meta {
  margin-top: 46px;
  font-size: 18px;
}

.footer-meta a {
  text-decoration: underline;
}

.privacy-page {
  max-width: 980px;
  margin: 0 auto;
  padding: 24px 18px 56px;
}

.privacy-shell {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 28px;
  margin-top: 18px;
}

.privacy-header h1 {
  margin: 0;
  font-size: 60px;
  line-height: 1;
}

.privacy-header {
  scroll-margin-top: 120px;
}

.privacy-subtitle {
  color: var(--muted);
  font-size: 18px;
  margin-top: 12px;
}

.notice {
  margin-top: 24px;
  background: transparent;
}

.privacy-section {
  margin-top: 18px;
  background: transparent;
}

@media (max-width: 900px) {
  .section h2,
  .footer-brand h2,
  .privacy-header h1 {
    font-size: 58px;
  }

  .preview-strip,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card h3 {
    font-size: 42px;
  }
}

@media (max-width: 640px) {
  .site {
    padding: 0 14px 40px;
  }

  .site-header {
    padding-top: 14px;
    flex-direction: column;
    gap: 12px;
  }

  .brand {
    width: auto;
    justify-content: center;
  }

  .brand-logo {
    height: 58px;
  }

  .brand-wordmark {
    height: 38px;
  }

  .header-links {
    display: grid;
    grid-template-columns: repeat(4, auto);
    justify-content: center;
    align-items: center;
    width: auto;
    gap: 10px 18px;
    font-size: 13px;
    text-align: center;
  }

  .hero {
    padding: 46px 0 32px;
  }

  .availability-pill {
    font-size: 14px;
    padding: 12px 18px;
  }

  .hero-mark {
    width: min(280px, 74%);
    margin-top: 28px;
  }

  .section h2,
  .footer-brand h2,
  .privacy-header h1 {
    font-size: 40px;
  }

  .hero-copy,
  .download-copy,
  .pack-copy,
  .feature-card p,
  .footer-brand p {
    font-size: 18px;
  }

  .button {
    width: 100%;
    min-width: 0;
    font-size: 20px;
    padding: 20px 24px;
  }

  .mini-card,
  .feature-card,
  .pack-panel {
    border-radius: 26px;
  }

  .feature-card {
    padding: 24px;
    grid-template-rows: 82px 104px 1fr;
  }

  .feature-icon {
    width: 82px;
    height: 82px;
    font-size: 34px;
  }

  .feature-icon img {
    width: 44px;
    height: 44px;
  }

  .feature-card h3,
  .pack-panel h3 {
    font-size: 38px;
  }

  .price-chip {
    min-width: 0;
    width: 100%;
    font-size: 22px;
  }

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

  .footer-links {
    font-size: 17px;
    gap: 18px;
  }

  .privacy-page {
    padding: 14px;
  }

  .privacy-shell {
    padding: 20px;
    margin-top: 12px;
  }

  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 18px;
  }

  .cookie-banner-actions {
    width: 100%;
    justify-content: stretch;
  }

  .cookie-link,
  .cookie-button {
    width: 100%;
    text-align: center;
  }
}
