:root {
  --ink: #101a31;
  --muted: #5d6879;
  --paper: #fffaf1;
  --cream: #f7efe2;
  --gold: #c8953a;
  --line: rgba(16, 26, 49, 0.12);
  --shadow: 0 24px 70px rgba(16, 26, 49, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 0%, rgba(213, 177, 115, 0.22), transparent 26rem),
    radial-gradient(circle at 8% 24%, rgba(149, 169, 155, 0.16), transparent 22rem),
    linear-gradient(180deg, #fffaf3 0%, #f7efe2 100%);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.serif {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(22px);
  background: rgba(255, 250, 241, 0.78);
  border-bottom: 1px solid rgba(16, 26, 49, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
}

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

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

.nav-links a {
  text-decoration: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: white;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 16px 32px rgba(16, 26, 49, 0.14);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.56);
  color: var(--ink);
  box-shadow: none;
}

.hero {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 82px 0 84px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.78fr);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(58px, 9vw, 112px);
  line-height: 0.88;
  letter-spacing: 0;
}

.lead {
  max-width: 660px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.38;
}

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

.hero-card {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-preview {
  width: min(430px, 100%);
  max-height: 720px;
  object-fit: contain;
  border-radius: 34px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: white;
}

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

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.95;
}

.section-heading p {
  color: var(--muted);
  font-size: 21px;
  line-height: 1.45;
}

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

.feature-card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 12px 45px rgba(16, 26, 49, 0.07);
}

.icon-pill {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: #f5dfb8;
  color: var(--ink);
  font-size: 24px;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 26px;
  line-height: 1.05;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.showcase figure {
  margin: 0;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.82);
}

.showcase img {
  width: 100%;
  display: block;
  aspect-ratio: 1284 / 2778;
  object-fit: cover;
  object-position: top center;
}

.showcase figure:nth-child(2) {
  margin-top: 54px;
}

.showcase figure:nth-child(3) {
  margin-top: 18px;
}

.privacy-band {
  margin-top: 38px;
  padding: 34px;
  border-radius: 32px;
  background: var(--ink);
  color: white;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.privacy-band p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
}

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

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

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

.legal-page h1 {
  font-size: clamp(48px, 7vw, 78px);
}

.legal-page h2 {
  margin-top: 42px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 24px;
  line-height: 1.2;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

@media (max-width: 860px) {
  .nav {
    min-height: 64px;
  }

  .nav-links {
    gap: 12px;
  }

  .nav-links a:not(.button) {
    display: none;
  }

  .hero {
    padding-top: 54px;
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .showcase,
  .privacy-band {
    grid-template-columns: 1fr;
  }

  .showcase figure:nth-child(n) {
    margin-top: 0;
  }

  .footer-inner {
    flex-direction: column;
  }
}
