:root {
  color-scheme: light;
  --canvas: #f5f2e9;
  --canvas-deep: #ece8dc;
  --paper: #fffdf8;
  --ink: #15251f;
  --ink-soft: #53635d;
  --forest: #173c30;
  --forest-deep: #0d2b22;
  --sage: #dfe9d5;
  --lime: #c9f27b;
  --lime-soft: #e8f8c9;
  --clay: #db7555;
  --line: rgba(21, 37, 31, 0.13);
  --line-light: rgba(255, 255, 255, 0.16);
  --shadow-sm: 0 12px 30px rgba(32, 45, 39, 0.08);
  --shadow-lg: 0 34px 80px rgba(25, 48, 39, 0.17);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 83% 4%, rgba(201, 242, 123, 0.22), transparent 29rem),
    radial-gradient(circle at 4% 45%, rgba(219, 117, 85, 0.08), transparent 25rem),
    var(--canvas);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

a {
  color: inherit;
}

[hidden] {
  display: none !important;
}

.page-shell {
  overflow: hidden;
}

.site-header,
.hero,
.value-strip,
.pricing-section,
.how-section,
.closing-section,
.site-footer {
  width: min(1240px, calc(100vw - 48px));
  margin-inline: auto;
}

.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 92px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  background: var(--forest);
  color: var(--lime);
  box-shadow: 0 10px 22px rgba(23, 60, 48, 0.18);
}

.brand-mark svg {
  width: 30px;
  height: 30px;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-size: 18px;
  letter-spacing: -0.025em;
}

.brand-copy small {
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: var(--forest);
}

.header-action {
  justify-self: end;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.header-action:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-1px);
}

.account-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.account-action svg {
  width: 17px;
  height: 17px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(480px, 1.04fr);
  align-items: center;
  gap: clamp(44px, 7vw, 94px);
  min-height: 760px;
  padding: 82px 0 92px;
}

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

.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.kicker span {
  width: 28px;
  height: 2px;
  border-radius: 99px;
  background: var(--clay);
}

.hero h1 {
  max-width: 670px;
  margin: 0;
  font-family: Iowan Old Style, Palatino Linotype, Book Antiqua, Palatino, Georgia, serif;
  font-size: clamp(50px, 6vw, 82px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.hero h1 em {
  color: var(--forest);
  font-weight: 500;
}

.hero-intro {
  max-width: 610px;
  margin: 28px 0 34px;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.65;
}

.generator-card {
  max-width: 650px;
  border: 1px solid rgba(21, 37, 31, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.9);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
}

.generator-account-strip {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 11px;
  border-bottom: 1px solid var(--line);
  margin: -2px 0 17px;
  padding: 0 2px 14px;
}

.credit-orb {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: var(--sage);
  color: var(--forest);
}

.credit-orb svg {
  width: 22px;
  height: 22px;
}

.generator-account-strip p {
  display: grid;
  gap: 2px;
  margin: 0;
  text-align: left;
}

.generator-account-strip strong {
  color: var(--forest);
  font-size: 12px;
}

.generator-account-strip p span {
  color: var(--ink-soft);
  font-size: 9px;
}

.generator-account-strip > a {
  color: var(--forest);
  font-size: 10px;
  font-weight: 850;
  text-underline-offset: 3px;
}

.generator-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 126px;
  color: var(--ink-soft);
  font-size: 12px;
}

.generator-loading span {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(23, 60, 48, 0.15);
  border-top-color: var(--forest);
  border-radius: 50%;
  animation: orbit 0.9s linear infinite;
}

.generator-loading p {
  margin: 0;
}

.generator-loading.error {
  color: #9b362e;
}

.generator-loading.error span {
  border: 0;
  animation: none;
}

.locked-generator {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px 16px;
  padding: 4px 2px 2px;
  text-align: left;
}

.locked-generator-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  background: var(--forest);
  color: var(--lime);
  box-shadow: 0 12px 24px rgba(23, 60, 48, 0.18);
}

.locked-generator-icon svg {
  width: 26px;
  height: 26px;
}

.locked-generator > div:nth-child(2) {
  min-width: 0;
}

