:root {
  color-scheme: light;
  --navy: #031225;
  --navy-2: #082341;
  --navy-3: #0b315d;
  --blue: #005aa8;
  --blue-2: #1a8cff;
  --blue-soft: #eaf5ff;
  --orange: #ff8a00;
  --orange-dark: #d96a00;
  --green: #0aa775;
  --ink: #0b1b2f;
  --muted: #607286;
  --line: #d6e6f4;
  --soft: #f3f7fb;
  --white: #ffffff;
  --cyber-line: rgba(66, 166, 255, 0.2);
  --shadow-soft: 0 18px 42px rgba(3, 18, 37, 0.08);
  --shadow-card: 0 28px 80px rgba(3, 18, 37, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 30;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1160px, calc(100% - 44px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(0, 90, 168, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 252, 255, 0.95) 100%);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 34px rgba(3, 18, 37, 0.08);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-link,
.footer-brand {
  display: inline-flex;
  align-items: center;
}

.brand-link {
  text-decoration: none;
}

.product-brand {
  gap: 16px;
}

.brand-link img,
.product-footer-brand img {
  width: auto;
  height: 57px;
}

.brand-text {
  display: grid;
  gap: 4px;
  line-height: 1.05;
}

.brand-text strong {
  display: block;
  color: var(--navy);
  font-size: 1.38rem;
  font-weight: 950;
  letter-spacing: 0;
}

.brand-text small {
  display: block;
  color: #6b7280;
  font-size: 0.82rem;
  font-weight: 400;
}

.product-footer-brand span {
  padding-left: 11px;
  border-left: 1px solid rgba(0, 75, 147, 0.16);
  color: #697a8c;
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.site-footer .product-footer-brand span {
  border-left-color: rgba(66, 166, 255, 0.28);
  color: rgba(244, 249, 255, 0.7);
}

.header-contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  color: var(--navy);
  font-size: 0.93rem;
  font-weight: 850;
}

.header-contact a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(0, 90, 168, 0.16);
  border-radius: 8px;
  background: rgba(234, 245, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.header-contact a,
.footer-links a {
  text-decoration: none;
}

.header-contact a:hover,
.footer-links a:hover {
  color: var(--orange-dark);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(180deg, #ffab35 0%, var(--orange) 54%, var(--orange-dark) 100%);
  box-shadow: 0 18px 34px rgba(255, 138, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.32);
  cursor: pointer;
  text-decoration: none;
  font-weight: 900;
  line-height: 1.1;
  transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.button:hover {
  background: linear-gradient(180deg, #ffb64f 0%, #f68600 54%, #c75f00 100%);
  box-shadow: 0 22px 46px rgba(217, 106, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.34);
  transform: translateY(-2px);
}

.button-secondary {
  margin-top: 12px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(0, 90, 168, 0.24);
  box-shadow: none;
}

.button-secondary:hover {
  color: var(--white);
  background: var(--navy-2);
  box-shadow: 0 16px 32px rgba(3, 18, 37, 0.18);
}

.button:disabled,
.button.is-loading {
  cursor: wait;
  opacity: 0.82;
}

.button:disabled:hover,
.button.is-loading:hover {
  background: linear-gradient(180deg, #ffab35 0%, var(--orange) 54%, var(--orange-dark) 100%);
  box-shadow: 0 16px 32px rgba(255, 138, 0, 0.24);
  transform: none;
}

.button:focus-visible,
.header-contact a:focus-visible,
.footer-links a:focus-visible,
.success-contact-links a:focus-visible,
.support-form input:focus-visible,
.support-form select:focus-visible,
.support-form textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(22, 117, 209, 0.35);
  outline-offset: 3px;
}

.button-full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(66, 166, 255, 0.22);
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(3, 18, 37, 0.98) 0%, rgba(6, 34, 66, 0.97) 54%, rgba(3, 18, 37, 0.99) 100%),
    linear-gradient(180deg, #061b35 0%, #031225 100%);
}

.hero::before,
.how-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(120deg, transparent 0 42%, rgba(66, 166, 255, 0.14) 42.1% 42.7%, transparent 42.8% 100%),
    linear-gradient(25deg, transparent 0 58%, rgba(66, 166, 255, 0.1) 58.1% 58.6%, transparent 58.7% 100%),
    radial-gradient(circle at 1px 1px, rgba(66, 166, 255, 0.38) 1px, transparent 1.8px);
  background-size: 360px 260px, 320px 220px, 82px 82px;
  opacity: 0.45;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--blue-2), var(--orange), var(--blue-2));
  opacity: 0.95;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 430px);
  gap: 76px;
  align-items: center;
  padding: 76px 0 78px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-eyebrow {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 10px;
  color: var(--navy);
  margin-bottom: 18px;
  font-size: 1.02rem;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: none;
}

.product-eyebrow-name {
  color: var(--blue);
  font-size: 1.04rem;
  font-weight: 950;
}

.product-eyebrow-byline {
  color: #697a8c;
  font-size: 0.78rem;
  font-weight: 900;
}

.hero .product-eyebrow {
  color: var(--white);
}

.hero .product-eyebrow-name {
  color: var(--white);
}

.hero .product-eyebrow-byline {
  color: #ffd08b;
}

.hero h1 {
  max-width: 730px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: 4rem;
  line-height: 1.02;
  letter-spacing: 0;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.hero h1 span {
  display: block;
}

.hero-subheadline {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(244, 249, 255, 0.86);
  font-size: 1.2rem;
  line-height: 1.62;
}

.hero-action {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin-bottom: 22px;
}

.hero-action span {
  color: #43576d;
  font-size: 0.93rem;
  font-weight: 850;
}

.checkout-message {
  width: 100%;
  margin: 0;
  color: #91410e;
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.45;
}

.compatibility-note {
  max-width: 650px;
  margin: 0 0 22px;
  padding: 13px 16px;
  border: 1px solid rgba(66, 166, 255, 0.22);
  border-radius: 8px;
  color: rgba(244, 249, 255, 0.9);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.09);
  font-size: 0.95rem;
  font-weight: 820;
  line-height: 1.45;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  max-width: 650px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  display: flex;
  min-height: 28px;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: rgba(244, 249, 255, 0.88);
  background: transparent;
  box-shadow: none;
  font-size: 0.96rem;
  font-weight: 850;
}

.trust-list span {
  display: inline-grid;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  color: var(--navy);
  background: #6ff0c1;
  font-size: 0.72rem;
  font-weight: 950;
}

.customer-reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 690px;
  margin-top: 18px;
}

.customer-reassurance span {
  padding: 8px 10px;
  border-radius: 8px;
  color: rgba(244, 249, 255, 0.82);
  border: 1px solid rgba(66, 166, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.9rem;
  font-weight: 800;
}

.success-page {
  min-height: calc(100vh - 78px);
  background:
    linear-gradient(130deg, rgba(234, 245, 255, 0.94), rgba(255, 255, 255, 0.7) 44%),
    linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
}

.success-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 410px);
  gap: 64px;
  align-items: center;
  padding: 86px 0 88px;
}

