:root {
  color-scheme: light;
  --bg: #f4ecdf;
  --bg-deep: #eadcc5;
  --surface: rgba(255, 250, 243, 0.78);
  --surface-strong: #fff9f1;
  --text: #202538;
  --muted: #5f6877;
  --line: rgba(102, 84, 48, 0.18);
  --accent: #45685b;
  --accent-soft: #d8e6df;
  --gold: #bb8f37;
  --shadow: 0 24px 70px rgba(34, 39, 53, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --page-width: min(1160px, calc(100% - 40px));
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.8), transparent 28%),
    radial-gradient(circle at top right, rgba(216, 230, 223, 0.55), transparent 32%),
    linear-gradient(180deg, #fbf7ef 0%, var(--bg) 56%, var(--bg-deep) 100%);
  font: 16px/1.65 var(--sans);
}

body::before,
body::after {
  position: fixed;
  content: "";
  inset: auto;
  z-index: -1;
  border-radius: 999px;
  filter: blur(6px);
}

body::before {
  top: 100px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: rgba(216, 230, 223, 0.6);
}

body::after {
  bottom: 80px;
  left: -120px;
  width: 300px;
  height: 300px;
  background: rgba(244, 214, 161, 0.36);
}

a {
  color: inherit;
}

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

.site-shell {
  width: var(--page-width);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(251, 247, 239, 0.72);
  border-bottom: 1px solid rgba(102, 84, 48, 0.08);
}

.site-header-inner {
  width: var(--page-width);
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(69, 104, 91, 0.18);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-kicker,
.eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 700;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.nav a,
.pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(69, 104, 91, 0.14);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.78);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.nav a:hover,
.pill-link:hover {
  background: rgba(216, 230, 223, 0.58);
}

.hero,
.section-card,
.surface {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero {
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 36px;
  align-items: center;
  padding: 56px;
}

.hero-copy h1,
.page-head h1,
.section-title {
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-size: clamp(2.8rem, 8vw, 5.8rem);
}

.page-head h1 {
  font-size: clamp(2.4rem, 7vw, 4.6rem);
}

.hero-copy p,
.page-head p,
.lead {
  margin: 18px 0 0;
  max-width: 42rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 2.1vw, 1.45rem);
}

.hero-actions,
.stack {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.button-primary {
  background: var(--accent);
  color: #fffefc;
  box-shadow: 0 16px 30px rgba(69, 104, 91, 0.22);
}

.button-secondary {
  border: 1px solid rgba(69, 104, 91, 0.22);
  background: rgba(255, 250, 243, 0.88);
}

.phone-cluster {
  position: relative;
  min-height: 540px;
}

.phone-card {
  position: absolute;
  width: min(250px, 42vw);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(32, 37, 56, 0.12);
  background: #fff;
  box-shadow: 0 28px 65px rgba(32, 37, 56, 0.18);
}

.phone-card img {
  width: 100%;
  height: auto;
}

.phone-card.one {
  top: 0;
  left: 8%;
  transform: rotate(-8deg);
}

.phone-card.two {
  top: 54px;
  right: 8%;
  transform: rotate(7deg);
}

.phone-card.three {
  bottom: 0;
  left: 22%;
  transform: rotate(-2deg);
}

main {
  padding: 28px 0 56px;
}

section {
  margin-top: 28px;
}

.page-head,
.section-block {
  padding: 42px;
}

.kpi-row,
.feature-grid,
.faq-grid,
.link-grid,
.support-grid {
  display: grid;
  gap: 18px;
}

.kpi-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.support-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.link-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.feature-card,
.faq-card,
.link-card,
.shot-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 252, 247, 0.86);
  border: 1px solid var(--line);
}

.info-card strong,
.feature-card h3,
.faq-card h3,
.link-card h3,
.support-card h2,
.policy-block h2 {
  display: block;
  margin: 0 0 10px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.feature-card p,
.faq-card p,
.link-card p,
.info-card p,
.support-card p,
.policy-block p,
.policy-block li {
  margin: 0;
  color: var(--muted);
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.shot-card {
  padding: 14px;
}

.shot-card img {
  border-radius: 18px;
  border: 1px solid rgba(32, 37, 56, 0.08);
}

.shot-card span {
  display: block;
  margin-top: 12px;
  font-weight: 700;
}

.quote-banner {
  padding: 40px 42px;
  background:
    linear-gradient(135deg, rgba(69, 104, 91, 0.94), rgba(78, 112, 97, 0.84)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 35%);
  color: #fbf7ef;
}

.quote-banner h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.quote-banner p {
  margin: 14px 0 0;
  max-width: 40rem;
  color: rgba(251, 247, 239, 0.86);
}

.support-card,
.policy-block {
  padding: 28px;
  border-radius: var(--radius-md);
  background: rgba(255, 251, 246, 0.86);
  border: 1px solid var(--line);
}

.support-card + .support-card,
.policy-block + .policy-block {
  margin-top: 18px;
}

.support-card ul,
.policy-block ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.contact-line {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(216, 230, 223, 0.52);
  border: 1px solid rgba(69, 104, 91, 0.14);
}

.site-footer {
  width: var(--page-width);
  margin: 0 auto 28px;
  padding: 22px 0 10px;
  color: var(--muted);
}

.site-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(102, 84, 48, 0.14);
}

.site-footer a {
  text-decoration: none;
}

@media (max-width: 980px) {
  .hero-grid,
  .support-grid,
  .feature-grid,
  .faq-grid,
  .kpi-row,
  .link-grid {
    grid-template-columns: 1fr;
  }

  .screenshots-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .page-head,
  .section-block,
  .quote-banner {
    padding: 32px;
  }

  .phone-cluster {
    min-height: 500px;
  }
}

@media (max-width: 720px) {
  .site-header-inner,
  .site-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero-grid,
  .page-head,
  .section-block,
  .quote-banner {
    padding: 24px;
  }

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

  .phone-cluster {
    min-height: 400px;
  }

  .phone-card {
    width: min(205px, 46vw);
  }

  .hero-copy h1,
  .page-head h1,
  .section-title,
  .quote-banner h2 {
    letter-spacing: -0.05em;
  }
}
