:root {
  color-scheme: dark;
  --ink: #f7fafc;
  --muted: #9fb1c7;
  --subtle: #71849c;
  --night: #07111f;
  --night-2: #0a1728;
  --panel: #0e1d30;
  --panel-2: #13253b;
  --line: rgba(147, 172, 201, .18);
  --line-strong: rgba(147, 172, 201, .34);
  --teal: #20d1b7;
  --cyan: #46c7ff;
  --blue: #397ff7;
  --green: #36d399;
  --amber: #f6b94a;
  --danger: #ff7184;
  --shadow: 0 30px 80px rgba(0, 0, 0, .34);
  --shell: min(1180px, calc(100% - 40px));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 16% 0%, rgba(32, 209, 183, .09), transparent 28rem),
    linear-gradient(90deg, rgba(148, 163, 184, .036) 1px, transparent 1px),
    linear-gradient(rgba(148, 163, 184, .036) 1px, transparent 1px),
    var(--night);
  background-size: auto, 36px 36px, 36px 36px, auto;
  color: var(--ink);
  line-height: 1.55;
}

button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
button { cursor: pointer; }
button:disabled { cursor: not-allowed; }
.hidden { display: none !important; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 100; padding: 10px 14px; background: var(--ink); color: var(--night); border-radius: 8px; }
.skip-link:focus { top: 16px; }

