@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  --bg: #f6f4ef;
  --surface: #ffffff;
  --surface-soft: #fcfaf6;
  --line: #e8dcc8;
  --line-strong: #d9c7ae;

  --text: #1e2228;
  --text-soft: #59606a;
  --text-muted: #7e8794;

  --brand: #ff7f20;
  --brand-2: #ff9d3d;
  --brand-ink: #2a1606;

  --green: #1b9a52;
  --green-soft: #ecf7ee;
  --danger: #d34a35;
  --danger-soft: #fff2ef;

  --radius-xl: 22px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --shadow-card: 0 14px 30px rgba(18, 24, 38, 0.06);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background: radial-gradient(circle at 100% 0%, rgba(255, 127, 32, 0.08), transparent 42%), #f7f5f0;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.page-shell {
  width: min(1240px, 94vw);
  margin: 0 auto;
  padding: 0 0 40px;
}

.nav {
  margin: 0 -3vw;
  padding: 18px 3vw;
  border-bottom: 1px solid #ece3d4;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.brand-chip {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: var(--brand-ink);
  display: grid;
  place-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
}

.brand-name {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
}

.brand-sub {
  color: var(--brand);
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.secure-pill {
  color: #4e5a69;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  padding-right: 22px;
  border-right: 1px solid #ece1d1;
}

.secure-pill .stripe {
  color: #635bff;
  font-weight: 800;
}

.nav-link {
  color: #f07b1d;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
}

.section {
  margin-top: 16px;
}

.hero {
  margin-top: 20px;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #fffefc, #faf7f2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  padding: 38px;
}

.hero-top {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 20px;
  align-items: center;
}

.hero h1 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
}

.hero p {
  margin: 12px 0 0;
  color: #4f5863;
  font-size: 1.05rem;
}

.hero-art {
  min-height: 140px;
  border-radius: 18px;
  position: relative;
  background: radial-gradient(circle at 80% 30%, rgba(255, 186, 120, 0.5), transparent 45%);
}

.ticket {
  position: absolute;
  right: 24px;
  top: 34px;
  width: 190px;
  height: 95px;
  border-radius: 14px;
  transform: rotate(-14deg);
  background: linear-gradient(135deg, var(--brand), #ffb55d);
  box-shadow: 0 18px 28px rgba(221, 113, 24, 0.3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.ticket::before,
.ticket::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 22px;
  height: 22px;
  margin-top: -11px;
  border-radius: 50%;
  background: #fbf6ef;
}

.ticket::before {
  left: -11px;
}

.ticket::after {
  right: -11px;
}

.feature-list {
  margin-top: 22px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-pill {
  border: 1px solid #e6dbc9;
  border-radius: 14px;
  background: #fff;
  padding: 10px 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.feature-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #e9f7ee;
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  flex: 0 0 auto;
}

.feature-pill strong {
  display: block;
  font-size: 0.95rem;
}

.feature-pill span {
  display: block;
  margin-top: 2px;
  color: var(--text-soft);
  font-size: 0.85rem;
  line-height: 1.35;
}

.checkout-grid {
  margin-top: 18px;
  display: grid;
  gap: 16px;
  grid-template-columns: 1.85fr 0.95fr;
}

.panel {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-card);
  padding: 26px;
}

.section-title {
  margin: 0 0 16px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.22rem;
}

.step-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.step-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  font-weight: 800;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
}

.step-title h3 {
  margin: 0;
  font-size: 2rem;
  font-family: "Space Grotesk", sans-serif;
}

.sub-title {
  margin: 12px 0 10px;
  color: #2b323a;
  font-weight: 700;
}

.plan-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.plan-card {
  border: 1px solid #e7dac8;
  border-radius: 14px;
  background: #fff;
  padding: 14px 12px 12px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.plan-card:hover {
  transform: translateY(-2px);
  border-color: #ebb17e;
}

.plan-card.active {
  border: 2px solid var(--brand);
  padding: 13px 11px 11px;
  box-shadow: 0 10px 16px rgba(255, 127, 32, 0.13);
}

.plan-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin: 0 auto 10px;
  background: #fff3e7;
  color: #ea7a21;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
}

.plan-card h4 {
  margin: 0;
  font-size: 1.65rem;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.15;
}

.plan-price {
  margin-top: 9px;
  color: var(--brand);
  font-weight: 800;
  font-size: 2rem;
}

.plan-desc {
  margin-top: 8px;
  min-height: 34px;
  color: #6a7380;
  font-size: 1.2rem;
  line-height: 1.28;
}

.plan-save {
  margin: 8px auto 0;
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 999px;
  background: #e9f7ee;
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 700;
}

.plan-radio {
  width: 20px;
  height: 20px;
  margin: 10px auto 0;
  border-radius: 50%;
  border: 1px solid #cfc5b8;
  display: grid;
  place-items: center;
}

.plan-card.active .plan-radio {
  border-color: var(--brand);
}

.plan-card.active .plan-radio::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
}

