:root {
  --paper: #fbf8f2;
  --ink: #211d17;
  --muted: #5c554a;
  --faint: #8a8173;
  --line: #e9e4d9;
  --line-soft: #f2eee6;
  --accent: #c4691b;
  --accent-soft: #f9ddb4;
  --frame: #1d1a16;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--paper);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  min-width: 320px;
}

a {
  color: var(--ink);
  text-decoration: none;
}

a:hover {
  color: #b4560f;
}

::selection {
  background: var(--accent-soft);
}

h1,
h2,
h3 {
  font-weight: 600;
  text-wrap: balance;
}

img,
video {
  max-width: 100%;
  height: auto;
}

/* ---- layout ---- */

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 104px 24px;
}

.section {
  border-top: 1px solid var(--line);
}

.wordmark {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* ---- hero ---- */

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 24px 120px;
  background: radial-gradient(
    820px 460px at 50% -80px,
    rgba(249, 180, 78, 0.38),
    rgba(249, 180, 78, 0.12) 45%,
    rgba(251, 248, 242, 0) 75%
  );
}

.hero-copy {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #e88a2d;
  font-weight: 600;
  margin-right: -0.32em;
}

.hero h1 {
  font-size: 68px;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 4px 0 0;
}

.lead {
  font-size: 21px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 600px;
  margin: 0;
  text-wrap: pretty;
}

.hero-scroll {
  margin-top: 48px;
  font-size: 14px;
  font-weight: 500;
  color: var(--faint);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-scroll span {
  display: inline-block;
  animation: nudge 1.8s ease-in-out infinite;
}

@keyframes nudge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

/* ---- calls to action ---- */

.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.cta-left {
  align-items: flex-start;
  margin-top: 28px;
}

.button {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 30px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 10px;
}

.button:hover {
  background: #3a3225;
  color: var(--paper);
}

.fine {
  font-size: 13px;
  color: var(--faint);
}

.fine-lg {
  font-size: 14px;
  margin-top: 14px;
}

.link {
  font-size: 15px;
  color: var(--accent);
  font-weight: 500;
}

.link-sm {
  font-size: 14px;
}

/* ---- section intros ---- */

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

.intro {
  max-width: 620px;
}

.intro-center {
  text-align: center;
  margin: 0 auto;
}

.intro h2 {
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 14px 0 16px;
}

.intro p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
  text-wrap: pretty;
}

.intro-links {
  display: flex;
  gap: 28px;
  margin-top: 24px;
}

.caption {
  font-size: 14px;
  line-height: 1.6;
  color: var(--faint);
  margin: 32px auto 0;
  max-width: 560px;
  text-align: center;
}

/* ---- the journey ---- */

.journey {
  border-top: 1px solid var(--line);
}

.journey-wrap {
  position: relative;
  padding: 120px 24px 80px;
  display: flex;
  flex-direction: column;
  gap: 160px;
}

.rail {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 47px;
  width: 1px;
  background: var(--line);
}

.rail-fill {
  width: 100%;
  height: 0;
  background: linear-gradient(
    to bottom,
    var(--accent) calc(100% - 140px),
    rgba(196, 105, 27, 0)
  );
}

.stop {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  grid-template-areas:
    '. copy'
    '. media';
  column-gap: 0;
  row-gap: 44px;
}

.stop-copy {
  grid-area: copy;
  max-width: 640px;
}

.stop h2 {
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 14px 0 18px;
}

.stop p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
  text-wrap: pretty;
}

.bullets {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bullets li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f6a63c;
}

.bullets strong {
  color: var(--ink);
  font-weight: 600;
}

.stop-media {
  grid-area: media;
  margin: 0;
  min-width: 0;
}

.frame {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow:
    0 1px 2px rgba(33, 29, 23, 0.04),
    0 24px 60px -24px rgba(33, 29, 23, 0.25);
  background: #fff;
}

.phones {
  display: flex;
  gap: 20px;
  justify-content: safe center;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 20px;
  margin: -8px -4px -20px;
  scrollbar-width: none;
}

.phones::-webkit-scrollbar {
  display: none;
}

.phone {
  display: block;
  flex: 0 0 auto;
  width: 210px;
  border: 8px solid var(--frame);
  border-radius: 38px;
  background: var(--frame);
  scroll-snap-align: start;
  box-shadow:
    0 1px 2px rgba(33, 29, 23, 0.06),
    0 30px 60px -28px rgba(33, 29, 23, 0.45);
}

.phone-lg {
  width: 300px;
  border-width: 10px;
  border-radius: 46px;
}