.site-header {
  width: var(--shell);
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid var(--line);
}
.compact-header { min-height: 74px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  width: 44px; height: 44px; display: grid; place-items: center; flex: 0 0 auto;
  border: 1px solid rgba(70, 199, 255, .48); border-radius: 11px;
  background: linear-gradient(135deg, rgba(32, 209, 183, .98), rgba(70, 199, 255, .82));
  color: #04101d; font-size: 13px; font-weight: 950; letter-spacing: .04em;
  box-shadow: 0 14px 34px rgba(32, 209, 183, .16);
}
.brand strong, .brand small { display: block; }
.brand strong { font-size: 14px; letter-spacing: .12em; }
.brand small { margin-top: 1px; color: var(--muted); font-size: 11px; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav > a:not(.button) { color: var(--muted); font-size: 13px; font-weight: 700; text-decoration: none; }
.site-nav > a:not(.button):hover { color: var(--ink); }

.button {
  min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 0 22px; border: 1px solid rgba(70, 199, 255, .36); border-radius: 9px;
  background: linear-gradient(135deg, #23cdb7, #3e94f8); color: #04101d;
  font-weight: 850; text-decoration: none; box-shadow: 0 14px 36px rgba(41, 168, 219, .17);
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}
.button:hover:not(:disabled) { transform: translateY(-2px); filter: brightness(1.07); box-shadow: 0 18px 40px rgba(41, 168, 219, .24); }
.button:focus-visible, .text-link:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, summary:focus-visible { outline: 3px solid rgba(70, 199, 255, .5); outline-offset: 3px; }
.button:disabled { filter: saturate(.35); opacity: .55; box-shadow: none; }
.button-small { min-height: 38px; padding: 0 16px; font-size: 12px; }
.button-full { width: 100%; }
.text-link { color: var(--cyan); font-weight: 800; text-decoration: none; }
.text-link:hover { color: var(--ink); }
.link-button { border: 0; background: transparent; color: var(--muted); text-decoration: underline; }

.section-shell { width: var(--shell); margin-inline: auto; }
.section-block { padding-block: 112px; }
.hero { min-height: 680px; display: grid; grid-template-columns: minmax(0, .94fr) minmax(440px, 1.06fr); gap: 70px; align-items: center; padding-block: 78px 88px; }
.eyebrow { margin: 0 0 18px; color: var(--cyan); font-size: 11px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow > span { width: 26px; height: 1px; display: inline-block; margin-right: 8px; vertical-align: middle; background: var(--teal); }
.hero h1, .section-heading h2, .security-grid h2, .legal-shell h1, .result-card h1 { margin: 0; letter-spacing: -.045em; line-height: 1.02; }
.hero h1 { max-width: 720px; font-size: clamp(3rem, 6vw, 5.55rem); }
.hero h1 em { color: var(--teal); font-style: normal; }
.hero-lead { max-width: 640px; margin: 28px 0 0; color: #b9c8d9; font-size: clamp(1rem, 1.5vw, 1.2rem); line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 34px; }
.hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 54px 0 0; padding: 24px 0 0; border-top: 1px solid var(--line); list-style: none; }
.hero-facts strong, .hero-facts span { display: block; }
.hero-facts strong { font-size: 12px; }
.hero-facts span { margin-top: 5px; color: var(--subtle); font-size: 10px; line-height: 1.4; }

.hero-visual { position: relative; min-height: 490px; display: grid; place-items: center; }
.hero-visual::before { content: ""; position: absolute; width: 78%; height: 66%; border-radius: 50%; background: rgba(32, 209, 183, .13); filter: blur(70px); }
.blueprint-card { position: relative; width: min(100%, 590px); aspect-ratio: 1.18; overflow: hidden; border: 1px solid var(--line-strong); border-radius: 18px; background: rgba(7, 17, 31, .78); box-shadow: var(--shadow); transform: perspective(1100px) rotateY(-5deg) rotateX(2deg); backdrop-filter: blur(15px); }
.blueprint-toolbar, .blueprint-status { height: 48px; display: flex; align-items: center; gap: 7px; padding: 0 18px; border-bottom: 1px solid var(--line); color: var(--subtle); font-size: 9px; letter-spacing: .1em; }
.blueprint-toolbar span { width: 7px; height: 7px; border-radius: 50%; background: var(--line-strong); }
.blueprint-toolbar b { margin-left: auto; color: var(--muted); font-size: 9px; }
.blueprint-canvas { position: relative; height: calc(100% - 96px); background: linear-gradient(90deg, rgba(70, 199, 255, .07) 1px, transparent 1px), linear-gradient(rgba(70, 199, 255, .07) 1px, transparent 1px); background-size: 24px 24px; }
.plan-room, .plan-core { position: absolute; border: 2px solid rgba(70, 199, 255, .65); }
.plan-room::after, .plan-core::after { content: ""; position: absolute; inset: 10px; border: 1px dashed rgba(32, 209, 183, .35); }
.room-a { left: 13%; top: 13%; width: 39%; height: 38%; }
.room-b { right: 12%; top: 13%; width: 31%; height: 60%; }
.room-c { left: 13%; bottom: 12%; width: 48%; height: 31%; }
.plan-core { left: 53%; top: 35%; width: 15%; height: 28%; border-color: var(--teal); transform: rotate(45deg); }
.plan-axis { position: absolute; width: 24px; height: 24px; display: grid; place-items: center; border: 1px solid var(--teal); border-radius: 50%; color: var(--teal); font-size: 8px; }
.axis-x { right: 5%; top: 8%; }
.axis-y { left: 6%; bottom: 7%; }
.plan-label { position: absolute; padding: 5px 8px; background: rgba(7, 17, 31, .84); border: 1px solid var(--line); color: var(--muted); font-size: 7px; letter-spacing: .14em; }
.label-a { left: 18%; top: 24%; }
.label-b { right: 17%; bottom: 19%; }
.blueprint-status { justify-content: space-between; border-top: 1px solid var(--line); border-bottom: 0; }
.blueprint-status span { display: flex; align-items: center; gap: 7px; }
.blueprint-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px var(--green); }
.blueprint-status strong { color: var(--ink); font-size: 9px; }
.floating-chip { position: absolute; display: flex; align-items: center; gap: 10px; padding: 10px 14px; border: 1px solid var(--line-strong); border-radius: 10px; background: rgba(14, 29, 48, .92); box-shadow: 0 16px 40px rgba(0, 0, 0, .32); color: var(--muted); font-size: 10px; }
.floating-chip span { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 6px; background: rgba(32, 209, 183, .12); color: var(--teal); font-weight: 900; }
.floating-chip b { color: var(--ink); }
.chip-top { right: -15px; top: 62px; }
.chip-bottom { left: -10px; bottom: 60px; }

.trust-bar { min-height: 76px; display: flex; align-items: center; justify-content: center; gap: clamp(28px, 6vw, 82px); padding: 20px; border-block: 1px solid var(--line); background: rgba(14, 29, 48, .56); color: var(--muted); font-size: 11px; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.trust-bar span::before { content: ""; width: 5px; height: 5px; display: inline-block; margin-right: 10px; border-radius: 50%; background: var(--teal); vertical-align: middle; }

.section-heading { max-width: 710px; margin-bottom: 48px; }
.section-heading-centered { margin-inline: auto; text-align: center; }
.section-heading-centered .eyebrow > span { display: none; }
.section-heading h2, .security-grid h2 { font-size: clamp(2.2rem, 4vw, 3.7rem); }
.section-heading > p:not(.eyebrow), .security-grid > div > p:not(.eyebrow) { margin: 22px 0 0; color: var(--muted); font-size: 1.05rem; }
.solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.solution-card { min-height: 390px; padding: 34px; position: relative; overflow: hidden; border-right: 1px solid var(--line); background: rgba(10, 23, 40, .68); }
.solution-card:last-child { border-right: 0; }
.solution-card::after { content: ""; position: absolute; right: -50px; bottom: -50px; width: 160px; height: 160px; border: 1px solid var(--line); transform: rotate(45deg); }
.solution-primary { background: linear-gradient(155deg, rgba(32, 209, 183, .12), rgba(10, 23, 40, .86) 55%); }
.solution-number { color: rgba(70, 199, 255, .24); font-size: 54px; font-weight: 950; line-height: 1; }
.solution-tag, .offer-mode { margin: 28px 0 8px; color: var(--teal); font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.solution-card h3 { margin: 0; font-size: 1.65rem; }
.solution-card > p:not(.solution-tag) { color: var(--muted); }
.solution-card ul { display: flex; flex-wrap: wrap; gap: 7px; margin: 25px 0; padding: 0; list-style: none; }
.solution-card li { padding: 5px 9px; border: 1px solid var(--line); border-radius: 5px; color: #b9c8d9; font-size: 10px; }
.solution-card a { position: relative; z-index: 1; color: var(--cyan); font-size: 12px; font-weight: 850; text-decoration: none; }

.plans-section { padding-block: 110px; border-block: 1px solid var(--line); background: linear-gradient(180deg, rgba(14, 29, 48, .72), rgba(7, 17, 31, .9)); }
.catalog-status { min-height: 25px; margin: -22px auto 26px; color: var(--subtle); text-align: center; font-size: 12px; }
.offer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; align-items: stretch; }
.offer-card { position: relative; min-height: 440px; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: 14px; background: rgba(7, 17, 31, .76); }
.offer-card.is-recommended { border-color: rgba(32, 209, 183, .58); background: linear-gradient(160deg, rgba(32, 209, 183, .11), rgba(7, 17, 31, .88) 45%); box-shadow: 0 24px 60px rgba(0, 0, 0, .22); }
.recommended-badge { position: absolute; right: 20px; top: 20px; padding: 5px 9px; border-radius: 999px; background: rgba(32, 209, 183, .13); color: var(--teal); font-size: 9px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.offer-card h3 { margin: 0; padding-right: 70px; font-size: 1.5rem; line-height: 1.2; }
.offer-description { min-height: 70px; color: var(--muted); font-size: 13px; }
.offer-price { display: flex; align-items: baseline; gap: 10px; margin: 18px 0; padding: 20px 0; border-block: 1px solid var(--line); }
.offer-price strong { font-size: 2.1rem; letter-spacing: -.04em; }
.offer-price span { color: var(--subtle); font-size: 11px; }
.offer-benefits { display: grid; gap: 11px; margin: 0 0 28px; padding: 0; list-style: none; color: #c1cfdd; font-size: 12px; }
.offer-benefits li { display: flex; gap: 9px; }
.offer-benefits span { color: var(--teal); }
.offer-card .button { margin-top: auto; }
.offer-unavailable { max-width: 560px; min-height: 300px; margin-inline: auto; grid-column: 1 / -1; text-align: center; }
.offer-unavailable h3 { padding: 0; }
.offer-unavailable .offer-description { max-width: 410px; margin-inline: auto; }
.plans-note { max-width: 700px; margin: 28px auto 0; color: var(--subtle); text-align: center; font-size: 11px; }

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 0; padding: 0; border-block: 1px solid var(--line); list-style: none; }
.steps-grid li { display: grid; grid-template-columns: auto 1fr; gap: 20px; padding: 34px 28px; border-right: 1px solid var(--line); }
.steps-grid li:last-child { border-right: 0; }
.steps-grid > li > span { color: var(--teal); font-size: 11px; font-weight: 900; }
.steps-grid h3 { margin: 0; font-size: 1.05rem; }
.steps-grid p { margin-bottom: 0; color: var(--muted); font-size: 12px; }
.security-section { padding-block: 105px; border-block: 1px solid var(--line); background: radial-gradient(circle at 85% 20%, rgba(57, 127, 247, .11), transparent 30rem), var(--night-2); }
.security-grid { display: grid; grid-template-columns: 1fr .86fr; gap: 100px; align-items: center; }
.security-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.security-list li { display: grid; grid-template-columns: 36px 1fr; gap: 15px; padding: 19px; border: 1px solid var(--line); background: rgba(7, 17, 31, .5); }
.security-list > li > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 8px; background: rgba(32, 209, 183, .1); color: var(--teal); font-weight: 900; }
.security-list strong { font-size: 13px; }
.security-list p { margin: 4px 0 0; color: var(--muted); font-size: 11px; }
.faq-section { display: grid; grid-template-columns: .65fr 1fr; gap: 100px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 24px 4px; cursor: pointer; font-size: 14px; font-weight: 800; }
.faq-list p { margin: -8px 4px 24px; color: var(--muted); font-size: 13px; }

.site-footer { width: var(--shell); min-height: 190px; margin-inline: auto; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px; border-top: 1px solid var(--line); }
.footer-brand { display: flex; align-items: center; gap: 13px; }
.footer-brand strong { letter-spacing: .1em; }
.footer-brand p { margin: 3px 0 0; color: var(--subtle); font-size: 11px; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: var(--muted); font-size: 11px; text-decoration: none; }
.site-footer > p { grid-column: 1 / -1; margin: -30px 0 0; color: var(--subtle); font-size: 10px; }

.checkout-dialog { width: min(610px, calc(100% - 28px)); max-height: calc(100dvh - 28px); padding: 0; overflow: auto; border: 1px solid var(--line-strong); border-radius: 16px; background: var(--panel); color: var(--ink); box-shadow: var(--shadow); }
.checkout-dialog::backdrop { background: rgba(2, 8, 17, .78); backdrop-filter: blur(8px); }
.checkout-form { padding: 30px; }
.dialog-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.dialog-header h2 { margin: 0; font-size: 1.75rem; }
.icon-button { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 9px; background: transparent; color: var(--muted); font-size: 24px; line-height: 1; }
.checkout-summary { display: flex; justify-content: space-between; gap: 20px; margin: 24px 0; padding: 16px 18px; border: 1px solid rgba(32, 209, 183, .28); border-radius: 10px; background: rgba(32, 209, 183, .07); }
.checkout-summary strong { font-size: 13px; }
.checkout-summary span { color: var(--teal); font-size: 12px; font-weight: 800; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field { display: grid; gap: 7px; }
.field-wide { grid-column: 1 / -1; }
.field > span { color: #c5d2e0; font-size: 11px; font-weight: 750; }
.field small { color: var(--subtle); font-weight: 500; }
.field input, .field select { width: 100%; min-height: 45px; padding: 0 12px; border: 1px solid var(--line-strong); border-radius: 8px; background: #081424; color: var(--ink); }
.check-field { display: flex; align-items: flex-start; gap: 10px; margin-top: 16px; color: var(--muted); font-size: 11px; }
.check-field input { margin-top: 3px; accent-color: var(--teal); }
.check-field a { color: var(--cyan); }
.form-status { min-height: 25px; margin: 15px 0 8px; color: var(--amber); font-size: 11px; text-align: center; }
.paypal-note { margin: 14px 0 0; color: var(--subtle); font-size: 10px; text-align: center; }
.paypal-note span { display: inline-grid; place-items: center; width: 18px; height: 18px; margin-right: 5px; border-radius: 50%; background: #1f71e8; color: white; font-style: italic; font-weight: 950; }

.result-page { display: grid; grid-template-rows: auto 1fr; }
.secure-label { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 11px; }
.secure-label i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }
.result-shell { width: min(680px, calc(100% - 30px)); margin: auto; padding: 50px 0 80px; }
.result-card { padding: clamp(28px, 6vw, 55px); border: 1px solid var(--line-strong); border-radius: 18px; background: rgba(14, 29, 48, .84); box-shadow: var(--shadow); text-align: center; }
.result-card h1 { margin-top: 12px; font-size: clamp(2rem, 5vw, 3.25rem); }
.eyebrow-centered { text-align: center; }
.result-message { max-width: 500px; margin: 18px auto; color: var(--muted); }
.result-icon { width: 62px; height: 62px; margin: 0 auto 26px; display: grid; place-items: center; border-radius: 50%; font-size: 22px; font-weight: 950; }
.result-icon.is-loading { border: 1px solid rgba(70, 199, 255, .28); background: rgba(70, 199, 255, .08); }
.result-icon.is-loading span { width: 24px; height: 24px; border: 3px solid rgba(70, 199, 255, .2); border-top-color: var(--cyan); border-radius: 50%; animation: spin 1s linear infinite; }
.result-icon.is-success { background: rgba(54, 211, 153, .13); color: var(--green); }
.result-icon.is-warning { background: rgba(246, 185, 74, .12); color: var(--amber); }
.result-icon.is-cancelled { background: rgba(255, 113, 132, .12); color: var(--danger); }
.result-progress { width: min(320px, 80%); height: 3px; margin: 30px auto 0; overflow: hidden; border-radius: 10px; background: var(--line); }
.result-progress span { display: block; width: 42%; height: 100%; background: linear-gradient(90deg, var(--teal), var(--cyan)); animation: progress 1.5s ease-in-out infinite alternate; }
.license-delivery { margin-top: 30px; padding: 24px; border: 1px solid rgba(32, 209, 183, .35); border-radius: 12px; background: rgba(32, 209, 183, .06); text-align: left; }
.license-meta { display: flex; justify-content: space-between; gap: 15px; margin-bottom: 18px; color: var(--muted); font-size: 10px; }
.license-meta span:first-child { color: var(--teal); font-weight: 900; letter-spacing: .08em; }
.license-delivery > label { color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.license-key-row { display: grid; grid-template-columns: 1fr auto; gap: 10px; margin-top: 7px; }
.license-key-row output { min-height: 48px; display: flex; align-items: center; overflow-wrap: anywhere; padding: 10px 13px; border: 1px solid var(--line-strong); border-radius: 8px; background: #07111f; color: var(--ink); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 12px; }
.license-modules { color: var(--muted); font-size: 11px; }
.delivery-warning { display: grid; gap: 3px; margin-top: 18px; padding-top: 15px; border-top: 1px solid var(--line); font-size: 10px; }
.delivery-warning strong { color: var(--amber); }
.delivery-warning span { color: var(--subtle); }
.result-actions { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 18px; margin-top: 30px; }
.result-footnote { color: var(--subtle); font-size: 10px; text-align: center; }

.legal-shell { width: min(790px, calc(100% - 36px)); margin: 0 auto; padding: 80px 0 120px; }
.legal-shell h1 { font-size: clamp(2.5rem, 6vw, 4.3rem); }
.legal-shell section { margin-top: 42px; padding-top: 30px; border-top: 1px solid var(--line); }
.legal-shell h2 { font-size: 1.1rem; }
.legal-shell p { color: var(--muted); }
.draft-notice { margin: 32px 0; padding: 18px 20px; border: 1px solid rgba(246, 185, 74, .35); border-radius: 9px; background: rgba(246, 185, 74, .08); color: #d8c295; font-size: 12px; }
.legal-updated { margin-top: 60px; font-size: 11px; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes progress { from { transform: translateX(-40%); } to { transform: translateX(180%); } }

@media (max-width: 960px) {
  .site-nav > a:not(.button) { display: none; }
  .hero { grid-template-columns: 1fr; gap: 45px; }
  .hero-copy { max-width: 780px; }
  .hero-visual { min-height: 430px; }
  .solution-grid { grid-template-columns: 1fr; }
  .solution-card { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .solution-card:last-child { border-bottom: 0; }
  .security-grid, .faq-section { grid-template-columns: 1fr; gap: 50px; }
  .faq-section .section-heading { margin-bottom: 0; }
}

@media (max-width: 700px) {
  :root { --shell: min(100% - 28px, 1180px); }
  .site-header { min-height: 70px; }
  .site-nav .button { min-height: 36px; padding: 0 12px; }
  .brand small { display: none; }
  .hero { min-height: auto; padding-block: 60px 70px; }
  .hero h1 { font-size: clamp(2.65rem, 13vw, 4.2rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-facts { grid-template-columns: 1fr; }
  .hero-visual { min-height: 330px; }
  .blueprint-card { width: 96%; transform: none; }
  .floating-chip { display: none; }
  .trust-bar { justify-content: flex-start; overflow-x: auto; gap: 30px; }
  .trust-bar span { white-space: nowrap; }
  .section-block, .plans-section, .security-section { padding-block: 78px; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid li { border-right: 0; border-bottom: 1px solid var(--line); }
  .steps-grid li:last-child { border-bottom: 0; }
  .site-footer { grid-template-columns: 1fr; padding-block: 48px; }
  .site-footer > p { grid-column: auto; margin: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  .checkout-summary { align-items: flex-start; flex-direction: column; gap: 4px; }
  .checkout-form { padding: 22px; }
  .license-key-row { grid-template-columns: 1fr; }
  .license-key-row .button { width: 100%; }
  .secure-label { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