.bulk-note {
  margin-top: 12px;
  border: 1px solid #dcefdc;
  border-radius: 10px;
  background: #f3fbf3;
  color: #277f43;
  padding: 10px 12px;
  font-size: 0.96rem;
  font-weight: 600;
}

.qty-row {
  margin-top: 14px;
  display: flex;
  gap: 14px;
  align-items: flex-end;
  justify-content: space-between;
}

.qty-block {
  width: 230px;
}

label {
  display: block;
  font-size: 0.96rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #2d343d;
}

.qty-picker {
  display: grid;
  grid-template-columns: 46px 1fr 46px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.qty-btn {
  border: 0;
  border-right: 1px solid #eadfce;
  background: #f9f6f1;
  color: #4c5563;
  font-size: 1.25rem;
  cursor: pointer;
}

.qty-picker .qty-btn:last-child {
  border-right: 0;
  border-left: 1px solid #eadfce;
}

.qty-input {
  border: 0;
  text-align: center;
  font-size: 1.02rem;
  font-weight: 700;
  color: #222a32;
}

.discount-pill {
  min-width: 250px;
  border: 1px solid #dcefdc;
  border-radius: 11px;
  background: #f3fbf3;
  padding: 10px 12px;
  color: #1e7f44;
}

.discount-pill strong {
  display: block;
  font-size: 0.96rem;
}

.discount-pill span {
  display: block;
  margin-top: 3px;
  font-size: 0.88rem;
}

.divider {
  border: 0;
  border-top: 1px solid #ece2d3;
  margin: 18px 0;
}

.form-row {
  margin-bottom: 12px;
}

.input-with-icon {
  position: relative;
}

.input-with-icon input,
.input-with-icon select {
  padding-left: 42px;
}

.field-icon {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: #5e6672;
  font-size: 0.82rem;
  line-height: 1;
  pointer-events: none;
}

.field-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.payment-input input,
.payment-input select {
  padding-left: 52px;
}

.payment-field-icon {
  width: 24px;
  height: 24px;
  left: 14px;
  border-radius: 8px;
  border: 1px solid #eedcc7;
  background: linear-gradient(145deg, #fffdf8, #f7efe4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 1px 2px rgba(74, 59, 42, 0.08);
  color: #7b808c;
}

.payment-field-icon svg {
  width: 15px;
  height: 15px;
}

.payment-icon-user {
  color: #5b6575;
}

.payment-icon-card {
  color: #5f6c80;
}

.payment-icon-calendar {
  color: #576c86;
}

.payment-icon-lock {
  color: #5c6370;
}

.payment-icon-location {
  color: #6c6a7a;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: #fff;
  color: #242b33;
  font-size: 1rem;
  padding: 12px 14px;
  font-family: inherit;
}

input:focus,
select:focus,
textarea:focus,
.qty-input:focus {
  outline: 2px solid rgba(255, 127, 32, 0.25);
  border-color: rgba(255, 127, 32, 0.8);
}

.helper {
  margin: 7px 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.card-inline-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stripe-card-element {
  width: 100%;
  min-height: 48px;
  padding: 12px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: #fff;
}

.stripe-field-wrap {
  position: relative;
}

.stripe-card-element.stripe-has-leading {
  padding-left: 46px;
}

.stripe-card-element.stripe-has-trailing {
  padding-right: 134px;
}

.stripe-card-element.stripe-has-cvc-hint {
  padding-right: 34px;
}

.stripe-field-wrap .field-icon {
  z-index: 2;
}

.payment-stripe-field .payment-field-icon {
  top: 24px;
}

.payment-stripe-element {
  background: linear-gradient(180deg, #ffffff, #fffdf9);
}

.cvc-help {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border: 1px solid #cdc2b4;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #7a7063;
  font-size: 0.7rem;
  font-weight: 700;
  background: #fff;
  pointer-events: none;
  z-index: 2;
}

.payment-stripe-field .cvc-help {
  border-color: #dccab3;
  background: linear-gradient(145deg, #fffdf8, #f8f0e5);
  color: #765d40;
  box-shadow: 0 1px 2px rgba(74, 59, 42, 0.12);
}

.card-logos {
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-logos-compact {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 2;
}

.payment-stripe-field .card-logos-compact {
  gap: 5px;
}

.card-logo {
  height: 20px;
  min-width: 34px;
  border-radius: 5px;
  border: 1px solid #dfd3c2;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  font-size: 0.61rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #253245;
}

.payment-stripe-field .card-logo {
  border-radius: 6px;
  border-color: #d9cbb9;
  box-shadow: 0 1px 2px rgba(55, 43, 29, 0.12);
  min-width: 38px;
}

.card-logo-visa {
  color: #1846b7;
}

.payment-stripe-field .card-logo-visa {
  background: linear-gradient(145deg, #ffffff, #f1f6ff);
}

.card-logo-amex {
  background: #0b8fd9;
  border-color: #0879b8;
  color: #fff;
}

.payment-stripe-field .card-logo-amex {
  background: linear-gradient(145deg, #22a9f0, #0a7fcb);
}

.card-logo-discover {
  position: relative;
  color: #3a404a;
}

.card-logo-discover::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff9b3f;
  margin-right: 4px;
}

.payment-stripe-field .card-logo-discover {
  background: linear-gradient(145deg, #ffffff, #fff7ec);
}

.card-logo-mc {
  min-width: 28px;
  width: 28px;
  padding: 0;
  gap: 0;
  position: relative;
}

.card-logo-mc .mc-left,
.card-logo-mc .mc-right {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 0.96;
}

.payment-stripe-field .card-logo-mc {
  min-width: 32px;
  width: 32px;
  background: linear-gradient(145deg, #ffffff, #fff7ef);
}

.card-logo-mc .mc-left {
  background: #ef4538;
  margin-right: -4px;
}

.card-logo-mc .mc-right {
  background: #f6b126;
}

.stripe-card-element iframe {
  width: 100% !important;
  min-height: 24px !important;
}

.stripe-card-element.StripeElement--focus {
  outline: 2px solid rgba(255, 127, 32, 0.25);
  border-color: rgba(255, 127, 32, 0.8);
}

.stripe-card-element.StripeElement--invalid {
  border-color: #dc6b5c;
}

.actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.button,
button {
  appearance: none;
  border: 0;
  border-radius: 12px;
  padding: 12px 16px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  cursor: pointer;
}

.button-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: #fff;
  color: #38414a;
}

.button-ghost {
  border: 1px solid var(--line-strong);
  background: #f9f6f1;
  color: #54606d;
}

.button[disabled],
button[disabled] {
  opacity: 0.62;
  cursor: not-allowed;
}

.pay-cta {
  width: 100%;
  margin-top: 10px;
  border-radius: 10px;
  font-size: 1.25rem;
  padding: 14px 18px;
}

.msg {
  margin-top: 12px;
  border-radius: 10px;
  padding: 11px 12px;
  font-size: 0.92rem;
  line-height: 1.4;
  display: none;
}

.msg.ok {
  display: block;
  background: var(--green-soft);
  border: 1px solid #cbe9d1;
  color: #1d7e42;
}

.msg.error {
  display: block;
  background: var(--danger-soft);
  border: 1px solid #f0c6bf;
  color: #8a2f24;
}

.summary-card {
  position: sticky;
  top: 16px;
}

.summary-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.summary-head-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #fff1e5;
  color: #eb7a1d;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
}

.summary-head h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
}

.kv {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 1rem;
  color: var(--text-soft);
  padding: 8px 0;
}

.kv strong {
  color: var(--text);
}

.kv.positive span,
.kv.positive strong {
  color: var(--green);
  font-weight: 700;
}

.total {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid #eadfce;
}

.total strong {
  font-size: 1.9rem;
  color: var(--brand);
  font-family: "Space Grotesk", sans-serif;
}

.info-box {
  margin-top: 14px;
  border: 1px solid #f0dfc9;
  border-radius: 12px;
  background: #fff8ef;
  padding: 12px;
}

.info-box strong {
  display: block;
  margin-bottom: 3px;
}

.info-box p {
  margin: 0;
  color: #7a6858;
  font-size: 0.92rem;
  line-height: 1.35;
}

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

.check-list li {
  position: relative;
  padding-left: 27px;
  margin-bottom: 10px;
  font-size: 0.96rem;
  color: #39424c;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #e8f5eb;
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
}

.summary-foot {
  margin-top: 18px;
  border-top: 1px solid #ece2d4;
  padding-top: 12px;
  color: #5f6975;
  font-weight: 600;
  font-size: 0.92rem;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  border: 1px solid #d6ead8;
  background: #eef8ef;
  color: #1f8544;
  padding: 6px 10px;
  font-size: 0.8rem;
  font-weight: 700;
}

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

.list li {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  background: #fff;
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.steps {
  margin: 0;
  padding-left: 20px;
  color: #525d69;
}

.steps li {
  margin-bottom: 8px;
}

.faq {
  border-top: 1px solid #ece3d5;
}

.faq-item {
  margin-bottom: 12px;
}

.faq-item h4 {
  margin: 0 0 6px;
}

.faq-item p {
  margin: 0;
  color: #5a6570;
}

.footer-note {
  margin-top: 14px;
  color: #68727e;
  font-size: 0.9rem;
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.checkout-footer {
  margin: 26px -3vw 0;
  background: linear-gradient(120deg, #071423, #0c2039 60%, #0e2746);
  color: #d8e3ef;
  padding: 24px 3vw 20px;
}

.footer-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
}

.footer-brand-chip {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  display: grid;
  place-items: center;
}

.footer-col h5 {
  margin: 0 0 10px;
  font-size: 1rem;
  font-family: "Space Grotesk", sans-serif;
}

.footer-col p,
.footer-col a {
  margin: 0 0 8px;
  display: block;
  color: #a9bfd7;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: #eaf3ff;
}

.mini-icons {
  display: flex;
  gap: 6px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.card-pill {
  background: #fff;
  color: #1f2d3f;
  border-radius: 6px;
  padding: 4px 7px;
  font-size: 0.75rem;
  font-weight: 700;
}

.checkout-footer .card-logos .card-logo {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.95);
}

.checkout-footer .card-logos .card-logo-amex {
  background: linear-gradient(145deg, #22a9f0, #0a7fcb);
  border-color: #0879b8;
  color: #fff;
}

.footer-copy {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #9cb2cb;
  font-size: 0.85rem;
  text-align: center;
}

.landing-shell {
  padding-bottom: 56px;
}

.landing-hero {
  padding: 36px;
  border-radius: var(--radius-xl);
  border: 1px solid #e7dccd;
  background: radial-gradient(circle at 98% 8%, rgba(255, 161, 79, 0.22), transparent 40%),
    linear-gradient(145deg, #fffcf8, #f9f4ea);
  box-shadow: var(--shadow-card);
}

.landing-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 24px;
  align-items: center;
}

.landing-eyebrow {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #e8d5bf;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #8a5b2d;
  background: #fff8ef;
}

.landing-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff8b2c;
}

.landing-hero h1 {
  margin: 14px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4.8vw, 3.4rem);
  line-height: 1.08;
}

.landing-copy {
  margin: 14px 0 0;
  max-width: 62ch;
  color: #505b67;
  font-size: 1.04rem;
  line-height: 1.52;
}

.landing-cta-row {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.landing-primary-cta {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.landing-trust-row {
  margin-top: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.landing-trust-row span {
  border: 1px solid #e8dccb;
  background: #fff;
  color: #4b5562;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.82rem;
  font-weight: 700;
}

.landing-highlight {
  border: 1px solid #eadac4;
  border-radius: 18px;
  background: #fff;
  padding: 16px;
}

.landing-highlight h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
}

.landing-rate-grid {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.landing-rate-card {
  border: 1px solid #eee3d4;
  border-radius: 12px;
  background: #fffcf8;
  padding: 10px;
}

.landing-rate-card strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.98rem;
  display: block;
}

.landing-rate-card span {
  margin-top: 4px;
  color: #2f3742;
  font-weight: 800;
  display: block;
}

.landing-rate-card em {
  margin-top: 4px;
  display: inline-flex;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
  color: #1e8651;
  background: #eaf8ef;
  border: 1px solid #c9e8d2;
  border-radius: 999px;
  padding: 4px 8px;
}

.landing-rate-card.is-featured {
  border-color: #ecb17a;
  background: linear-gradient(145deg, #fff8ef, #fff2df);
}

.landing-stats {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.landing-stat {
  border: 1px solid #eadfce;
  border-radius: 14px;
  background: #fff;
  padding: 14px;
}

.landing-stat strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.landing-stat span {
  margin-top: 6px;
  display: block;
  color: #657080;
  font-size: 0.9rem;
  line-height: 1.42;
}

.landing-flow {
  margin-top: 18px;
}

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

.landing-flow-card {
  border: 1px solid #ebdfd0;
  border-radius: 14px;
  background: #fffdf9;
  padding: 14px;
}

.landing-flow-step {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.86rem;
  font-weight: 800;
}

.landing-flow-card h3 {
  margin: 10px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
}

.landing-flow-card p {
  margin: 8px 0 0;
  color: #5b6775;
  font-size: 0.92rem;
  line-height: 1.42;
}

.landing-cta-band {
  margin-top: 18px;
  border-radius: var(--radius-xl);
  border: 1px solid #ebddcc;
  background: linear-gradient(130deg, #fff9f1, #fefcf8);
  box-shadow: var(--shadow-card);
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.landing-cta-band h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.landing-cta-band p {
  margin: 8px 0 0;
  color: #5b6674;
}

@media (max-width: 1080px) {
  .landing-hero-grid,
  .landing-flow-grid {
    grid-template-columns: 1fr;
  }

  .landing-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .ticket {
    position: static;
    transform: none;
    margin-top: 12px;
  }

  .feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .summary-card {
    position: static;
  }

  .plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 740px) {
  .landing-hero {
    padding: 20px;
  }

  .landing-stats {
    grid-template-columns: 1fr;
  }

  .page-shell {
    width: min(100%, 95vw);
  }

  .nav {
    margin: 0 -2.5vw;
    padding: 16px 2.5vw;
    flex-wrap: wrap;
    gap: 10px;
  }

  .nav-right {
    width: 100%;
    justify-content: space-between;
  }

  .secure-pill {
    border-right: 0;
    padding-right: 0;
    font-size: 0.86rem;
  }

  .hero {
    padding: 20px;
  }

  .feature-list,
  .plan-grid,
  .card-inline-row {
    grid-template-columns: 1fr;
  }

  .step-title h3 {
    font-size: 1.62rem;
  }

  .qty-row {
    flex-direction: column;
    align-items: stretch;
  }

  .qty-block {
    width: 100%;
  }

  .discount-pill {
    min-width: 0;
  }

  .panel {
    padding: 16px;
  }

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

/* Root landing wireframe layout */
.rootwf-page {
  margin: 0;
  background: #ffffff;
  color: #0f1728;
}

.rootwf-container {
  width: min(1260px, 92vw);
  margin: 0 auto;
}

.rootwf-hero-shell {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 82% 34%, rgba(111, 92, 255, 0.2), rgba(111, 92, 255, 0.01) 44%),
    linear-gradient(160deg, #040818, #050d24 54%, #051434);
  color: #f7f9ff;
}

.rootwf-grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    repeating-linear-gradient(to right, rgba(129, 148, 201, 0.1) 0, rgba(129, 148, 201, 0.1) 1px, transparent 1px, transparent 56px),
    repeating-linear-gradient(to bottom, rgba(129, 148, 201, 0.1) 0, rgba(129, 148, 201, 0.1) 1px, transparent 1px, transparent 56px);
}

.rootwf-nav {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 26px 0;
}

.rootwf-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 700;
}

.rootwf-brand-icon {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  background: linear-gradient(135deg, #6a64ff, #4c46f2);
  box-shadow: 0 8px 16px rgba(89, 80, 255, 0.34);
}

.rootwf-links {
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: center;
}

.rootwf-links a {
  color: rgba(238, 244, 255, 0.9);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
}

.rootwf-links a:hover,
.rootwf-links a.is-active {
  color: #ffffff;
  border-bottom-color: #6a64ff;
}

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

.rootwf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: 12px 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.rootwf-btn:hover {
  transform: translateY(-1px);
}

.rootwf-btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #5a57f2, #6f6bff);
  box-shadow: 0 12px 24px rgba(89, 84, 255, 0.35);
}

.rootwf-btn-ghost {
  color: #eef2ff;
  border: 1px solid rgba(193, 208, 255, 0.36);
  background: rgba(8, 14, 33, 0.5);
}

.rootwf-btn-large {
  min-height: 64px;
  border-radius: 16px;
  padding: 0 26px;
  font-size: 1.15rem;
}

.rootwf-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  padding: 62px 0 74px;
  align-items: center;
}

.rootwf-hero-copy h1 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.25rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.rootwf-hero-copy h1 span {
  color: #7d79ff;
}

.rootwf-hero-copy p {
  margin: 26px 0 0;
  color: rgba(216, 224, 242, 0.9);
  font-size: 1.25rem;
  line-height: 1.45;
  max-width: 34ch;
}

.rootwf-hero-cta-row {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.rootwf-trust {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.rootwf-trust li {
  color: rgba(233, 239, 255, 0.95);
  font-size: 1.02rem;
  position: relative;
  padding-left: 20px;
}

.rootwf-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6f6bff;
}

.rootwf-voucher-visual {
  display: flex;
  justify-content: center;
}

.rootwf-voucher-card {
  width: min(560px, 100%);
  aspect-ratio: 1.65 / 1;
  border-radius: 26px;
  transform: rotate(-8deg);
  border: 1px solid rgba(147, 161, 234, 0.4);
  background: linear-gradient(160deg, rgba(20, 28, 54, 0.88), rgba(10, 16, 37, 0.95));
  box-shadow: 0 24px 48px rgba(52, 72, 151, 0.36), inset 0 0 0 1px rgba(115, 124, 197, 0.2);
  padding: 34px;
  position: relative;
}

.rootwf-voucher-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  background-image: repeating-linear-gradient(130deg, rgba(149, 162, 223, 0.08), rgba(149, 162, 223, 0.08) 1px, transparent 1px, transparent 16px);
  pointer-events: none;
}

.rootwf-voucher-logo {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #f0efff;
  background: linear-gradient(135deg, #6d6aff, #4d47ec);
  box-shadow: 0 10px 18px rgba(87, 78, 255, 0.48);
}

.rootwf-voucher-title {
  margin-top: 22px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: clamp(1.2rem, 1.5vw, 1.8rem);
  letter-spacing: 0.02em;
  color: #f8fbff;
}

.rootwf-voucher-chip {
  margin-top: 16px;
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid rgba(150, 156, 255, 0.45);
  background: rgba(104, 106, 255, 0.18);
  color: #bbb6ff;
  padding: 6px 11px;
  font-size: 0.74rem;
  font-weight: 700;
}

.rootwf-voucher-sub {
  margin-top: 22px;
  color: rgba(208, 217, 242, 0.9);
  font-size: 0.96rem;
  font-style: italic;
}

.rootwf-section {
  padding: 68px 0;
}

.rootwf-light {
  background: #ffffff;
  text-align: center;
}

.rootwf-soft {
  background: linear-gradient(180deg, #f2f1f9, #ece9f7);
  text-align: center;
}

.rootwf-eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #615cf0;
  font-weight: 700;
  font-size: 0.9rem;
}

.rootwf-section h2 {
  margin: 12px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 3.4vw, 4rem);
  color: #111827;
}

.rootwf-sub {
  margin: 14px auto 0;
  max-width: 56ch;
  color: #5d6677;
  font-size: 1.2rem;
}

.rootwf-feature-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  text-align: left;
}

.rootwf-feature {
  border: 1px solid #eceaf5;
  border-radius: 18px;
  padding: 20px;
  background: #fff;
}

.rootwf-feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #f1efff;
  color: #5f5af0;
  font-size: 1.6rem;
  font-weight: 700;
}

.rootwf-feature h3 {
  margin: 14px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
}

.rootwf-feature p {
  margin: 10px 0 0;
  color: #5f6777;
  font-size: 1.02rem;
  line-height: 1.45;
}

.rootwf-cta-band {
  display: grid;
  gap: 14px;
  justify-items: center;
}

.rootwf-cta-band p {
  margin: 0;
  color: #5e6777;
  font-size: 1.15rem;
}

.rootwf-how-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.rootwf-step-card {
  border: 1px solid #eae8f2;
  border-radius: 18px;
  background: #ffffff;
  padding: 20px;
  text-align: left;
}

.rootwf-step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #5a57f2, #6f6bff);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
}

.rootwf-step-card h3 {
  margin: 14px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
}

.rootwf-step-card p {
  margin: 10px 0 0;
  color: #5c6676;
  font-size: 0.98rem;
  line-height: 1.5;
}

.rootwf-faq-list {
  margin-top: 32px;
  display: grid;
  gap: 12px;
  text-align: left;
}

.rootwf-faq-item {
  border: 1px solid #dfdcef;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  padding: 0;
}

.rootwf-faq-item summary {
  list-style: none;
  cursor: pointer;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1d2230;
  padding: 16px 18px;
}

.rootwf-faq-item summary::-webkit-details-marker {
  display: none;
}

.rootwf-faq-item p {
  margin: 0;
  padding: 0 18px 16px;
  color: #586277;
  line-height: 1.5;
  font-size: 0.95rem;
}

.rootwf-site-footer {
  background: linear-gradient(150deg, #050b1b, #07142f 64%, #081a3d);
  color: #ccd8f2;
  padding: 34px 0 16px;
}

.rootwf-site-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 20px;
}

.rootwf-site-footer h4 {
  margin: 0 0 12px;
  font-family: "Space Grotesk", sans-serif;
  color: #eef3ff;
}

.rootwf-footer-brand {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #f2f5ff;
}

.rootwf-site-footer p {
  margin: 10px 0 0;
  color: #9fb2d3;
  line-height: 1.5;
}

.rootwf-site-footer a,
.rootwf-site-footer span {
  display: block;
  margin: 0 0 8px;
  color: #aec0de;
  text-decoration: none;
  font-size: 0.92rem;
}

.rootwf-site-footer a:hover {
  color: #eaf2ff;
}

.rootwf-site-footer-copy {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(164, 180, 218, 0.2);
  text-align: center;
  color: #8ea3c7;
  font-size: 0.84rem;
}

.legal-page {
  background: #f7f6f2;
  color: #1f2631;
}

.legal-wrap {
  width: min(980px, 92vw);
  margin: 0 auto;
  padding: 24px 0 42px;
}

.legal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.legal-nav a {
  color: #49566c;
  text-decoration: none;
  font-weight: 700;
}

.legal-panel {
  border: 1px solid #e6dccb;
  border-radius: 18px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 12px 24px rgba(23, 29, 43, 0.05);
}

.legal-panel h1 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.9rem, 3.8vw, 2.6rem);
}

.legal-meta {
  margin: 10px 0 0;
  color: #5f6a78;
  font-size: 0.92rem;
}

.legal-panel h2 {
  margin: 26px 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
}

.legal-panel p,
.legal-panel li {
  color: #4f5a69;
  line-height: 1.6;
  font-size: 0.98rem;
}

.legal-panel ul {
  padding-left: 22px;
}

.legal-note {
  margin-top: 14px;
  border: 1px solid #e6edd5;
  border-radius: 12px;
  background: #f5faea;
  color: #385131;
  padding: 12px 14px;
  font-size: 0.9rem;
}

@media (max-width: 1180px) {
  .rootwf-nav {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 14px;
  }

  .rootwf-links,
  .rootwf-actions {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .rootwf-hero {
    grid-template-columns: 1fr;
  }

  .rootwf-voucher-visual {
    justify-content: flex-start;
  }

  .rootwf-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rootwf-how-grid {
    grid-template-columns: 1fr;
  }

  .rootwf-site-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .rootwf-container {
    width: min(94vw, 100%);
  }

  .rootwf-links {
    gap: 14px;
  }

  .rootwf-links a {
    font-size: 0.9rem;
  }

  .rootwf-btn-large {
    width: 100%;
    min-height: 52px;
    font-size: 1rem;
  }

  .rootwf-hero {
    padding: 30px 0 42px;
  }

  .rootwf-hero-copy h1 {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  .rootwf-hero-copy p {
    font-size: 1rem;
    margin-top: 16px;
  }

  .rootwf-trust {
    gap: 12px;
  }

  .rootwf-trust li {
    font-size: 0.92rem;
  }

  .rootwf-voucher-card {
    transform: none;
    padding: 20px;
  }

  .rootwf-feature-grid {
    grid-template-columns: 1fr;
  }

  .rootwf-site-footer-grid {
    grid-template-columns: 1fr;
  }

  .rootwf-section {
    padding: 44px 0;
  }

  .rootwf-sub,
  .rootwf-feature p,
  .rootwf-cta-band p {
    font-size: 1rem;
  }

  .rootwf-feature h3 {
    font-size: 1.2rem;
  }

  .rootwf-section h2 {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }
}
