﻿@import url("https://fonts.cdnfonts.com/css/poppins");
@import url("https://fonts.cdnfonts.com/css/sf-pro-display");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&display=swap");

:root {
  --bg: #f8f5ef;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --text: #182127;
  --muted: #323639;
  --accent: #444242;
  --title-font: "SF Pro Display", sans-serif;
  --body-font:
    "SF Pro Text", "SF Pro Display", "Helvetica Neue", Helvetica, Arial,
    sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

::selection {
  background: #111;
  color: var(--bg);
}

::-webkit-scrollbar {
  display: none;
}

body {
  width: 100dvw;
  min-height: 500px;
  height: 100dvh;
  color: var(--text);
  font-family: var(--body-font);
  overflow: hidden;
  background:
    radial-gradient(
      circle at top left,
      rgba(192, 139, 56, 0.18),
      transparent 28%
    ),
    radial-gradient(
      circle at right center,
      rgba(28, 124, 84, 0.16),
      transparent 24%
    ),
    linear-gradient(180deg, #fcfaf6 0%, #f5f1e8 100%);
}

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

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

button {
  font: inherit;
  color: inherit;
  background: transparent;
  border: 0;
  padding: 0;
}

a:visited,
a:hover,
a:active,
a:focus {
  color: inherit;
  text-decoration: none;
}

a:focus-visible {
  outline: 2px solid rgba(24, 33, 39, 0.35);
  outline-offset: 4px;
}

.logo {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  gap: 8px;

  img {
    margin-bottom: 16px;
    height: 100%;
    width: 11%;
    max-width: 100%;
  }
}

.container {
  width: 100dvw;
  height: 100dvh;
  padding: 0 15dvw;
}

.bg {
  position: fixed;
  z-index: -1;
  left: 0;
  right: 0;
  width: 100dvw;
  height: 100dvh;
  background:
    radial-gradient(
      circle at top left,
      rgba(192, 139, 56, 0.18),
      transparent 28%
    ),
    radial-gradient(
      circle at right center,
      rgba(28, 124, 84, 0.16),
      transparent 24%
    ),
    linear-gradient(180deg, #fcfaf6 0%, #f5f1e8 100%);
}

.hero {
  display: flex;
}

.left {
  max-width: 620px;
  align-self: center;
}

.eyebrow,
.section-kicker {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.82rem;
}

h1,
h2,
h3 {
  font-family: var(--title-font);
  letter-spacing: -0.02em;
}

.left h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.95;
  margin-bottom: 16px;
}

.left h2 {
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.25;
  margin-bottom: 18px;
}

.lead,
.left p,
.info-card p,
.policy-page p,
.policy-page li {
  font-family: var(--body-font);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
}

.lead {
  max-width: 58ch;
  margin-bottom: 15px;
}

.hero-links {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;

  small {
    opacity: 0.8;
    user-select: none;
  }
}

.badge {
  background: #18181a;
  object-fit: contain;
  max-height: 50px;
  padding-block: 6px;
  border-radius: 10px;
}

.download-link,
.text-link {
  display: inline-flex;
  width: fit-content;
  transition: none;
  cursor: pointer;
}

.download-link:hover,
.download-link:active,
.text-link:hover,
.text-link:active {
  opacity: 1;
  transform: none;
  filter: none;
}

.text-link,
.policy-link,
.policy-topbar a {
  color: var(--accent);
}

.inline-link {
  display: inline;
}

.phone {
  position: fixed;
  right: 14dvw;
  bottom: 0;
  width: 700px;
  max-height: 78%;
  height: fit-content;
  object-fit: contain;
}

.policy-wrapper {
  width: min(900px, 100%);
  height: 100dvh;
  margin: 0 auto;
  padding: 80px 32px;
  overflow-y: auto;
}

.policy-topbar {
  margin-bottom: 24px;
  font-size: 0.95rem;
  color: var(--muted);
}

.policy-page h1 {
  margin-bottom: 16px;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--text);
}

.policy-page h2 {
  margin: 28px 0 10px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  color: var(--text);
}

.policy-page ul {
  padding-left: 22px;
}

.policy-page footer {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid #1821271f;
  color: var(--muted);
  font-size: 0.94rem;
}

@media (max-height: 500px) {
  body {
    display: flex;
    overflow: scroll !important;
    height: 100dvh;

    .container {
      padding-block: 240px 40px;
      height: 100dvh;
      overflow: auto;
    }

    .bg {
      height: 100dvh;
      top: 0;
    }

    .phone {
      min-height: 100%;
    }
  }
}

@media (max-width: 980px) {
  .container {
    padding: 0 10dvw;
  }

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

@media (max-width: 640px) {
  .hero {
    gap: 28px;
  }

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

  .policy-wrapper {
    padding: 24px 18px;
  }
}

@media (max-width: 1250px) {
  .bg {
    background:
      radial-gradient(
        circle at top left,
        rgba(192, 139, 56, 0.18),
        transparent 28%
      ),
      radial-gradient(
        circle at right center,
        rgba(28, 124, 84, 0.16),
        transparent 24%
      ),
      linear-gradient(180deg, #fcfaf6 0%, #f5f1e8 100%);
    opacity: 0.5;
  }

  .phone {
    z-index: -2;
  }
}