.stop-split {
  grid-template-columns: 64px minmax(0, 1fr) minmax(0, 360px);
  grid-template-areas: '. copy media';
  column-gap: 48px;
  align-items: center;
}

.stop-split .stop-media {
  justify-self: end;
}

/* ---- values ---- */

.values {
  background: linear-gradient(
    180deg,
    rgba(251, 248, 242, 0) 0%,
    rgba(244, 164, 96, 0.08) 100%
  );
}

.value-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.value-card {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
}

.value-card h3 {
  font-size: 24px;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}

.value-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 14px;
  text-wrap: pretty;
}

.value-card p:last-child {
  margin-bottom: 0;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 22px 0 18px;
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  box-shadow: inset 0 0 0 3px var(--paper), inset 0 0 0 4px var(--accent);
  color: var(--accent);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.3;
  background: var(--paper);
}

.badge strong {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.value-card .fine {
  margin: 0;
  line-height: 1.6;
}

/* ---- pricing ---- */

.plan {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: 0;
  margin: 56px auto 0;
  max-width: 920px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
  overflow: hidden;
}

.plan-main {
  padding: 40px 44px;
}

.plan-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.plan-name {
  font-size: 15px;
  font-weight: 600;
}

.currency {
  font-size: 13px;
  color: var(--faint);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.currency select {
  font: inherit;
  font-weight: 500;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 3px 6px;
  cursor: pointer;
}

.price {
  margin-top: 26px;
  font-size: 64px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

.price-unit {
  font-size: 20px;
  font-weight: 400;
  color: var(--faint);
  letter-spacing: 0;
}

.period {
  display: inline-flex;
  margin-top: 22px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
}

.period button {
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 14px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.period button.on {
  background: var(--ink);
  color: var(--paper);
}

.save {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #8a4a12;
}

.period button.on .save {
  background: rgba(255, 255, 255, 0.16);
  color: var(--paper);
}

.plan-features {
  list-style: none;
  margin: 0;
  padding: 40px 40px;
  border-left: 1px solid var(--line);
  background: rgba(231, 223, 208, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.plan-features li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
}

.plan-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.4l2.6 2.6L12 5.4' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 12px no-repeat;
}

/* ---- footer ---- */

footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(251, 248, 242, 0) 0%,
    rgba(244, 164, 96, 0.14) 55%,
    rgba(226, 120, 87, 0.22) 100%
  );
}

.footer-inner {
  padding: 56px 24px 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 13px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
}

/* ---- legal pages ---- */

.legal-head {
  border-bottom: 1px solid var(--line);
}

.legal-head .wrap {
  padding: 24px;
}

.prose {
  max-width: 760px;
  padding: 56px 24px 88px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}

.prose h1 {
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 24px;
}

.prose h2 {
  font-size: 24px;
  line-height: 1.3;
  color: var(--ink);
  margin: 48px 0 12px;
}

.prose h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin: 32px 0 8px;
}

.prose strong {
  color: var(--ink);
  font-weight: 600;
}

.prose a {
  color: var(--accent);
}

.prose hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 40px 0;
}

.prose ul,
.prose ol {
  padding-left: 22px;
}

.prose li {
  margin: 8px 0;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
  display: block;
  overflow-x: auto;
}

.prose th,
.prose td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

.prose th {
  color: var(--ink);
  font-weight: 600;
  background: rgba(231, 223, 208, 0.35);
}

/* ---- responsive ---- */

@media (max-width: 960px) {
  .stop-split {
    grid-template-columns: 64px minmax(0, 1fr);
    grid-template-areas:
      '. copy'
      '. media';
    column-gap: 0;
  }

  .stop-split .stop-media {
    justify-self: start;
  }

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

  .plan-features {
    border-left: none;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 860px) {
  .wrap {
    padding: 72px 24px;
  }

  .hero {
    padding: 64px 20px 88px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .lead {
    font-size: 17px;
  }

  .hero-scroll {
    margin-top: 28px;
  }

  .intro h2 {
    font-size: 30px;
  }

  .journey-wrap {
    padding: 72px 20px 48px;
    gap: 96px;
  }

  .rail {
    left: 25px;
  }

  .stop,
  .stop-split {
    grid-template-columns: 32px minmax(0, 1fr);
    row-gap: 28px;
  }

  .stop h2 {
    font-size: 30px;
  }

  .stop p {
    font-size: 16px;
  }

  .phone {
    width: 200px;
  }

  .phone-lg {
    width: 240px;
  }

  .frame {
    border-radius: 10px;
  }

  .value-card {
    padding: 28px 24px;
  }

  .plan-main,
  .plan-features {
    padding: 28px 24px;
  }

  .price {
    font-size: 48px;
  }
}