.locked-eyebrow {
  margin: 1px 0 5px !important;
  color: var(--forest) !important;
  font-size: 9px !important;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.locked-generator h2 {
  margin: 0;
  font-family: Iowan Old Style, Palatino Linotype, Georgia, serif;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.locked-generator p {
  margin: 7px 0 0;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.55;
}

.unlock-button {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  border-radius: 14px;
  background: var(--forest);
  color: #fff;
  margin-top: 2px;
  padding: 8px 9px 8px 18px;
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 13px 26px rgba(23, 60, 48, 0.2);
}

.unlock-button svg {
  width: 37px;
  height: 37px;
  border-radius: 11px;
  background: var(--lime);
  color: var(--forest);
  padding: 9px;
}

.unlock-button:hover {
  background: var(--forest-deep);
}

.generator-card form > label {
  display: block;
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.url-control {
  position: relative;
}

.url-icon {
  position: absolute;
  top: 50%;
  left: 17px;
  width: 23px;
  height: 23px;
  color: #718078;
  transform: translateY(-50%);
  pointer-events: none;
}

.url-control input {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(21, 37, 31, 0.19);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  padding: 0 18px 0 51px;
  font-size: 15px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.url-control input::placeholder {
  color: #98a29d;
}

.url-control input:hover {
  border-color: rgba(21, 37, 31, 0.32);
}

.url-control input:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 4px rgba(23, 60, 48, 0.1);
}

.url-control input[aria-invalid="true"] {
  border-color: #b8493d;
  box-shadow: 0 0 0 4px rgba(184, 73, 61, 0.09);
}

.form-helper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 42px;
  padding: 8px 2px 5px;
}

.form-helper p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.4;
}

.voice-picker {
  min-width: 0;
  border: 0;
  margin: 4px 0 15px;
  padding: 0;
}

.voice-picker legend {
  margin: 0 0 9px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.voice-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.voice-choice {
  display: grid;
  min-width: 0;
  gap: 6px;
}

.voice-option {
  position: relative;
  display: block;
  min-width: 0;
  cursor: pointer;
}

.voice-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.voice-option-copy {
  position: relative;
  display: grid;
  min-height: 70px;
  align-content: center;
  gap: 4px;
  border: 1px solid rgba(21, 37, 31, 0.16);
  border-radius: 13px;
  background: #fff;
  padding: 11px 12px 11px 39px;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.voice-option-copy::before {
  position: absolute;
  top: 50%;
  left: 13px;
  width: 15px;
  height: 15px;
  border: 1.5px solid #85928b;
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.voice-option strong {
  color: var(--ink);
  font-size: 11px;
  line-height: 1.2;
}

.voice-option small {
  color: var(--ink-soft);
  font-size: 9px;
  line-height: 1.35;
}

.voice-option:hover .voice-option-copy {
  border-color: rgba(23, 60, 48, 0.38);
}

.voice-option input:checked + .voice-option-copy {
  border-color: var(--forest);
  background: rgba(224, 244, 201, 0.34);
  box-shadow: 0 0 0 3px rgba(23, 60, 48, 0.07);
}

.voice-option input:checked + .voice-option-copy::before {
  border-color: var(--forest);
  background: var(--forest);
  box-shadow: inset 0 0 0 3.5px #fff;
}

.voice-option input:focus-visible + .voice-option-copy {
  outline: 3px solid rgba(23, 60, 48, 0.2);
  outline-offset: 2px;
}

.voice-option input:disabled + .voice-option-copy {
  cursor: progress;
  opacity: 0.7;
}

.voice-sample {
  position: relative;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  align-items: center;
  width: 100%;
  min-height: 38px;
  overflow: hidden;
  gap: 8px;
  border: 1px solid rgba(21, 37, 31, 0.12);
  border-radius: 11px;
  background: rgba(246, 248, 246, 0.9);
  color: var(--forest);
  padding: 6px 9px;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.voice-sample::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--forest);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
}

.voice-sample:hover {
  border-color: rgba(23, 60, 48, 0.32);
  background: #fff;
  transform: translateY(-1px);
}

.voice-sample:focus-visible {
  outline: 3px solid rgba(23, 60, 48, 0.2);
  outline-offset: 2px;
}

.voice-sample.is-playing {
  border-color: rgba(23, 60, 48, 0.34);
  background: rgba(224, 244, 201, 0.34);
}

.voice-sample.is-playing::after {
  animation: voice-sample-progress 4s linear forwards;
}

.voice-sample-icon {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
}

.voice-sample-icon svg {
  width: 15px;
  height: 15px;
}

.voice-sample-pause-icon,
.voice-sample.is-playing .voice-sample-play-icon {
  display: none;
}

.voice-sample.is-playing .voice-sample-pause-icon {
  display: block;
}

.voice-sample-action {
  min-width: 0;
  overflow: hidden;
  font-size: 9px;
  font-weight: 800;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.voice-sample-duration {
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 700;
}

@keyframes voice-sample-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@media (prefers-reduced-motion: reduce) {
  .voice-sample.is-playing::after {
    animation: none;
    transform: scaleX(1);
  }
}

.voice-note {
  margin: 8px 2px 0;
  color: var(--ink-soft);
  font-size: 9px;
  line-height: 1.4;
}

.text-button {
  flex: 0 0 auto;
  background: transparent;
  color: var(--forest);
  padding: 5px 0;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: rgba(23, 60, 48, 0.3);
  text-underline-offset: 3px;
}

.generate-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 58px;
  border-radius: 14px;
  background: var(--forest);
  color: #fff;
  padding: 0 14px 0 20px;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(23, 60, 48, 0.22);
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.generate-button svg {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--lime);
  color: var(--forest-deep);
  padding: 8px;
}

.generate-button:hover {
  background: var(--forest-deep);
  box-shadow: 0 17px 34px rgba(23, 60, 48, 0.27);
  transform: translateY(-1px);
}

.generate-button:active {
  transform: translateY(0);
}

.generate-button:disabled {
  cursor: progress;
  opacity: 0.82;
  transform: none;
}

.form-message {
  min-height: 18px;
  margin: 9px 2px -2px;
  color: #9b362e;
  font-size: 12px;
  line-height: 1.4;
}

.form-message:empty {
  min-height: 0;
  margin: 0;
}

.form-message.success {
  color: var(--forest);
}

.assurance-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  border-top: 1px solid var(--line);
  margin-top: 17px;
  padding: 15px 2px 1px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
}

.assurance-list span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.assurance-list i {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  color: var(--forest);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.tour-column {
  position: relative;
}

.tour-column::before {
  content: "";
  position: absolute;
  top: -48px;
  right: -68px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: var(--lime);
  opacity: 0.58;
  filter: blur(1px);
}

.tour-column::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: 46px;
  width: 124px;
  height: 124px;
  border: 1px solid rgba(23, 60, 48, 0.16);
  border-radius: 31px;
  transform: rotate(14deg);
}

.tour-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  background: var(--forest-deep);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.tour-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 750;
}

.tour-card-head > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(201, 242, 123, 0.12);
}