.success-card {
  max-width: 720px;
}

.success-icon {
  position: relative;
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 18px 34px rgba(8, 167, 122, 0.22);
}

.success-icon::after {
  content: "";
  width: 15px;
  height: 26px;
  border: solid var(--white);
  border-width: 0 4px 4px 0;
  transform: translateY(-2px) rotate(45deg);
}

.success-card h1 {
  max-width: 680px;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 3.7rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.success-card p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.62;
}

.success-lede {
  margin-bottom: 10px;
  color: #294057;
  font-size: 1.24rem;
  font-weight: 820;
}

.success-support {
  max-width: 650px;
  margin-top: 32px;
  padding: 24px;
  border: 1px solid rgba(0, 90, 168, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.success-support h2 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.3rem;
}

.success-support p {
  margin-bottom: 18px;
  font-size: 1rem;
}

.success-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.success-contact-links a {
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

.success-contact-links a:hover {
  color: var(--orange-dark);
}

.support-page {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 78px);
  border-bottom: 1px solid rgba(66, 166, 255, 0.22);
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(3, 18, 37, 0.98) 0%, rgba(6, 34, 66, 0.97) 54%, rgba(3, 18, 37, 0.99) 100%),
    linear-gradient(180deg, #061b35 0%, #031225 100%);
}

.support-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(120deg, transparent 0 42%, rgba(66, 166, 255, 0.14) 42.1% 42.7%, transparent 42.8% 100%),
    linear-gradient(25deg, transparent 0 58%, rgba(66, 166, 255, 0.1) 58.1% 58.6%, transparent 58.7% 100%),
    radial-gradient(circle at 1px 1px, rgba(66, 166, 255, 0.38) 1px, transparent 1.8px);
  background-size: 360px 260px, 320px 220px, 82px 82px;
  opacity: 0.45;
}

.support-page::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--blue-2), var(--orange), var(--blue-2));
  opacity: 0.95;
}

.legal-page {
  min-height: calc(100vh - 78px);
  background:
    linear-gradient(130deg, rgba(234, 245, 255, 0.96), rgba(255, 255, 255, 0.8) 48%),
    linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
}

