@font-face {
  font-family: "Pinyon Script";
  src: url("./assets/fonts/PinyonScript-Regular.ttf") format("truetype");
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #07080b;
  --panel: #101219;
  --panel-soft: #171a23;
  --text: #f7f8fb;
  --muted: #a5adba;
  --line: #2b303b;
  --accent: #ffcf7a;
  --accent-strong: #ff8f5a;
  --radius: 28px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 143, 90, 0.16), transparent 34rem),
    radial-gradient(circle at 80% 0%, rgba(255, 207, 122, 0.12), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family:
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 8, 11, 0.78);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.brand {
  color: var(--text);
  font-family: "Pinyon Script", "Brush Script MT", cursive;
  font-size: 2.18rem;
  line-height: 1;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 56px;
  align-items: center;
  width: min(1120px, calc(100% - 32px));
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: 72px 0;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

h2 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.lede {
  max-width: 610px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
}

.button.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #17110c;
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.hero-phone {
  overflow: hidden;
  max-width: 390px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 46px;
  background: #050608;
  box-shadow: var(--shadow);
}

.hero-phone img {
  width: 100%;
  aspect-ratio: 1242 / 2688;
  object-fit: cover;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 72px;
}

.features article,
.policy-card,
.privacy-callout {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(16, 18, 25, 0.78);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.features article {
  padding: 22px;
}

.features p,
.gallery p,
.privacy-callout p,
.policy p {
  color: var(--muted);
}

.gallery {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 88px;
}

.section-heading {
  max-width: 620px;
  margin-bottom: 28px;
}

.screens {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
}

.screens figure {
  margin: 0;
}

.screens img {
  width: 100%;
  aspect-ratio: 1242 / 2688;
  object-fit: cover;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  background: #050608;
  box-shadow: var(--shadow);
}

.screens figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
  text-align: center;
}

.privacy-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 88px;
  padding: 28px;
}

.privacy-callout p {
  margin-bottom: 0;
}

.footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  opacity: 0.9;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.footer-logo:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.footer-logo img {
  width: min(140px, 46vw);
  height: auto;
  border-radius: 10px;
}

.footer p {
  margin-bottom: 6px;
}

.footer a {
  color: var(--text);
}

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

.policy-hero {
  margin-bottom: 28px;
}

.policy-hero h1 {
  max-width: 760px;
  font-size: clamp(2.6rem, 7vw, 5rem);
}

.policy-card {
  padding: clamp(24px, 5vw, 46px);
}

.policy-card h2 {
  margin-top: 34px;
  font-size: 1.35rem;
}

.policy-card h2:first-child {
  margin-top: 0;
}

.policy-card a {
  color: var(--accent);
  font-weight: 800;
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 52px;
  }

  .hero-phone {
    width: min(100%, 360px);
    margin: 0 auto;
  }

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

  .features {
    padding-top: 0;
  }

  .screens {
    grid-template-columns: 1fr;
    width: min(100%, 390px);
    margin: 0 auto;
  }

  .privacy-callout {
    align-items: flex-start;
    flex-direction: column;
  }
}
