:root {
  --red: #c1121f;
  --navy: #003049;
  --cream: #fff8f0;
  --cream-2: #f5eadc;
  --paper: #fffdfa;
  --muted: #81756a;
  --line: #e7d8c5;
  --gold: #e8b43e;
  --green: #2e7d32;
  --shadow: 0 20px 50px rgba(0, 48, 73, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: #1f1d1b;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  letter-spacing: 0;
  min-width: 1180px;
  overflow-x: auto;
}

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

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

.site-header {
  align-items: center;
  background: rgba(255, 248, 240, 0.88);
  border-bottom: 1px solid rgba(231, 216, 197, 0.78);
  display: flex;
  height: 72px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(18px, 4vw, 64px);
  position: fixed;
  right: 0;
  top: 0;
  transition:
    background 180ms ease,
    box-shadow 180ms ease;
  min-width: 1180px;
  z-index: 20;
}

.site-header.is-scrolled {
  background: rgba(255, 248, 240, 0.96);
  box-shadow: 0 8px 24px rgba(0, 48, 73, 0.08);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  font-weight: 900;
  color: var(--navy);
}

.brand img {
  border-radius: 10px;
  height: 38px;
  width: 38px;
}

.nav {
  align-items: center;
  display: flex;
  gap: 28px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.nav a {
  opacity: 0.78;
}

.nav a:hover {
  opacity: 1;
}

.hero {
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.hero-bg {
  background-image:
    linear-gradient(90deg, rgba(255, 248, 240, 0.98), rgba(255, 248, 240, 0.54)),
    url("../images_cd/app_icon.png");
  background-position: center, calc(100% + 90px) center;
  background-repeat: no-repeat;
  background-size: cover, min(66vw, 860px);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(0, 48, 73, 0.04), rgba(0, 48, 73, 0)),
    radial-gradient(circle at 86% 58%, rgba(193, 18, 31, 0.13), transparent 34%);
  inset: 0;
  position: absolute;
}

.hero-content {
  margin-left: clamp(20px, 7vw, 104px);
  max-width: 720px;
  padding-top: clamp(128px, 20vh, 190px);
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  margin: 0 0 12px;
  text-transform: uppercase;
}

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

h1 {
  color: var(--navy);
  font-size: clamp(58px, 11vw, 142px);
  font-weight: 950;
  line-height: 0.94;
  margin-bottom: 24px;
}

h2 {
  color: var(--navy);
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 950;
  line-height: 1.02;
  margin-bottom: 20px;
}

h3 {
  color: var(--navy);
  font-size: 21px;
  font-weight: 900;
  margin-bottom: 8px;
}

.hero-copy {
  color: #3c3935;
  font-size: clamp(18px, 2.1vw, 24px);
  font-weight: 650;
  line-height: 1.45;
  max-width: 660px;
  overflow-wrap: break-word;
}

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

.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
}

.button.primary {
  background: var(--red);
  color: #fff;
}

.button.secondary {
  background: rgba(255, 253, 250, 0.74);
  border: 1px solid var(--line);
  color: var(--navy);
}

.privacy-action {
  background: #fff;
  color: var(--red);
  margin-top: 10px;
}

.hero-facts {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 54px 0 0;
  max-width: 620px;
}

.hero-facts div {
  border-left: 3px solid var(--red);
  padding-left: 14px;
}

.hero-facts dt {
  color: var(--navy);
  font-size: 25px;
  font-weight: 950;
}

.hero-facts dd {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  margin: 4px 0 0;
}

.intro-band,
.section,
.privacy-band,
.app-showcase,
.closing {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 6vw, 96px);
}

.content-grid {
  align-items: start;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  margin: 0 auto;
  max-width: 1180px;
}

.content-grid p,
.showcase-copy p,
.privacy-copy p,
.closing p {
  color: #3d3934;
  font-size: 18px;
  line-height: 1.65;
  overflow-wrap: break-word;
}

.section-head {
  margin: 0 auto 36px;
  max-width: 920px;
  text-align: center;
}

.feature-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1220px;
}

.feature-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 230px;
  padding: 24px;
}

.feature-card img {
  height: 56px;
  margin-bottom: 22px;
  width: 56px;
}

.feature-card p {
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.5;
}

.app-showcase {
  align-items: center;
  background: var(--navy);
  color: #fff;
  display: grid;
  gap: clamp(44px, 8vw, 110px);
  grid-template-columns: minmax(220px, 390px) minmax(0, 600px);
  justify-content: center;
}

.phone-visual {
  margin: 0 auto;
  max-width: 320px;
}

.phone-visual img {
  border: 10px solid #0b2334;
  border-radius: 36px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.showcase-copy h2,
.privacy-band h2 {
  color: #fff;
}

.showcase-copy p,
.privacy-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.check-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
}

.check-list li {
  color: #fff;
  font-weight: 800;
  padding-left: 30px;
  position: relative;
}

.check-list li::before {
  background: var(--gold);
  border-radius: 50%;
  content: "";
  height: 10px;
  left: 0;
  position: absolute;
  top: 7px;
  width: 10px;
}

.category-section {
  background: #fffdfa;
}

.category-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1220px;
}

.category-grid span {
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  font-size: 13px;
  font-weight: 900;
  gap: 12px;
  min-height: 112px;
  justify-content: center;
  text-align: center;
}

.category-grid img {
  height: 34px;
  width: 34px;
}

.privacy-band {
  align-items: start;
  background: var(--red);
  color: #fff;
  display: grid;
  gap: 52px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
}

.privacy-list {
  display: grid;
  gap: 12px;
}

.privacy-list div,
.permission-table div {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  padding: 18px;
}

.privacy-list strong,
.permission-table strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}

.privacy-list span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
  line-height: 1.5;
}

.permission-table {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1220px;
}

.permission-table div {
  background: var(--paper);
  border-color: var(--line);
}

.permission-table strong {
  color: var(--navy);
}

.permission-table span {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.5;
}

.closing {
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.closing img {
  border-radius: 28px;
  box-shadow: var(--shadow);
  height: 120px;
  margin-bottom: 28px;
  width: 120px;
}

.closing h2 {
  max-width: 780px;
}

.closing p {
  max-width: 620px;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  font-size: 14px;
  font-weight: 750;
  justify-content: space-between;
  padding: 24px clamp(20px, 6vw, 96px);
}

.footer-links {
  display: flex;
  gap: 22px;
}
