:root {
  --canvas: #f8f5ed;
  --surface: #fffdf8;
  --ink: #15334f;
  --muted: #667484;
  --gold: #c89631;
  --gold-dark: #9f7220;
  --gold-soft: #f2e1b8;
  --line: #e8dfcf;
  --shadow: 0 24px 70px rgba(21, 51, 79, 0.12);
  --radius: 28px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--canvas);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 10%, rgba(242, 225, 184, 0.48), transparent 28rem),
    var(--canvas);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 12px;
  color: white;
  background: var(--ink);
}

.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(232, 223, 207, 0.82);
  background: rgba(248, 245, 237, 0.88);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1120px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(200, 150, 49, 0.44);
  border-radius: 50%;
  background: rgba(242, 225, 184, 0.5);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 999px;
  background: var(--gold);
  transform: translate(-50%, -50%);
}

.brand-mark::before { width: 4px; height: 17px; }
.brand-mark::after { width: 12px; height: 4px; top: 46%; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a {
  text-decoration: none;
  transition: color 160ms ease;
}

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

.nav-cta {
  padding: 9px 16px;
  border: 1px solid var(--gold-soft);
  border-radius: 999px;
  color: var(--gold-dark) !important;
  background: var(--surface);
}

.hero {
  width: min(1120px, calc(100% - 40px));
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  padding: 78px 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 80px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin-top: 0;
  font-family: var(--serif);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 500;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 500;
}

h3 { font-size: 25px; font-weight: 600; }

.hero-copy {
  max-width: 610px;
  margin: 0 0 32px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(19px, 2.2vw, 24px);
}

.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: white;
  background: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(21, 51, 79, 0.15);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(21, 51, 79, 0.2);
}

.button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--surface);
  box-shadow: none;
}

.launch-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.phone-stage {
  position: relative;
  display: grid;
  place-items: center;
}

.phone-stage::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 225, 184, 0.92), rgba(242, 225, 184, 0));
}

.phone {
  position: relative;
  width: min(300px, 74vw);
  padding: 8px;
  border: 1px solid rgba(21, 51, 79, 0.2);
  border-radius: 46px;
  background: #111b24;
  box-shadow: var(--shadow);
  transform: rotate(2.5deg);
}

.phone img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 38px;
}

.section {
  padding: 104px 0;
}

.section.alt {
  border-block: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.7);
}

.section-inner {
  width: min(1060px, calc(100% - 40px));
  margin: 0 auto;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 44px;
}

.section-heading p,
.feature p,
.support-card p {
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 14px 38px rgba(21, 51, 79, 0.06);
}

.feature-number {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--gold-dark);
  background: var(--gold-soft);
  font-family: var(--serif);
  font-size: 20px;
}

.feature h3 { margin-bottom: 12px; }
.feature p { margin: 0; }

.promise {
  display: grid;
  grid-template-columns: 0.75fr 1.2fr;
  gap: 72px;
  align-items: center;
}

.promise-phone {
  width: min(310px, 100%);
  margin: 0 auto;
  padding: 8px;
  border-radius: 46px;
  background: #111b24;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.promise-phone img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 38px;
}

.check-list {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 18px 0;
  padding-left: 34px;
  color: var(--muted);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-dark);
  font-weight: 800;
}

.quote-section {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 120px 0;
  text-align: center;
}

.quote-section blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.22;
  letter-spacing: -0.03em;
}

.quote-section cite {
  display: block;
  margin-top: 22px;
  color: var(--gold-dark);
  font-style: normal;
  font-weight: 700;
}

.page-main {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 110px;
}

.page-title {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.page-title h1 {
  margin-bottom: 14px;
  font-size: clamp(44px, 7vw, 68px);
}

.page-title p { margin: 0; color: var(--muted); }

.prose { padding-top: 28px; }

.prose h2 {
  margin-top: 52px;
  margin-bottom: 14px;
  font-size: 28px;
  font-weight: 600;
}

.prose h3 {
  margin-top: 34px;
  margin-bottom: 10px;
  font-size: 20px;
}

.prose p,
.prose li { color: #43566a; }

.prose a {
  color: var(--gold-dark);
  text-underline-offset: 3px;
}

.prose li + li { margin-top: 8px; }

.notice {
  margin: 28px 0;
  padding: 20px 22px;
  border-left: 3px solid var(--gold);
  border-radius: 0 16px 16px 0;
  background: rgba(242, 225, 184, 0.3);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 34px 0 54px;
}

.support-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
}

.support-card h2 {
  margin-bottom: 12px;
  font-size: 28px;
}

.support-card .button { margin-top: 8px; }

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.72);
}

.footer-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 38px 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 13px;
}

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

.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--ink); }

@media (max-width: 820px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .hero {
    min-height: auto;
    padding-top: 58px;
    grid-template-columns: 1fr;
    gap: 58px;
    text-align: center;
  }
  .hero-copy { margin-inline: auto; }
  .actions { justify-content: center; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-number { margin-bottom: 24px; }
  .promise { grid-template-columns: 1fr; }
  .promise-copy { order: -1; }
  .support-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .nav { width: min(100% - 28px, 1120px); min-height: 68px; }
  .brand { font-size: 21px; }
  .nav-cta { padding: 8px 13px; }
  .hero, .section-inner, .page-main, .quote-section, .footer-inner {
    width: min(100% - 30px, 1120px);
  }
  .hero { padding-top: 42px; }
  h1 { font-size: 48px; }
  .section { padding: 76px 0; }
  .feature { padding: 24px; }
  .page-main { padding-top: 48px; }
  .footer-inner { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