.duration-pill {
  border: 1px solid var(--line-light);
  border-radius: 999px;
  padding: 6px 9px;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.media-stage {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0a1712;
}

.media-stage video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #0a1712;
}

.generation-stage {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 20%, rgba(201, 242, 123, 0.15), transparent 48%),
    linear-gradient(145deg, #0f3025, #081d17);
  padding: clamp(20px, 4vw, 38px);
  text-align: center;
}

.generation-orbit {
  position: relative;
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  margin-bottom: 16px;
  border: 1px solid rgba(201, 242, 123, 0.24);
  border-radius: 50%;
  color: var(--lime);
}

.generation-orbit span {
  position: absolute;
  inset: -5px;
  border: 2px solid transparent;
  border-top-color: var(--lime);
  border-radius: 50%;
  animation: orbit 1.2s linear infinite;
}

.generation-orbit svg {
  width: 38px;
  height: 38px;
}

.generation-eyebrow {
  margin: 0 0 6px;
  color: var(--lime);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.generation-stage h2 {
  margin: 0;
  font-family: Iowan Old Style, Palatino Linotype, Georgia, serif;
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 500;
}

.generation-stage > p:not(.generation-eyebrow) {
  max-width: 390px;
  margin: 8px 0 18px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.5;
}

.progress-track {
  overflow: hidden;
  width: min(390px, 88%);
  height: 5px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.1);
}

.progress-track span {
  display: block;
  width: 8%;
  height: 100%;
  border-radius: inherit;
  background: var(--lime);
  transition: width 500ms ease;
}

.generation-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: min(440px, 100%);
  gap: 6px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.generation-steps li {
  position: relative;
  color: rgba(255, 255, 255, 0.34);
  font-size: 9px;
  font-weight: 750;
  line-height: 1.2;
}

.generation-steps li::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  margin: 0 auto 6px;
}

.generation-steps li.active,
.generation-steps li.complete {
  color: rgba(255, 255, 255, 0.82);
}

.generation-steps li.active::before {
  border-color: var(--lime);
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(201, 242, 123, 0.12);
}

.generation-steps li.complete::before {
  border-color: rgba(201, 242, 123, 0.7);
  background: rgba(201, 242, 123, 0.7);
}

.tour-details {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px 17px;
}

