:root {
  --paper: #fbfaf7;
  --paper-soft: #f4f1eb;
  --card: #ffffff;
  --ink: #171717;
  --muted: #67635d;
  --faint: #9d978f;
  --line: #e4ded3;
  --line-dark: #d4ccc0;
  --shadow: 0 22px 70px rgba(31, 26, 19, 0.12);
  --soft-shadow: 0 12px 34px rgba(31, 26, 19, 0.07);
  --gold: #f4ad31;
  --green: #4ecb75;
  --blue: #5b9cff;
  --violet: #8d6bff;
  --orange: #f5a12f;
  --teal: #45c9bf;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 106px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.site-header {
  align-items: center;
  backdrop-filter: blur(22px);
  background: rgba(251, 250, 247, 0.84);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr auto 1fr;
  left: 0;
  padding: 20px clamp(22px, 5vw, 70px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 40;
}

.brand {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  font-size: 30px;
  font-weight: 780;
  letter-spacing: -0.04em;
}

.brand img {
  display: block;
  height: 42px;
  width: 42px;
}

.footer-brand {
  font-size: 24px;
}

.footer-brand img {
  height: 38px;
  width: 38px;
}

nav {
  align-items: center;
  display: flex;
  gap: clamp(26px, 4vw, 58px);
  justify-content: center;
  font-size: 14px;
  font-weight: 650;
}

nav a,
footer a {
  transition: color 160ms ease, opacity 160ms ease, transform 160ms ease;
}

nav a:hover,
footer a:hover {
  color: var(--muted);
}

.nav-button {
  align-items: center;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 9px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.15);
  color: #fff;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  justify-self: end;
  min-height: 48px;
  padding: 0 22px;
}

.hero {
  align-items: start;
  display: grid;
  gap: clamp(34px, 4vw, 68px);
  grid-template-columns: minmax(420px, 0.9fr) minmax(430px, 1fr);
  min-height: calc(100vh - 89px);
  overflow: hidden;
  padding: clamp(36px, 4.4vw, 58px) clamp(22px, 5vw, 70px) 38px;
  position: relative;
}

.hero::before {
  background: radial-gradient(circle at 72% 48%, rgba(203, 168, 112, 0.16), transparent 36%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-copy,
.phone-stage {
  position: relative;
  z-index: 1;
}

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

.pill {
  align-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: var(--muted);
  display: inline-flex;
  font-size: 13px;
  font-weight: 620;
  gap: 9px;
  margin: 0 0 28px;
  padding: 7px 12px;
}

.pill span {
  border: 1.5px solid var(--ink);
  border-radius: 2px;
  height: 8px;
  transform: rotate(45deg);
  width: 8px;
}

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

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 4.9vw, 78px);
  letter-spacing: -0.018em;
  line-height: 1.01;
  margin-bottom: 24px;
}

.lede {
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.48;
  margin-bottom: 32px;
  max-width: 620px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 34px;
}

.button {
  align-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  display: inline-flex;
  gap: 12px;
  font-size: 15px;
  font-weight: 720;
  justify-content: center;
  min-height: 56px;
  padding: 0 25px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
  color: #fff;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.62);
}

.button.dark-text {
  color: var(--ink);
}

.play-dot {
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: inline-block;
  height: 21px;
  position: relative;
  width: 21px;
}

.play-dot::after {
  border-bottom: 5px solid transparent;
  border-left: 7px solid var(--ink);
  border-top: 5px solid transparent;
  content: "";
  left: 7px;
  position: absolute;
  top: 4px;
}

.social-proof {
  align-items: center;
  display: flex;
  gap: 18px;
}

.avatars {
  display: flex;
}