.legal-layout {
  display: grid;
  gap: 32px;
  padding: 72px 0 84px;
}

.legal-hero {
  max-width: 780px;
}

.legal-hero h1 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 3.65rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.legal-hero p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  color: #3d536a;
  font-size: 1.16rem;
  line-height: 1.62;
}

.legal-card {
  max-width: 920px;
  padding: 34px;
  border: 1px solid rgba(0, 90, 168, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.legal-updated {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 138, 0, 0.24);
  border-radius: 8px;
  color: var(--orange-dark);
  background: #fff8ec;
  font-size: 0.85rem;
  font-weight: 900;
}

.legal-card h2 {
  margin: 34px 0 10px;
  color: var(--navy);
  font-size: 1.55rem;
  line-height: 1.2;
}

.legal-card h3 {
  margin: 24px 0 8px;
  color: #163655;
  font-size: 1.12rem;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.legal-card p {
  margin-bottom: 14px;
}

.legal-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding-left: 22px;
}

.legal-card a {
  color: var(--blue);
  font-weight: 850;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.support-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 520px);
  gap: 76px;
  align-items: center;
  padding: 76px 0 78px;
}

.support-page .product-eyebrow {
  color: var(--white);
}

.support-page .support-copy .product-eyebrow-name {
  color: var(--white);
}

.support-page .support-copy .product-eyebrow-byline {
  color: #ffd08b;
}

.support-copy h1 {
  max-width: 730px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: 4rem;
  line-height: 1.02;
  letter-spacing: 0;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.support-lede {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(244, 249, 255, 0.86);
  font-size: 1.2rem;
  line-height: 1.62;
}

.support-direct {
  max-width: 560px;
  padding: 24px;
  border: 1px solid rgba(66, 166, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.support-direct h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.3rem;
}

.support-direct p {
  margin-bottom: 18px;
  color: rgba(244, 249, 255, 0.78);
}

.support-direct .success-contact-links a {
  color: #ffd08b;
}

.support-direct .success-contact-links a:hover {
  color: var(--white);
}

.support-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(0, 90, 168, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.support-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-2), var(--orange));
}

.support-card .product-eyebrow {
  color: var(--navy);
}

.support-card .product-eyebrow-name {
  color: var(--blue);
}

.support-card .product-eyebrow-byline {
  color: #697a8c;
}

.support-form {
  display: grid;
  gap: 22px;
}

.support-form.is-hidden {
  display: none;
}

.support-confirmation {
  display: grid;
  gap: 16px;
  padding: 18px 6px 4px;
}

.support-confirmation.is-hidden {
  display: none;
}

.support-confirmation-icon {
  position: relative;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #12c891 0%, var(--green) 100%);
  box-shadow: 0 18px 34px rgba(10, 167, 117, 0.22);
}

.support-confirmation-icon::after {
  content: "";
  width: 17px;
  height: 28px;
  border: solid var(--white);
  border-width: 0 4px 4px 0;
  transform: translateY(-2px) rotate(45deg);
}

.support-confirmation h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: 2.1rem;
  line-height: 1.1;
}

.support-confirmation p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.support-confirmation-call {
  padding: 14px 16px;
  border: 1px solid rgba(0, 90, 168, 0.16);
  border-radius: 8px;
  background: #f4f9ff;
  font-weight: 850;
}

.support-confirmation-call a {
  color: var(--blue);
  font-weight: 950;
  text-decoration: none;
}

.support-confirmation-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}

.support-confirmation-actions .button-secondary {
  margin-top: 0;
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 900;
}

.form-field label span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
}

.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 90, 168, 0.18);
  border-radius: 8px;
  color: var(--ink);
  background: #fbfdff;
  font-size: 1rem;
}

.support-form input,
.support-form select {
  min-height: 50px;
  padding: 12px 14px;
}

.support-form textarea {
  min-height: 146px;
  padding: 13px 14px;
  resize: vertical;
}

.support-form input[aria-invalid="true"],
.support-form select[aria-invalid="true"],
.support-form textarea[aria-invalid="true"] {
  border-color: #c2410c;
  background: #fff7ed;
}

.form-message {
  margin-bottom: 20px;
  padding: 14px 16px;
  border-radius: 8px;
  font-weight: 820;
  line-height: 1.5;
}

.form-message.is-hidden {
  display: none;
}

.form-message p {
  margin-bottom: 8px;
}

.form-message p:last-child,
.form-message ul {
  margin-bottom: 0;
}

.form-message.success {
  border: 1px solid rgba(8, 167, 122, 0.24);
  color: #04664c;
  background: #ecfdf5;
}

.form-message.error {
  border: 1px solid rgba(194, 65, 12, 0.22);
  color: #8a2e0a;
  background: #fff7ed;
}