.tour-location {
  margin: 0 0 5px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tour-details h2 {
  margin: 0;
  font-family: Iowan Old Style, Palatino Linotype, Georgia, serif;
  font-size: clamp(22px, 2.2vw, 29px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.tour-price {
  flex: 0 0 auto;
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 750;
}

.tour-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line-light);
  padding: 16px 24px 21px;
}

.fact-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 17px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 11px;
  text-transform: uppercase;
}

.fact-list span {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}

.fact-list strong {
  color: #fff;
  font-size: 15px;
}

.tour-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.download-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
}

.download-link svg {
  width: 18px;
  height: 18px;
}

.download-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.review-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 54px;
  border-radius: 15px;
  background: var(--lime);
  color: var(--forest-deep);
  padding: 8px 9px 8px 16px;
  text-decoration: none;
  box-shadow: 0 13px 28px rgba(2, 14, 10, 0.24);
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.review-link-copy {
  display: grid;
  gap: 1px;
}

.review-link small {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.09em;
  opacity: 0.68;
  text-transform: uppercase;
}

.review-link strong {
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.review-link > svg {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: var(--forest-deep);
  color: var(--lime);
  padding: 8px;
}

.review-link:hover {
  background: #d8ff8b;
  box-shadow: 0 16px 32px rgba(2, 14, 10, 0.3);
  transform: translateY(-2px);
}

.review-link[data-state="processing"] {
  background: #fff;
}

.review-link[data-state="complete"] {
  background: var(--sage);
}

.preview-note {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  max-width: 470px;
  margin: 17px auto 0;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.4;
  text-align: center;
}

.preview-note svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  color: var(--forest);
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.value-strip article {
  display: grid;
  gap: 5px;
  padding: 30px clamp(20px, 4vw, 52px);
}

.value-strip article + article {
  border-left: 1px solid var(--line);
}

.value-strip strong {
  color: var(--forest);
  font-family: Iowan Old Style, Palatino Linotype, Georgia, serif;
  font-size: 21px;
  font-weight: 600;
}

.value-strip span {
  color: var(--ink-soft);
  font-size: 13px;
}

.pricing-section {
  padding: 128px 0 132px;
}

.pricing-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.48fr);
  align-items: end;
  gap: clamp(40px, 7vw, 90px);
  margin-bottom: 50px;
}

.pricing-heading h2 {
  max-width: 780px;
  margin: 0;
  font-family: Iowan Old Style, Palatino Linotype, Georgia, serif;
  font-size: clamp(39px, 4.6vw, 62px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.payfast-note {
  display: grid;
  grid-template-columns: 43px 1fr;
  align-items: center;
  gap: 13px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 253, 248, 0.72);
  padding: 14px;
}

.payfast-note > span {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 13px;
  background: var(--sage);
  color: var(--forest);
}

.payfast-note svg {
  width: 24px;
  height: 24px;
}

.payfast-note p {
  display: grid;
  gap: 3px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.45;
}

.payfast-note strong {
  color: var(--ink);
  font-size: 11px;
}

.free-video-offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(28px, 6vw, 78px);
  overflow: hidden;
  border: 1px solid rgba(23, 60, 48, 0.16);
  border-radius: 26px;
  background:
    radial-gradient(circle at 92% 18%, rgba(201, 242, 123, 0.5), transparent 15rem),
    linear-gradient(135deg, rgba(223, 233, 213, 0.96), rgba(255, 253, 248, 0.94));
  margin-bottom: 16px;
  padding: clamp(26px, 4vw, 42px);
  box-shadow: var(--shadow-sm);
}