.avatars span {
  background: linear-gradient(135deg, #d8d1c7, #6d746f);
  border-radius: 50%;
}

.avatars span {
  border: 3px solid var(--paper);
  height: 40px;
  margin-left: -8px;
  width: 40px;
}

.avatars span:first-child {
  margin-left: 0;
}

.avatars span:nth-child(2) { background: linear-gradient(135deg, #dde5ed, #7b6f67); }
.avatars span:nth-child(3) { background: linear-gradient(135deg, #edd6bf, #b8764f); }
.avatars span:nth-child(4) { background: linear-gradient(135deg, #d6dce4, #596776); }

.stars {
  color: var(--gold);
  font-size: 17px;
  letter-spacing: 0.07em;
  line-height: 1;
  margin-bottom: 5px;
}

.social-proof p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
  max-width: 320px;
}

.phone-stage {
  min-height: 720px;
  position: relative;
}

.phone-stage::before {
  background: radial-gradient(circle, rgba(213, 176, 120, 0.2), transparent 62%);
  content: "";
  height: 430px;
  left: 52%;
  position: absolute;
  top: 42%;
  transform: translate(-50%, -50%);
  width: 640px;
  z-index: 0;
}

.phone-stage::after {
  background: radial-gradient(ellipse, rgba(31, 26, 20, 0.22), rgba(31, 26, 20, 0.08) 46%, transparent 72%);
  bottom: 22px;
  content: "";
  height: 66px;
  left: 51%;
  position: absolute;
  transform: translateX(-50%);
  width: min(86%, 560px);
  z-index: 0;
}

.phone {
  background: linear-gradient(145deg, #111, #3d3d3d);
  border: 1px solid rgba(0, 0, 0, 0.46);
  border-radius: 40px;
  margin: 0;
  overflow: hidden;
  padding: 8px;
  position: absolute;
}

.phone::before {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 33px;
  content: "";
  inset: 8px;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

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

.phone-learn {
  box-shadow: 0 34px 90px rgba(26, 22, 18, 0.22), 0 14px 26px rgba(26, 22, 18, 0.16);
  left: 52px;
  top: 4px;
  transform: rotate(-4deg);
  width: min(48vw, 344px);
  z-index: 3;
}

.phone-stats {
  box-shadow: 0 28px 74px rgba(26, 22, 18, 0.18), 0 12px 22px rgba(26, 22, 18, 0.14);
  right: 34px;
  top: 70px;
  transform: rotate(5deg);
  width: min(40vw, 296px);
  z-index: 2;
}

.section {
  border-top: 1px solid var(--line);
  padding: 72px clamp(22px, 5vw, 70px);
}

.eyebrow {
  color: var(--muted);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.pricing-section {
  background: linear-gradient(180deg, var(--paper), #fffdfb);
  padding-bottom: 76px;
  padding-top: 72px;
}

.pricing-copy {
  margin: 0 auto 46px;
  max-width: 650px;
  text-align: center;
}

.pricing-copy h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4.5vw, 64px);
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin-bottom: 18px;
}

.pricing-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.5;
  margin: 0 auto;
  max-width: 560px;
}

.pricing-grid {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  max-width: 1060px;
}

.price-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--soft-shadow);
  display: flex;
  flex-direction: column;
  min-height: 486px;
  overflow: hidden;
  padding: 34px 30px 28px;
  position: relative;
}

.recommended-price {
  border-color: rgba(23, 23, 23, 0.72);
  box-shadow: 0 18px 48px rgba(31, 26, 19, 0.1);
}

.plan-pill {
  align-items: center;
  background: var(--paper-soft);
  border-radius: 999px;
  color: var(--ink);
  display: flex;
  font-size: 12px;
  font-weight: 760;
  height: auto;
  justify-content: center;
  letter-spacing: 0;
  margin: 0;
  padding: 7px 12px;
  position: absolute;
  right: 20px;
  top: 20px;
}

.price-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  margin-bottom: 12px;
}

.price {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1;
  margin-bottom: 15px;
}

.price span {
  font-size: 22px;
}

.price-card > p:not(.price):not(.plan-pill) {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 22px;
  padding-bottom: 22px;
}

.price-card ul {
  display: grid;
  gap: 0;
  list-style: none;
  margin: 0 0 auto;
  padding: 0;
}

.price-card li {
  border-bottom: 1px solid rgba(228, 222, 211, 0.72);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
  padding: 11px 0;
}

.price-card li::before {
  content: none;
}

.price-card .button {
  margin-top: 34px;
  min-height: 48px;
  width: 100%;
}

.pricing-note {
  color: var(--muted);
  font-size: 14px;
  margin: 28px auto 0;
  text-align: center;
}

.site-footer {
  background: rgba(255, 255, 255, 0.46);
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 82px clamp(22px, 5vw, 70px) 54px;
}

.footer-grid {
  display: grid;
  gap: clamp(34px, 6vw, 90px);
  grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(130px, 1fr));
}

.footer-about p {
  font-size: 16px;
  line-height: 1.55;
  margin: 18px 0 0;
  max-width: 310px;
}

.footer-column {
  display: grid;
  gap: 11px;
  align-content: start;
}

.footer-column h2 {
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  line-height: 1.2;
  margin: 0 0 6px;
}

.footer-column a {
  color: var(--muted);
  font-size: 15px;
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid var(--line);
  display: grid;
  font-size: 14px;
  gap: 22px;
  grid-template-columns: 1fr auto auto;
  margin: 46px 0 0;
  padding-top: 28px;
}

.site-footer p {
  margin: 0;
}

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

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  align-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  color: var(--ink);
  display: flex;
  font-size: 12px;
  font-weight: 760;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.doc-page .site-header {
  background: rgba(251, 250, 247, 0.94);
}

.doc-main {
  padding: 76px clamp(22px, 5vw, 70px) 96px;
}

.doc-shell {
  margin: 0 auto;
  max-width: 880px;
}

.doc-kicker {
  color: var(--muted);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.doc-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1;
  margin-bottom: 14px;
}

.doc-updated {
  color: var(--muted);
  margin-bottom: 34px;
}

.doc-card {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--soft-shadow);
  padding: clamp(26px, 5vw, 54px);
}

.doc-card section + section {
  border-top: 1px solid var(--line);
  margin-top: 28px;
  padding-top: 28px;
}

.doc-card h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.doc-card p,
.doc-card li {
  color: var(--muted);
}

.doc-card a {
  font-weight: 720;
}

.doc-card ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.contact-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 24px;
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
}

.contact-card strong {
  display: block;
  margin-bottom: 8px;
}

@media (max-width: 1180px) {
  .hero,
  .pricing-section {
    grid-template-columns: 1fr;
  }

  .hero {
    text-align: center;
  }

  .hero-copy,
  .pricing-copy {
    max-width: 680px;
    text-align: center;
  }

  .hero-copy {
    margin: 0 auto;
  }

  .pricing-copy {
    margin: 0 auto 42px;
  }

  .hero-actions,
  .social-proof {
    justify-content: center;
  }

  .phone-stage {
    margin: 0 auto;
    min-height: 570px;
    width: min(100%, 720px);
  }

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

@media (max-height: 780px) and (min-width: 900px) {
  .hero {
    padding-top: 36px;
  }

  h1 {
    font-size: clamp(50px, 4.45vw, 68px);
  }

  .lede {
    font-size: clamp(17px, 1.55vw, 21px);
  }

  .phone-stage {
    min-height: calc(100vh - 126px);
  }

  .phone-stage::before {
    height: 360px;
    width: 540px;
  }

  .phone-stage::after {
    bottom: 0;
    width: min(74%, 460px);
  }

  .phone-learn {
    left: 70px;
    top: -4px;
    width: min(42vw, 292px);
  }

  .phone-stats {
    right: 62px;
    top: 50px;
    width: min(35vw, 250px);
  }
}

@media (max-width: 760px) {
  .site-header {
    gap: 16px;
    grid-template-columns: 1fr auto;
  }

  nav {
    flex-wrap: wrap;
    font-size: 14px;
    gap: 12px 18px;
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
  }

  .nav-button {
    min-height: 44px;
    padding: 0 15px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 50px;
    padding-top: 52px;
  }

  h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .button,
  .hero-actions {
    width: 100%;
  }

  .phone-stage {
    min-height: 430px;
  }

  .phone {
    border-radius: 30px;
    padding: 6px;
  }

  .phone::before,
  .phone img {
    border-radius: 24px;
  }

  .phone-learn {
    left: 0;
    top: 0;
    width: 58%;
  }

  .phone-stats {
    right: 0;
    top: 48px;
    width: 52%;
  }

  .section {
    padding: 58px 22px;
  }

  .price-card {
    min-height: auto;
  }

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

  .site-footer {
    padding-top: 48px;
  }

  .footer-grid {
    gap: 30px;
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }
}