.honeypot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 90, 168, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-2), var(--orange));
}

.product-card-media {
  display: flex;
  justify-content: center;
  padding: 34px 32px 26px;
  background:
    linear-gradient(135deg, rgba(26, 140, 255, 0.16), rgba(255, 138, 0, 0.12)),
    linear-gradient(180deg, #fbfdff 0%, #eef7ff 100%);
}

.product-card-media.compact {
  padding: 28px 24px 20px;
}

.product-card-media img {
  width: min(310px, 100%);
}

.product-card-body {
  padding: 28px;
}

.product-card-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.product-label {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-badge {
  flex: 0 0 auto;
  padding: 6px 9px;
  border: 1px solid rgba(255, 138, 0, 0.3);
  border-radius: 8px;
  color: var(--orange-dark);
  background: #fff8ec;
  font-size: 0.74rem;
  font-weight: 950;
  line-height: 1;
}

.price-line {
  display: flex;
  align-items: end;
  gap: 7px;
  margin-bottom: 18px;
  color: var(--navy);
}

.price-line strong {
  font-size: 3.8rem;
  line-height: 0.95;
  letter-spacing: 0;
}

.price-line span {
  padding-bottom: 6px;
  color: var(--muted);
  font-weight: 850;
}

.product-summary {
  margin: 18px 0 18px;
  color: var(--muted);
  line-height: 1.55;
}

.checkout-reassurance {
  margin: 10px auto 0;
  max-width: 330px;
  color: #496276;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
}

.included-list {
  display: grid;
  gap: 11px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.included-list.roomy {
  margin-top: 20px;
}

.included-list:last-child {
  margin-bottom: 0;
}

.included-list li {
  position: relative;
  padding-left: 27px;
  color: #253d54;
  font-size: 0.95rem;
  font-weight: 780;
  line-height: 1.35;
}

.included-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green);
}

.included-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 6px;
  width: 5px;
  height: 8px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.section {
  padding: 92px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 32px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 2.55rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.benefits-section {
  background:
    linear-gradient(180deg, #f6faff 0%, #edf5fc 100%);
}

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

.benefit-card,
.faq-list details {
  border: 1px solid rgba(0, 90, 168, 0.14);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.benefit-card {
  padding: 26px;
  position: relative;
  overflow: hidden;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(26, 140, 255, 0.75), rgba(255, 138, 0, 0.75));
  opacity: 0;
  transition: opacity 160ms ease;
}

.benefit-card:hover {
  border-color: rgba(26, 140, 255, 0.28);
  box-shadow: 0 22px 52px rgba(3, 18, 37, 0.11);
  transform: translateY(-2px);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-icon {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(26, 140, 255, 0.14), rgba(255, 138, 0, 0.11)),
    var(--blue-soft);
  font-size: 0.78rem;
  font-weight: 950;
}

.benefit-icon::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid var(--blue);
  border-radius: 5px;
  background: transparent;
}

.benefit-icon::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 11px;
  border: solid var(--orange);
  border-width: 0 2px 2px 0;
  transform: translateY(-1px) rotate(45deg);
}

.benefit-card h3,
.steps h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.12rem;
}

.benefit-card p,
.steps p,
.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.58;
}

.product-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  gap: 64px;
  align-items: center;
}

.how-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(112deg, rgba(3, 18, 37, 0.99) 0%, rgba(8, 35, 65, 0.98) 55%, rgba(3, 18, 37, 0.99) 100%);
}

.how-section .container {
  position: relative;
  z-index: 1;
}

.how-section .section-heading h2,
.how-section .steps h3 {
  color: var(--white);
}