.free-offer-pill {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: var(--forest);
  color: var(--lime);
  padding: 7px 11px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.free-video-offer h3 {
  margin: 14px 0 8px;
  color: var(--forest-deep);
  font-family: Iowan Old Style, Palatino Linotype, Georgia, serif;
  font-size: clamp(29px, 3vw, 41px);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.free-video-offer > div:first-child > p {
  max-width: 690px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.65;
}

.free-offer-action {
  display: grid;
  min-width: 230px;
  justify-items: end;
  gap: 13px;
}

.free-offer-action > p {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin: 0;
}

.free-offer-action > p strong {
  color: var(--forest-deep);
  font-family: Iowan Old Style, Palatino Linotype, Georgia, serif;
  font-size: 43px;
  line-height: 1;
}

.free-offer-action > p span {
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
}

.free-offer-action a {
  display: inline-flex;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border-radius: 999px;
  background: var(--forest-deep);
  color: #fff;
  padding: 0 19px;
  font-size: 10px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.free-offer-action a:hover {
  box-shadow: 0 14px 28px rgba(2, 14, 10, 0.2);
  transform: translateY(-2px);
}

.free-offer-action svg {
  width: 17px;
  height: 17px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 16px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 510px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 253, 248, 0.82);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.price-card:hover {
  border-color: rgba(23, 60, 48, 0.34);
  box-shadow: 0 24px 55px rgba(25, 48, 39, 0.13);
  transform: translateY(-4px);
}

.price-card.featured {
  border-color: rgba(201, 242, 123, 0.6);
  background:
    radial-gradient(circle at 92% 7%, rgba(201, 242, 123, 0.17), transparent 13rem),
    var(--forest-deep);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.popular-pill {
  position: absolute;
  top: 23px;
  right: 23px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--forest-deep);
  padding: 7px 10px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card-top {
  min-height: 112px;
}

.pack-count {
  color: rgba(21, 37, 31, 0.17);
  font-family: Iowan Old Style, Palatino Linotype, Georgia, serif;
  font-size: 34px;
  font-weight: 600;
}

.featured .pack-count {
  color: rgba(255, 255, 255, 0.18);
}

.price-card-top p {
  margin: 10px 0 3px;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.featured .price-card-top p {
  color: var(--lime);
}

.price-card h3 {
  margin: 0;
  font-family: Iowan Old Style, Palatino Linotype, Georgia, serif;
  font-size: 31px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.pack-price {
  display: flex;
  align-items: baseline;
  gap: 9px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0 20px;
}

.featured .pack-price {
  border-color: var(--line-light);
}

.pack-price strong {
  color: var(--forest);
  font-family: Iowan Old Style, Palatino Linotype, Georgia, serif;
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.featured .pack-price strong {
  color: #fff;
}

.pack-price span {
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.featured .pack-price span {
  color: rgba(255, 255, 255, 0.48);
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 27px;
  padding: 0;
  color: var(--ink-soft);
  font-size: 11px;
  list-style: none;
}

.featured ul {
  color: rgba(255, 255, 255, 0.65);
}

.price-card li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.price-card li span {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  color: var(--forest);
  font-size: 9px;
  font-weight: 900;
}

.featured li span {
  background: rgba(201, 242, 123, 0.14);
  color: var(--lime);
}

.pack-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  border-radius: 15px;
  background: var(--forest);
  color: #fff;
  margin-top: auto;
  padding: 8px 9px 8px 18px;
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
}

.featured .pack-action {
  background: var(--lime);
  color: var(--forest-deep);
}

.pack-action svg {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--lime);
  color: var(--forest-deep);
  padding: 9px;
  transition: transform 160ms ease;
}

.featured .pack-action svg {
  background: var(--forest-deep);
  color: var(--lime);
}

.pack-action:hover svg {
  transform: translateX(2px);
}

.unit-price {
  min-height: 15px;
  margin: 11px 0 -3px;
  color: var(--ink-soft);
  font-size: 9px;
  text-align: center;
}

.featured .unit-price {
  color: rgba(255, 255, 255, 0.52);
}

.unit-price strong {
  color: var(--forest);
}

.featured .unit-price strong {
  color: var(--lime);
}

.pricing-footnote {
  max-width: 680px;
  margin: 22px auto 0;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.how-section {
  padding: 130px 0 136px;
}

.how-heading {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  column-gap: 70px;
  align-items: end;
  margin-bottom: 54px;
}

.how-heading .kicker {
  grid-column: 1 / -1;
}

.how-heading h2 {
  max-width: 720px;
  margin: 0;
  font-family: Iowan Old Style, Palatino Linotype, Georgia, serif;
  font-size: clamp(39px, 4.5vw, 62px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.how-heading > p:last-child {
  margin: 0 0 5px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.steps-grid article {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.7);
  padding: 29px;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.steps-grid article:hover {
  border-color: rgba(23, 60, 48, 0.3);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.step-number {
  position: absolute;
  top: 21px;
  right: 24px;
  color: rgba(21, 37, 31, 0.16);
  font-family: Iowan Old Style, Palatino Linotype, Georgia, serif;
  font-size: 32px;
}

.step-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 17px;
  background: var(--sage);
  color: var(--forest);
}

.step-icon svg {
  width: 28px;
  height: 28px;
}

.steps-grid h3 {
  margin: 46px 0 10px;
  font-family: Iowan Old Style, Palatino Linotype, Georgia, serif;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.steps-grid p {
  max-width: 310px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.closing-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 82% 30%, rgba(201, 242, 123, 0.16), transparent 20rem),
    var(--forest-deep);
  color: #fff;
  padding: clamp(42px, 6vw, 76px);
}

.closing-section::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -115px;
  width: 290px;
  height: 290px;
  border: 1px solid rgba(201, 242, 123, 0.25);
  border-radius: 50%;
}

.kicker.light {
  color: var(--lime);
}

.closing-section h2 {
  max-width: 700px;
  margin: 0;
  font-family: Iowan Old Style, Palatino Linotype, Georgia, serif;
  font-size: clamp(36px, 4.2vw, 58px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.closing-action {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--lime);
  color: var(--forest-deep);
  padding: 17px 24px;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.closing-action:hover {
  background: #d6ff87;
  transform: translateY(-2px);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 150px;
  color: var(--ink-soft);
  font-size: 11px;
}

.site-footer p {
  margin: 0;
}

.site-footer p:last-child {
  justify-self: end;
  text-align: right;
}

.footer-brand .brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 11px;
}

.footer-brand .brand-mark svg {
  width: 26px;
  height: 26px;
}

.footer-brand .brand-copy strong {
  font-size: 15px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(219, 117, 85, 0.45);
  outline-offset: 3px;
}

@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1040px) {
  .free-video-offer {
    grid-template-columns: 1fr;
  }

  .free-offer-action {
    min-width: 0;
    grid-template-columns: auto 1fr;
    align-items: center;
    justify-items: start;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 66px;
    max-width: 800px;
    padding-top: 70px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .kicker,
  .hero-intro,
  .generator-card {
    margin-inline: auto;
  }

  .tour-column {
    width: min(680px, 100%);
    margin-inline: auto;
  }

  .how-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .how-heading > p:last-child {
    max-width: 600px;
  }

  .pricing-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .payfast-note {
    max-width: 430px;
  }
}

@media (max-width: 760px) {
  .site-header,
  .hero,
  .value-strip,
  .pricing-section,
  .how-section,
  .closing-section,
  .site-footer {
    width: min(100% - 30px, 680px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 78px;
  }

  .site-nav {
    display: none;
  }

  .brand-copy small {
    display: none;
  }

  .header-action {
    padding: 9px 14px;
    font-size: 12px;
  }

  .account-action svg {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 58px 0 72px;
  }

  .hero h1 {
    font-size: clamp(45px, 14vw, 67px);
  }

  .hero-intro {
    font-size: 16px;
  }

  .generator-card {
    padding: 14px;
  }

  .form-helper {
    align-items: flex-start;
  }

  .assurance-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .tour-details,
  .tour-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .tour-actions {
    width: 100%;
    justify-content: space-between;
  }

  .tour-price {
    margin: 0;
  }

  .generation-steps {
    display: none;
  }

  .value-strip {
    grid-template-columns: 1fr;
  }

  .value-strip article {
    padding: 22px 3px;
  }

  .value-strip article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .pricing-section {
    padding: 94px 0 98px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }

  .price-card {
    min-height: 480px;
  }

  .how-section {
    padding: 94px 0;
  }

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

  .steps-grid article {
    min-height: 250px;
  }

  .closing-section {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 13px;
    padding: 38px 0;
  }

  .site-footer p:last-child {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .free-offer-action {
    grid-template-columns: 1fr;
  }

  .free-offer-action a {
    width: 100%;
  }

  .voice-options {
    grid-template-columns: 1fr;
  }

  .voice-option-copy {
    min-height: 62px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .header-action {
    border-color: var(--line);
  }

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

  .hero-intro {
    margin-top: 22px;
  }

  .url-control input {
    font-size: 13px;
  }

  .generator-account-strip {
    grid-template-columns: auto 1fr;
  }

  .generator-account-strip > a {
    grid-column: 2;
    justify-self: start;
  }

  .locked-generator {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .locked-generator-icon {
    margin-inline: auto;
  }

  .locked-generator > div:nth-child(2) {
    text-align: center;
  }

  .tour-card,
  .closing-section {
    border-radius: 22px;
  }

  .tour-card-head {
    padding: 0 15px;
  }

  .tour-details,
  .tour-footer {
    padding-right: 18px;
    padding-left: 18px;
  }

  .tour-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .download-link {
    align-self: center;
  }

  .review-link {
    justify-content: space-between;
    width: 100%;
  }

  .preview-note {
    align-items: flex-start;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
