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

@font-face {
  font-family: "Nata Sans";
  src: url("assets/fonts/NataSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: "Nata Sans";
  src: url("assets/fonts/NataSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f8f9fa;
  --surface: #ffffff;
  --ink: #15161a;
  --muted: #686b73;
  --line: #e7e8ec;
  --dark: #111216;
  --dark-soft: #1a1b1f;
  --accent: #fa6715;
  --accent-soft: #fff0e8;
  --green: #2e7d52;
  --blue: #3867d6;
  --radius: 8px;
  --shadow: 0 22px 70px rgba(17, 18, 22, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-160%);
  background: var(--dark);
  color: white;
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 14px clamp(18px, 5vw, 56px);
  background: rgba(248, 249, 250, 0.88);
  border-bottom: 1px solid rgba(231, 232, 236, 0.84);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand img {
  border-radius: 7px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.nav a {
  transition: color 160ms ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 120px clamp(20px, 7vw, 86px) 78px;
  background: var(--dark);
  color: white;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.phone {
  position: absolute;
  width: min(38vw, 360px);
  min-width: 245px;
  filter: drop-shadow(0 42px 58px rgba(0, 0, 0, 0.42));
}

.phone-primary {
  right: clamp(20px, 9vw, 140px);
  top: 13%;
  transform: rotate(2deg);
}

.phone-secondary {
  right: clamp(210px, 34vw, 520px);
  bottom: -58px;
  width: min(31vw, 295px);
  opacity: 0.62;
  transform: rotate(-7deg);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(58px, 12vw, 136px);
  line-height: 0.91;
  font-weight: 700;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 6vw, 72px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.1;
}

.hero-copy {
  max-width: 570px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.77);
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.46;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--accent);
  color: white;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.22);
  color: white;
}

.section {
  padding: clamp(72px, 10vw, 128px) clamp(20px, 7vw, 86px);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 8vw, 90px);
  align-items: end;
  margin-bottom: 38px;
}

.section-head.compact {
  max-width: 860px;
  display: block;
}

.intro-grid,
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-card,
.plan {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}

.feature-mark {
  display: inline-flex;
  margin-bottom: 48px;
  color: var(--accent);
  font-weight: 700;
}

.feature-card p,
.plan p,
.privacy-callout p,
.policy-content p,
.policy-content li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.formats {
  background: white;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.format-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.format-list span {
  min-width: 94px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.screens {
  background: #111216;
  color: white;
}

.screens .section-head h2 {
  color: white;
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}

figure {
  margin: 0;
}

figure img {
  width: 100%;
  border-radius: 24px;
  filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.38));
}

figcaption {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.5;
}

.plan-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 36px;
}

.plan ul,
.policy-content ul {
  padding-left: 20px;
  margin: 18px 0 0;
}

.plan li {
  margin: 9px 0;
  color: var(--muted);
}

.plan.highlighted {
  border-color: rgba(250, 103, 21, 0.42);
  background: var(--accent-soft);
}

.privacy-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: white;
  border-top: 1px solid var(--line);
}

.privacy-callout > div {
  max-width: 820px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 7vw, 86px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--dark);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer a:hover {
  color: white;
}

.policy-page {
  background: white;
}

.policy {
  padding-top: 68px;
}

.policy-hero {
  padding: 90px clamp(20px, 7vw, 86px) 54px;
  color: white;
  background: var(--dark);
}

.policy-hero h1 {
  font-size: clamp(48px, 8vw, 86px);
  line-height: 1;
}

.policy-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 21px;
  line-height: 1.55;
}

.policy-content {
  max-width: 930px;
  padding: 64px clamp(20px, 7vw, 86px) 96px;
}

.policy-content section + section {
  margin-top: 42px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.policy-content h2 {
  margin-bottom: 16px;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.12;
}

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

@media (max-width: 980px) {
  .hero {
    min-height: 86vh;
    padding-top: 108px;
  }

  .phone-primary {
    right: -40px;
    top: 21%;
    opacity: 0.44;
  }

  .phone-secondary {
    right: 16px;
    bottom: -110px;
    opacity: 0.24;
  }

  .section-head,
  .intro-grid,
  .screen-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 62px;
    padding: 12px 18px;
  }

  .brand span {
    display: none;
  }

  .nav {
    gap: 13px;
    font-size: 13px;
  }

  .hero {
    min-height: 84vh;
    padding: 98px 20px 48px;
  }

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

  .hero-actions,
  .privacy-callout,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 64px 20px;
  }

  .feature-mark {
    margin-bottom: 28px;
  }

  figure img {
    border-radius: 18px;
  }

  .format-list span {
    flex: 1 1 calc(50% - 10px);
  }
}