.eyebrow-light {
  color: #ffd08b;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  padding: 26px;
  border: 1px solid rgba(66, 166, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.steps span {
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: linear-gradient(180deg, #ffad39, var(--orange));
  font-weight: 950;
}

.steps p {
  color: rgba(255, 255, 255, 0.74);
}

.faq-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 48px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  overflow: hidden;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--navy);
  font-weight: 900;
}

.faq-list details[open],
.faq-list details:hover {
  border-color: rgba(26, 140, 255, 0.26);
  box-shadow: 0 20px 48px rgba(3, 18, 37, 0.1);
}

.faq-list p {
  padding: 0 22px 20px;
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid rgba(66, 166, 255, 0.2);
  color: rgba(244, 249, 255, 0.78);
  background:
    linear-gradient(180deg, #061b35 0%, var(--navy) 100%);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px 38px;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 20px;
  color: rgba(244, 249, 255, 0.88);
  font-weight: 850;
}

.footer-links a {
  padding: 6px 0;
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(244, 249, 255, 0.62);
  font-size: 0.88rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .success-layout,
  .support-layout,
  .product-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .success-layout,
  .support-layout,
  .hero-grid {
    gap: 42px;
    padding: 48px 0 52px;
  }

  .legal-layout {
    padding: 54px 0 62px;
  }

  .support-copy h1,
  .legal-hero h1,
  .success-card h1,
  .hero h1 {
    font-size: 3.55rem;
  }

  .success-product-card,
  .hero-product-card {
    max-width: 520px;
  }

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

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .header-inner {
    min-height: auto;
    padding: 13px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .brand-link img {
    height: 48px;
  }

  .product-brand {
    gap: 12px;
  }

  .brand-text strong {
    font-size: 1.12rem;
  }

  .brand-text small {
    font-size: 0.78rem;
  }

  .header-contact {
    width: 100%;
    align-items: stretch;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.9rem;
  }

  .header-contact a {
    justify-content: center;
  }

  .hero-grid {
    padding: 34px 0 40px;
  }

  .success-layout {
    gap: 34px;
    padding: 44px 0 54px;
  }

  .success-card h1,
  .support-copy h1,
  .legal-hero h1,
  .hero h1 {
    font-size: 2.4rem;
  }

  .success-card p,
  .support-lede,
  .legal-hero p:not(.eyebrow),
  .hero-subheadline {
    font-size: 1.05rem;
  }

  .legal-card,
  .support-card,
  .success-support {
    padding: 20px;
  }

  .hero-action {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-list,
  .form-grid,
  .benefit-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .support-confirmation-actions {
    grid-template-columns: 1fr;
  }

  .trust-list {
    gap: 10px;
  }

  .customer-reassurance {
    display: grid;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading.centered {
    text-align: left;
  }

  .section-heading h2 {
    font-size: 2rem;
  }

  .product-card-media,
  .product-card-media.compact {
    padding: 24px 22px 18px;
  }

  .product-card-media img {
    width: 250px;
  }

  .product-card-body {
    padding: 22px;
  }

  .product-card-kicker {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-line strong {
    font-size: 3.25rem;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 390px) {
  .success-card h1,
  .support-copy h1,
  .legal-hero h1,
  .hero h1 {
    font-size: 2.05rem;
  }

  .price-line strong {
    font-size: 3rem;
  }
}

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

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

/* Browse Faster campaign landing page */
.browse-page .header-help {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.browse-hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 440px);
  gap: 64px;
}

.browse-hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.75rem, 5.2vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.browse-hero .hero-subheadline {
  max-width: 720px;
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
}

.platform-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0;
}

.platform-pills span {
  padding: 9px 13px;
  border: 1px solid rgba(98, 183, 255, 0.34);
  border-radius: 999px;
  color: #eaf6ff;
  background: rgba(6, 48, 88, 0.72);
  font-size: 0.86rem;
  font-weight: 850;
}

.browse-trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
  margin: 0 0 28px;
}

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

.hero-actions .button {
  margin: 0;
}

.hero-call-button {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.34);
}

.hero-call-button:hover {
  color: var(--navy);
  background: #fff;
}

.microcopy {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
}

.qualification-note {
  max-width: 700px;
  margin: 16px 0 0;
  padding-left: 14px;
  border-left: 3px solid var(--orange);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
}

.browser-demo-card {
  overflow: hidden;
  border: 1px solid rgba(115, 192, 255, 0.28);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.browser-demo-top {
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 13px 15px;
  background: #edf3f8;
  border-bottom: 1px solid #d8e2eb;
}

.browser-demo-top > span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #91a2b2;
}

.browser-demo-top > span:first-child { background: #ff6b63; }
.browser-demo-top > span:nth-child(2) { background: #ffc64d; }
.browser-demo-top > span:nth-child(3) { background: #38c783; }

.browser-address {
  flex: 1;
  margin-left: 8px;
  padding: 6px 11px;
  border-radius: 7px;
  color: #6a7a89;
  background: #fff;
  font-size: 0.75rem;
}

.browser-demo-body {
  padding: 20px;
  color: var(--ink);
  background: #f8fbfd;
}

.demo-label {
  margin-bottom: 8px;
  color: #b42318;
  font-size: 0.73rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.demo-label-clean { color: var(--green); }

.demo-before {
  position: relative;
  min-height: 170px;
  padding: 56px 20px 20px;
  border: 1px solid #edc7c3;
  background: #fff5f3;
}

.fake-ad {
  display: grid;
  place-items: center;
  color: #8b1e17;
  background: #ffd7d2;
  border: 1px dashed #d34c43;
  font-size: 0.62rem;
  font-weight: 950;
}

.ad-wide { position: absolute; inset: 12px 14px auto; height: 34px; }
.ad-side { position: absolute; top: 58px; right: 12px; width: 92px; height: 72px; }
.ad-bottom { margin-top: 17px; height: 34px; }
.fake-content-line { width: 58%; height: 9px; margin: 12px 0; border-radius: 9px; background: #b9c4cd; }
.fake-content-line.long { width: 66%; }
.fake-content-line.short { width: 42%; }

.demo-arrow {
  padding: 7px 0;
  color: var(--blue);
  text-align: center;
  font-size: 1.5rem;
  font-weight: 950;
}

.demo-after {
  display: flex;
  gap: 14px;
  align-items: center;
  min-height: 104px;
  padding: 20px;
  border: 1px solid #a9e0ca;
  border-radius: 10px;
  background: #edfff8;
}

.demo-after p { margin: 4px 0 0; color: #527062; font-size: 0.86rem; }
.clean-check { display: grid; flex: 0 0 48px; width: 48px; height: 48px; place-items: center; border-radius: 50%; color: #fff; background: var(--green); font-size: 1.4rem; font-weight: 950; }

.demo-product-strip {
  padding: 16px 22px;
  background: var(--navy);
}

.demo-product-strip img { max-height: 42px; width: auto; margin: 0 auto; }

.compatibility-bar {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.compatibility-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  color: #35506a;
  font-size: 0.9rem;
}

.compatibility-bar-inner span::before { content: "\2713"; margin-right: 7px; color: var(--green); font-weight: 950; }
.compatibility-bar-inner .compatibility-exclude::before { content: "\2014"; color: var(--orange-dark); }

.narrow-heading { max-width: 770px; margin-inline: auto; }

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

.pain-card {
  position: relative;
  min-height: 210px;
  padding: 28px 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.pain-card > span {
  display: block;
  margin-bottom: 28px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 950;
}

.pain-card h3 { margin-bottom: 10px; }
.pain-card p { margin: 0; color: var(--muted); }

.solution-section { background: #fff; }
.solution-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(330px, 420px); gap: 70px; align-items: center; }
.solution-grid h2 { font-size: clamp(2rem, 3.4vw, 3.35rem); line-height: 1.05; letter-spacing: -0.04em; }
.solution-lead { max-width: 700px; color: var(--muted); font-size: 1.08rem; }

.benefit-checks { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 28px; }
.benefit-checks > div { display: grid; grid-template-columns: 34px 1fr; column-gap: 10px; padding: 17px; border: 1px solid var(--line); border-radius: 10px; background: var(--soft); }
.benefit-checks span { grid-row: 1 / 3; display: grid; width: 28px; height: 28px; place-items: center; border-radius: 50%; color: #fff; background: var(--green); font-weight: 950; }
.benefit-checks small { color: var(--muted); }

.offer-card {
  padding: 30px;
  border: 1px solid #cfe0ef;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff 0%, #f4f9fd 100%);
  box-shadow: var(--shadow-card);
}
.offer-card img { margin: 10px 0 22px; }
.offer-kicker { margin-bottom: 6px; color: var(--blue); font-size: 0.75rem; font-weight: 950; letter-spacing: 0.08em; text-transform: uppercase; }
.offer-price { display: flex; align-items: baseline; gap: 9px; margin: 8px 0 18px; }
.offer-price strong { color: var(--navy); font-size: 3.25rem; line-height: 1; }
.offer-price span { color: var(--muted); font-weight: 750; }
.offer-card ul { padding: 0; margin: 0 0 24px; list-style: none; }
.offer-card li { position: relative; padding: 8px 0 8px 25px; border-bottom: 1px solid #e3edf5; }
.offer-card li::before { content: "\2713"; position: absolute; left: 0; color: var(--green); font-weight: 950; }

.steps-section { background: var(--soft); }
.browse-steps li { background: #fff; color: var(--ink); }
.browse-steps li p { color: var(--muted); }

.phone-section { padding-top: 20px; }
.phone-panel { display: flex; gap: 40px; align-items: center; justify-content: space-between; padding: 36px 40px; border-radius: 16px; color: #fff; background: linear-gradient(110deg, var(--navy) 0%, var(--navy-3) 100%); box-shadow: var(--shadow-card); }
.phone-panel h2 { margin-bottom: 10px; font-size: clamp(1.8rem, 3vw, 2.8rem); }
.phone-panel p { margin-bottom: 0; color: rgba(255,255,255,.78); }
.phone-actions { text-align: right; }
.phone-number { display: block; color: #fff; font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 950; text-decoration: none; white-space: nowrap; }
.phone-actions span { color: #bcd7ef; font-size: 0.86rem; font-weight: 800; }

.final-cta { padding: 46px 0; color: #fff; background: var(--navy); border-top: 4px solid var(--orange); }
.final-cta-inner { display: flex; gap: 34px; align-items: center; justify-content: space-between; }
.final-cta h2 { margin: 0; font-size: clamp(1.65rem, 3vw, 2.6rem); }

@media (max-width: 980px) {
  .browse-hero-grid, .solution-grid { grid-template-columns: 1fr; }
  .browser-demo-card { max-width: 560px; }
  .pain-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .browse-page .header-help { display: none; }
  .browse-trust-list, .benefit-checks { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .phone-panel, .final-cta-inner { align-items: stretch; flex-direction: column; }
  .phone-actions { text-align: left; }
  .final-cta .button { width: 100%; }
}


/* Animated before-and-after browser character */
.animated-demo-body {
  display: grid;
  gap: 10px;
  padding: 18px;
  overflow: hidden;
}

.screen-scene {
  position: relative;
}

.character-screen {
  position: relative;
  min-height: 156px;
  border-radius: 14px;
  overflow: visible;
  transform-origin: center;
}

.angry-screen {
  border: 2px solid #ef8f86;
  background: linear-gradient(145deg, #fff8f6, #ffe5e0);
  box-shadow: 0 14px 30px rgba(180, 35, 24, 0.14);
  animation: angryScreenShake 5.2s ease-in-out infinite;
}

.happy-screen {
  border: 2px solid #8bd8bd;
  background: linear-gradient(145deg, #f4fff9, #dff9ef);
  box-shadow: 0 14px 30px rgba(10, 153, 108, 0.14);
  animation: happyScreenGlow 5.2s ease-in-out infinite;
}

.screen-face {
  position: absolute;
  left: 24px;
  top: 27px;
  width: 82px;
  height: 82px;
  border-radius: 18px;
}

.angry-face {
  background: #ff8d7f;
  box-shadow: inset 0 -8px 0 rgba(148, 31, 22, 0.08);
}

.happy-face {
  background: #19b886;
  box-shadow: inset 0 -8px 0 rgba(0, 99, 70, 0.08);
  animation: happyFaceFloat 3.2s ease-in-out infinite;
}

.eye {
  position: absolute;
  top: 27px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
}

.eye-left { left: 21px; }
.eye-right { right: 21px; }

.angry-face .eye::after {
  content: "";
  position: absolute;
  top: -8px;
  width: 22px;
  height: 4px;
  border-radius: 4px;
  background: #7c2018;
}

.angry-face .eye-left::after { left: -7px; transform: rotate(22deg); }
.angry-face .eye-right::after { right: -7px; transform: rotate(-22deg); }

.face-mouth {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.angry-mouth {
  bottom: 17px;
  width: 34px;
  height: 15px;
  border: 5px solid #7c2018;
  border-bottom: 0;
  border-radius: 22px 22px 0 0;
}

.happy-mouth {
  bottom: 18px;
  width: 38px;
  height: 18px;
  border: 5px solid #fff;
  border-top: 0;
  border-radius: 0 0 24px 24px;
}

.screen-lines,
.clean-page {
  position: absolute;
  left: 126px;
  right: 22px;
  top: 30px;
  display: grid;
  gap: 12px;
}

.screen-lines span,
.clean-page span {
  display: block;
  height: 10px;
  border-radius: 999px;
}

.screen-lines span { background: #d9aaa5; }
.screen-lines span:nth-child(2) { width: 78%; }
.screen-lines span:nth-child(3) { width: 56%; }
.clean-page span { background: #8fd4bd; }
.clean-page span:nth-child(2) { width: 88%; }
.clean-page span:nth-child(3) { width: 72%; }
.clean-page span:nth-child(4) { width: 52%; }
.clean-page .clean-page-title {
  width: 64%;
  height: 15px;
  background: #26af82;
}

.flying-ad {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  min-width: 76px;
  min-height: 34px;
  padding: 7px 10px;
  border: 2px dashed #d83f34;
  border-radius: 7px;
  color: #8b1e17;
  background: #ffd2cc;
  box-shadow: 0 8px 18px rgba(139, 30, 23, 0.22);
  font-size: 0.56rem;
  font-weight: 950;
  letter-spacing: 0.03em;
  animation-duration: 5.2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.flying-ad-one { right: -11px; top: 18px; transform: rotate(5deg); animation-name: adBurstOne; }
.flying-ad-two { left: 88px; top: -12px; transform: rotate(-4deg); animation-name: adBurstTwo; }
.flying-ad-three { right: 9px; bottom: -11px; transform: rotate(-3deg); animation-name: adBurstThree; }
.flying-ad-four { left: -10px; bottom: 12px; transform: rotate(6deg); animation-name: adBurstFour; }

.scene-caption {
  margin: 9px 2px 0;
  color: #8a4b45;
  font-size: 0.79rem;
  font-weight: 750;
  text-align: center;
}

.scene-caption-clean { color: #3f725f; }

.demo-transform {
  position: relative;
  display: grid;
  height: 31px;
  place-items: center;
  color: var(--blue);
}

.transform-arrow {
  position: relative;
  z-index: 2;
  font-size: 1.7rem;
  font-weight: 950;
  animation: transformArrowPulse 1.8s ease-in-out infinite;
}

.transform-spark {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0;
  animation: sparklePop 5.2s ease-in-out infinite;
}

.spark-one { left: 39%; top: 5px; }
.spark-two { right: 39%; top: 14px; animation-delay: 0.18s; }
.spark-three { left: 49%; bottom: 0; animation-delay: 0.34s; }

.clean-badge {
  position: absolute;
  right: 18px;
  bottom: 15px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  box-shadow: 0 8px 18px rgba(10, 153, 108, 0.24);
  font-size: 1.25rem;
  font-weight: 950;
  animation: cleanBadgePop 5.2s ease-in-out infinite;
}

@keyframes angryScreenShake {
  0%, 12%, 35%, 100% { transform: translateX(0); }
  16% { transform: translateX(-4px) rotate(-0.5deg); }
  20% { transform: translateX(5px) rotate(0.6deg); }
  24% { transform: translateX(-3px) rotate(-0.4deg); }
  28% { transform: translateX(3px) rotate(0.3deg); }
}

@keyframes adBurstOne {
  0%, 8%, 100% { transform: translate(0, 0) rotate(5deg) scale(0.96); }
  18%, 28% { transform: translate(8px, -8px) rotate(11deg) scale(1.08); }
  38%, 75% { transform: translate(0, 0) rotate(5deg) scale(1); }
}

@keyframes adBurstTwo {
  0%, 10%, 100% { transform: translate(0, 0) rotate(-4deg) scale(0.96); }
  20%, 30% { transform: translate(-5px, -10px) rotate(-10deg) scale(1.08); }
  40%, 75% { transform: translate(0, 0) rotate(-4deg) scale(1); }
}

@keyframes adBurstThree {
  0%, 12%, 100% { transform: translate(0, 0) rotate(-3deg) scale(0.96); }
  22%, 32% { transform: translate(7px, 8px) rotate(4deg) scale(1.08); }
  42%, 75% { transform: translate(0, 0) rotate(-3deg) scale(1); }
}

@keyframes adBurstFour {
  0%, 14%, 100% { transform: translate(0, 0) rotate(6deg) scale(0.96); }
  24%, 34% { transform: translate(-8px, 5px) rotate(12deg) scale(1.08); }
  44%, 75% { transform: translate(0, 0) rotate(6deg) scale(1); }
}

@keyframes transformArrowPulse {
  0%, 100% { transform: translateY(-2px); opacity: 0.62; }
  50% { transform: translateY(3px); opacity: 1; }
}

@keyframes sparklePop {
  0%, 37%, 70%, 100% { opacity: 0; transform: scale(0.2); }
  46%, 58% { opacity: 1; transform: scale(1.2); }
}

@keyframes happyScreenGlow {
  0%, 38%, 100% { transform: scale(0.985); box-shadow: 0 14px 30px rgba(10, 153, 108, 0.11); }
  52%, 72% { transform: scale(1); box-shadow: 0 18px 38px rgba(10, 153, 108, 0.24); }
}

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

@keyframes cleanBadgePop {
  0%, 42%, 100% { transform: scale(0.75); opacity: 0.35; }
  53%, 72% { transform: scale(1); opacity: 1; }
}

@media (max-width: 520px) {
  .character-screen { min-height: 178px; }
  .screen-face { left: 18px; top: 23px; width: 72px; height: 72px; }
  .screen-lines, .clean-page { left: 108px; right: 16px; }
  .flying-ad { min-width: 62px; font-size: 0.5rem; }
  .flying-ad-two { left: 58px; }
}

@media (prefers-reduced-motion: reduce) {
  .angry-screen,
  .happy-screen,
  .happy-face,
  .flying-ad,
  .transform-arrow,
  .transform-spark,
  .clean-badge {
    animation: none !important;
  }
  .transform-spark { display: none; }
  .happy-screen { transform: none; }
  .clean-badge { opacity: 1; transform: none; }
}
