:root {
  --bg: #080b12;
  --surface: rgba(17, 24, 39, 0.78);
  --surface-solid: #111827;
  --surface-light: #1f2937;
  --line: rgba(245, 177, 26, 0.14);
  --line-bright: rgba(245, 177, 26, 0.26);
  --text: #f4f4f5;
  --muted: #a8b1c1;
  --accent: #e11d2f;
  --accent-dark: #9f1021;
  --accent-light: #f5b11a;
  --gold-soft: #fff1b8;
  --green: #34d399;
  --warning: #f5b11a;
  --snap-yellow: #ffec00;
  --snap-purple: #a855f7;
  --snap-magenta: #d946ef;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 0%, rgba(245, 177, 26, 0.1), transparent 34rem),
    radial-gradient(circle at 100% 8%, rgba(225, 29, 47, 0.14), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.ambient {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.ambient-one {
  top: 10%;
  left: -140px;
  width: 380px;
  height: 380px;
  background: rgba(245, 177, 26, 0.08);
}

.ambient-two {
  top: 45%;
  right: -160px;
  width: 420px;
  height: 420px;
  background: rgba(225, 29, 47, 0.1);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: 82px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(245, 177, 26, 0.18);
  background: rgba(8, 11, 18, 0.94);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
}

.brand-logo {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 13px rgba(225, 29, 47, 0.22));
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong,
.footer-brand strong {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.brand-copy strong span,
.footer-brand strong span {
  color: #ff2a37;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
}

.main-nav a {
  padding: 8px 15px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  transition: 180ms ease;
}

.main-nav a:hover,
.main-nav a.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: 0 8px 22px rgba(225, 29, 47, 0.24);
}

.header-cta,
.coming-card > a {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
}

.header-cta {
  padding: 10px 15px;
  border: 1px solid var(--line-bright);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  transition: 180ms ease;
}

.header-cta:hover {
  border-color: rgba(245, 177, 26, 0.45);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

main,
footer {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.view {
  min-height: 65vh;
  padding: 92px 0 120px;
  animation: view-in 380ms ease both;
}

@keyframes view-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  max-width: 790px;
  margin: 20px auto 110px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  padding: 8px 12px;
  border: 1px solid rgba(110, 231, 172, 0.18);
  border-radius: 999px;
  background: rgba(110, 231, 172, 0.06);
  color: #b6f4d2;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(110, 231, 172, 0.08), 0 0 14px var(--green);
}

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

h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
}

.hero h1,
.product-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero h1 span,
.product-hero h1 span {
  background: linear-gradient(90deg, var(--accent-light), var(--accent), #ff4654);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero > p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 28px;
}

.section-kicker {
  display: block;
  margin-bottom: 9px;
  color: var(--accent-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: 29px;
  letter-spacing: -0.035em;
}

.section-heading > p {
  max-width: 400px;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  text-align: right;
}

.product-count {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
}

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

.product-card,
.coming-card {
  position: relative;
  overflow: hidden;
  min-height: 410px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(22, 27, 41, 0.9), rgba(12, 15, 24, 0.88));
  box-shadow: var(--shadow);
}

.product-card {
  display: flex;
  flex-direction: column;
  padding: 22px;
  transition: transform 220ms ease, border-color 220ms ease;
}

.product-card::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 5%, rgba(225, 29, 47, 0.2), transparent 35%),
    radial-gradient(circle at 70% 60%, rgba(245, 177, 26, 0.08), transparent 40%);
  content: "";
}

.product-card::after {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 34px rgba(255, 255, 255, 0.015),
    0 0 0 68px rgba(255, 255, 255, 0.012);
}

.product-card:hover {
  border-color: rgba(245, 177, 26, 0.38);
  transform: translateY(-4px);
}

.snapzero-card {
  border-color: rgba(168, 85, 247, 0.25);
}

.snapzero-card::before {
  background:
    radial-gradient(circle at 88% 5%, rgba(168, 85, 247, 0.24), transparent 35%),
    radial-gradient(circle at 8% 70%, rgba(255, 236, 0, 0.08), transparent 40%);
}

.snapzero-card:hover {
  border-color: rgba(217, 70, 239, 0.55);
}

.snapzero-card .card-category {
  border-color: rgba(168, 85, 247, 0.32);
  background: rgba(168, 85, 247, 0.1);
  color: #e5bdff;
}

.snapzero-card .view-product {
  color: var(--snap-yellow);
}

.snapzero-card .product-feature-media {
  border-color: rgba(168, 85, 247, 0.3);
}

.product-card > * {
  position: relative;
  z-index: 1;
}

.card-topline,
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(245, 177, 26, 0.26);
  border-radius: 15px;
  background: rgba(225, 29, 47, 0.12);
}

.product-icon img {
  width: 100%;
  height: 100%;
  padding: 2px;
  object-fit: contain;
}

.card-category {
  padding: 7px 10px;
  border: 1px solid rgba(245, 177, 26, 0.22);
  border-radius: 999px;
  background: rgba(245, 177, 26, 0.07);
  color: var(--accent-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #b6f4d2;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.availability span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.product-copy {
  max-width: 540px;
  margin: 28px 8px 24px;
}

.product-feature-media {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 22px 0 0;
  border: 1px solid rgba(245, 177, 26, 0.2);
  border-radius: 20px;
  background: #080b12;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.32);
}

.product-feature-media::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  content: "";
  pointer-events: none;
}

.product-feature-media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 350ms ease;
}

.product-card:hover .product-feature-media img {
  transform: scale(1.018);
}

.product-label {
  margin-bottom: 10px;
  color: var(--accent-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-copy h3 {
  margin-bottom: 13px;
  font-size: 36px;
  letter-spacing: -0.045em;
}

.product-copy > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.app-pills,
.payment-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.app-pills span,
.payment-row span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #c5cad6;
  font-size: 11px;
  font-weight: 600;
}

.card-footer {
  margin: auto 8px 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.starting-price {
  display: grid;
  gap: 3px;
}

.starting-price small {
  color: var(--muted);
  font-size: 11px;
}

.starting-price strong {
  font-family: "Manrope", sans-serif;
  font-size: 23px;
}

.starting-price strong span {
  color: var(--muted);
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 500;
}

.view-product {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-light);
  font-size: 13px;
  font-weight: 700;
}

.coming-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  background:
    linear-gradient(rgba(16, 20, 31, 0.86), rgba(16, 20, 31, 0.96)),
    repeating-linear-gradient(135deg, transparent 0 10px, rgba(255, 255, 255, 0.025) 10px 11px);
}

.coming-label {
  align-self: start;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.coming-card h3 {
  margin-bottom: 12px;
  font-size: 25px;
  letter-spacing: -0.035em;
}

.coming-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.coming-card > a {
  justify-self: auto;
  color: var(--accent-light);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 54px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  transition: color 160ms ease;
}

.back-link:hover {
  color: var(--text);
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(390px, 0.9fr);
  align-items: center;
  gap: 70px;
  padding-bottom: 110px;
}

.snapzero-product-hero {
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
}

.snapzero-view .product-hero h1 span {
  background: linear-gradient(90deg, var(--snap-yellow), var(--snap-magenta), #b78aff);
  -webkit-background-clip: text;
  background-clip: text;
}

.snapzero-view .section-kicker {
  color: #d8a8ff;
}

.snapzero-hero-media {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(168, 85, 247, 0.34);
  border-radius: 28px;
  background: #070510;
  box-shadow: 0 28px 90px rgba(99, 25, 145, 0.28);
}

.snapzero-hero-media::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  content: "";
  pointer-events: none;
}

.snapzero-hero-media img {
  display: block;
  width: 100%;
  height: auto;
}

.product-hero-copy > p {
  max-width: 590px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #c8cedb;
  font-size: 12px;
  font-weight: 600;
}

.hero-meta svg {
  color: var(--green);
  font-size: 18px;
}

.bundle-visual {
  position: relative;
  min-height: 430px;
  max-width: 430px;
  padding: 48px 28px 76px;
  overflow: hidden;
  border: 1px solid rgba(245, 177, 26, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 15%, rgba(245, 177, 26, 0.13), transparent 55%),
    radial-gradient(circle at 90% 80%, rgba(225, 29, 47, 0.18), transparent 55%),
    linear-gradient(145deg, rgba(17, 24, 39, 0.96), rgba(8, 11, 18, 0.92));
  box-shadow: inset 0 0 70px rgba(225, 29, 47, 0.04), var(--shadow);
}

.bundle-glow {
  position: absolute;
  top: -85px;
  right: -85px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(245, 177, 26, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 34px rgba(225, 29, 47, 0.035),
    0 0 0 68px rgba(245, 177, 26, 0.018);
}

.app-icon-cloud {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px 14px;
  align-items: start;
}

.bundle-app {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin: 0;
  color: #cbd5e1;
  font-size: 10px;
  font-weight: 700;
}

.bundle-app img {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.34);
  transition: transform 180ms ease, border-color 180ms ease;
}

.bundle-app:hover img {
  border-color: rgba(245, 177, 26, 0.55);
  transform: translateY(-3px);
}

.bundle-app.featured-app {
  grid-column: auto;
}

.bundle-app.featured-app img {
  border-color: rgba(225, 29, 47, 0.32);
  object-fit: contain;
}

.bundle-caption {
  position: absolute;
  right: -12px;
  bottom: -16px;
  display: grid;
  gap: 4px;
  padding: 14px 18px;
  border: 1px solid rgba(245, 177, 26, 0.28);
  border-radius: 14px;
  background: rgba(15, 19, 29, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.bundle-caption span {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.bundle-caption strong {
  font-size: 13px;
}

.certificate-info-section {
  padding: 100px 0;
  border-top: 1px solid var(--line);
}

.certificate-info-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 54px;
  align-items: center;
  margin-bottom: 30px;
}

.certificate-info-intro h2 {
  max-width: 700px;
  margin-bottom: 20px;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.certificate-info-intro > div:first-child > p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.udid-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(245, 177, 26, 0.24);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0, rgba(225, 29, 47, 0.18), transparent 52%),
    linear-gradient(145deg, rgba(23, 27, 41, 0.96), rgba(12, 15, 24, 0.94));
  box-shadow: var(--shadow);
}

.udid-card::before {
  position: absolute;
  top: -55px;
  right: -55px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(245, 177, 26, 0.13);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 26px rgba(225, 29, 47, 0.035);
}

.udid-card > * {
  position: relative;
  z-index: 1;
}

.udid-card-label {
  display: block;
  margin-bottom: 14px;
  color: var(--accent-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.udid-card strong {
  display: block;
  margin-bottom: 9px;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.udid-card p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.udid-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 15px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(225, 29, 47, 0.23);
}

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

.certificate-benefits article {
  display: flex;
  gap: 15px;
  min-height: 145px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 100% 0, rgba(245, 177, 26, 0.055), transparent 48%),
    rgba(17, 22, 34, 0.64);
}

.benefit-icon {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(245, 177, 26, 0.24);
  border-radius: 12px;
  background: rgba(225, 29, 47, 0.09);
  color: var(--accent-light);
  font-family: "Manrope", sans-serif;
  font-size: 9px;
  font-weight: 800;
}

.certificate-benefits h3 {
  margin: 2px 0 8px;
  font-size: 15px;
  letter-spacing: -0.025em;
}

.certificate-benefits p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.certificate-device-note {
  margin: 16px 0 0;
  padding: 13px 17px;
  border: 1px solid rgba(245, 177, 26, 0.16);
  border-radius: 12px;
  background: rgba(245, 177, 26, 0.045);
  color: #c7b995;
  font-size: 11px;
  line-height: 1.6;
}

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

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

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

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 26px 20px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(18, 22, 34, 0.68);
  transition: border-color 180ms ease, transform 180ms ease;
}

.plan-card:hover,
.plan-card.selected {
  border-color: rgba(245, 177, 26, 0.45);
  transform: translateY(-3px);
}

.plan-card.selected {
  box-shadow: 0 0 0 1px rgba(225, 29, 47, 0.22), 0 18px 60px rgba(159, 16, 33, 0.18);
}

.plan-card.featured {
  background: linear-gradient(160deg, rgba(245, 177, 26, 0.13), rgba(225, 29, 47, 0.08) 45%, rgba(18, 22, 34, 0.78) 72%);
}

.popular-tag {
  position: absolute;
  top: 17px;
  right: 16px;
  padding: 5px 7px;
  border-radius: 999px;
  background: rgba(245, 177, 26, 0.13);
  color: var(--accent-light);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-price {
  display: flex;
  align-items: start;
  margin: 24px 0 2px;
  font-family: "Manrope", sans-serif;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.plan-price span {
  margin: 8px 3px 0 0;
  color: var(--accent-light);
  font-size: 15px;
}

.plan-term {
  color: var(--muted);
  font-size: 11px;
}

.plan-term del {
  margin-left: 6px;
  color: #777f91;
}

.plan-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 16px;
}

.plan-card li::before {
  position: absolute;
  top: 4px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.plan-card li strong {
  color: #dfe3eb;
  font-weight: 600;
}

.select-plan {
  width: 100%;
  margin-top: auto;
  padding: 11px;
  border: 1px solid var(--line-bright);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  transition: 160ms ease;
}

.select-plan:hover,
.selected .select-plan {
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: 0 8px 22px rgba(225, 29, 47, 0.22);
}

.snapzero-plan-card {
  min-height: 350px;
  border-color: rgba(168, 85, 247, 0.22);
  background:
    radial-gradient(circle at 100% 0, rgba(168, 85, 247, 0.12), transparent 45%),
    rgba(18, 16, 35, 0.76);
}

.snapzero-plan-card.featured {
  background:
    radial-gradient(circle at 100% 0, rgba(217, 70, 239, 0.2), transparent 45%),
    linear-gradient(160deg, rgba(255, 236, 0, 0.08), rgba(168, 85, 247, 0.1) 48%, rgba(18, 16, 35, 0.8));
}

.snapzero-plan-card:hover,
.snapzero-plan-card.selected {
  border-color: rgba(217, 70, 239, 0.62);
}

.snapzero-plan-card.selected {
  box-shadow: 0 0 0 1px rgba(255, 236, 0, 0.16), 0 22px 70px rgba(112, 35, 163, 0.25);
}

.snapzero-plan-card .popular-tag {
  background: rgba(168, 85, 247, 0.16);
  color: #e8c9ff;
}

.snapzero-plan-card .plan-price span {
  color: var(--snap-yellow);
}

.snapzero-plan-card .select-plan:hover,
.snapzero-plan-card.selected .select-plan {
  background: linear-gradient(135deg, #9328dd, var(--snap-magenta));
  box-shadow: 0 10px 28px rgba(168, 85, 247, 0.28);
}

.snapzero-features-section {
  padding: 100px 0;
  border-top: 1px solid rgba(168, 85, 247, 0.18);
}

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

.feature-category-card {
  padding: 25px;
  border: 1px solid rgba(168, 85, 247, 0.18);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0, rgba(168, 85, 247, 0.09), transparent 42%),
    rgba(15, 17, 29, 0.7);
}

.feature-card-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 19px;
}

.feature-card-title > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(168, 85, 247, 0.24);
  border-radius: 12px;
  background: rgba(168, 85, 247, 0.08);
  font-size: 18px;
}

.feature-card-title h3 {
  margin: 0;
  font-size: 17px;
  letter-spacing: -0.025em;
}

.feature-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 17px;
}

.feature-list li::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--snap-yellow), var(--snap-magenta));
  content: "";
}

.smart-features {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.smart-features article {
  display: grid;
  align-content: start;
  gap: 15px;
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(255, 236, 0, 0.13);
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, rgba(255, 236, 0, 0.055), rgba(168, 85, 247, 0.07));
}

.smart-features article > span {
  font-size: 24px;
}

.smart-features h3 {
  margin-bottom: 9px;
  font-size: 14px;
  line-height: 1.3;
}

.smart-features p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.order-section {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 70px;
  align-items: center;
  padding: 62px;
  border: 1px solid rgba(245, 177, 26, 0.18);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 100% 0, rgba(225, 29, 47, 0.18), transparent 42%),
    radial-gradient(circle at 0 100%, rgba(245, 177, 26, 0.08), transparent 40%),
    linear-gradient(145deg, rgba(21, 25, 38, 0.92), rgba(12, 15, 24, 0.92));
  box-shadow: var(--shadow);
}

.snapzero-order-section {
  border-color: rgba(168, 85, 247, 0.25);
  background:
    radial-gradient(circle at 100% 0, rgba(217, 70, 239, 0.22), transparent 42%),
    radial-gradient(circle at 0 100%, rgba(255, 236, 0, 0.07), transparent 40%),
    linear-gradient(145deg, rgba(21, 18, 40, 0.94), rgba(10, 9, 22, 0.94));
}

.snapzero-order-section .order-card {
  border-color: rgba(168, 85, 247, 0.22);
}

.snapzero-order-section .primary-action {
  border-color: rgba(217, 70, 239, 0.3);
  background: linear-gradient(135deg, #8b22d3, var(--snap-magenta));
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.28);
}

.snapzero-note {
  border-color: rgba(168, 85, 247, 0.2);
  background: rgba(168, 85, 247, 0.055);
}

.snapzero-note .warning-icon {
  border-color: rgba(168, 85, 247, 0.34);
  color: #d9b3ff;
}

.snapzero-note p {
  color: #aaa3bb;
}

.order-copy h2 {
  max-width: 600px;
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.order-copy > p {
  max-width: 590px;
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.order-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(7, 9, 15, 0.62);
}

.selected-order {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 19px;
  border-bottom: 1px solid var(--line);
}

.selected-order span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.selected-order strong {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
}

.primary-action,
.secondary-action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
}

.primary-action {
  gap: 8px;
  border: 1px solid rgba(245, 177, 26, 0.28);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: 0 10px 30px rgba(225, 29, 47, 0.28);
}

.secondary-action {
  margin-top: 9px;
  border: 1px solid var(--line);
  color: var(--muted);
}

.warranty-note {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  padding: 22px 25px;
  border: 1px solid rgba(255, 203, 107, 0.17);
  border-radius: var(--radius-md);
  background: rgba(255, 203, 107, 0.045);
}

.warning-icon {
  display: grid;
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid rgba(255, 203, 107, 0.28);
  border-radius: 50%;
  color: var(--warning);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.warranty-note strong {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
}

.warranty-note p {
  margin-bottom: 0;
  color: #b9ad94;
  font-size: 12px;
  line-height: 1.65;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  min-height: 150px;
  border-top: 1px solid var(--line);
}

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

.footer-brand p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.social-links {
  display: flex;
  gap: 22px;
}

.social-links a {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  transition: color 160ms ease;
}

.social-links a:hover {
  color: var(--text);
}

.copyright {
  justify-self: end;
  margin: 0;
  color: #666e80;
  font-size: 10px;
}

.toast {
  position: fixed;
  z-index: 50;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100% - 48px);
  padding: 13px 17px;
  border: 1px solid var(--line-bright);
  border-radius: 13px;
  background: rgba(17, 21, 32, 0.96);
  box-shadow: var(--shadow);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: 220ms ease;
}

.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

.toast-check {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: rgba(110, 231, 172, 0.12);
  color: var(--green);
  font-size: 12px;
}

@media (max-width: 980px) {
  .product-grid,
  .product-hero,
  .order-section {
    grid-template-columns: 1fr;
  }

  .product-grid {
    max-width: 720px;
    margin-inline: auto;
  }

  .coming-card {
    min-height: 290px;
  }

  .product-hero {
    gap: 80px;
  }

  .product-hero-copy {
    max-width: 700px;
  }

  .bundle-visual {
    width: min(100%, 430px);
    margin-inline: auto;
  }

  .certificate-info-intro {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .snapzero-hero-media {
    width: min(100%, 760px);
    margin-inline: auto;
  }

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

  .order-section {
    gap: 36px;
  }

  .smart-features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: 1fr auto;
    width: min(100% - 28px, 1120px);
  }

  .main-nav {
    display: none;
  }

  .header-cta {
    padding: 9px 12px;
  }

  main,
  footer {
    width: min(100% - 28px, 1120px);
  }

  .view {
    padding: 64px 0 80px;
  }

  .hero {
    margin: 10px auto 75px;
  }

  .hero h1,
  .product-hero h1 {
    font-size: clamp(43px, 13vw, 68px);
  }

  .hero > p {
    font-size: 15px;
  }

  .section-heading {
    align-items: start;
  }

  .section-heading > p {
    display: none;
  }

  .product-card,
  .coming-card {
    min-height: 380px;
    padding: 16px;
    border-radius: 22px;
  }

  .product-copy {
    margin: 24px 6px 22px;
  }

  .product-feature-media {
    margin-top: 16px;
    border-radius: 15px;
  }

  .bundle-caption {
    right: 10px;
    bottom: 10px;
    max-width: calc(100% - 20px);
  }

  .product-copy h3 {
    font-size: 30px;
  }

  .app-pills span:nth-child(n + 4) {
    display: none;
  }

  .back-link {
    margin-bottom: 46px;
  }

  .product-hero {
    padding-bottom: 80px;
  }

  .plans-section {
    padding: 75px 0;
  }

  .certificate-info-section {
    padding: 75px 0;
  }

  .certificate-info-intro h2 {
    font-size: 35px;
  }

  .certificate-benefits {
    grid-template-columns: 1fr;
  }

  .certificate-benefits article {
    min-height: 0;
  }

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

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

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

  .snapzero-features-section {
    padding: 75px 0;
  }

  .plan-card {
    min-height: 315px;
  }

  .order-section {
    padding: 32px 22px;
    border-radius: 22px;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 0;
  }

  .social-links {
    flex-wrap: wrap;
  }

  .copyright {
    justify-self: start;
  }
}

@media (max-width: 480px) {
  .brand-copy small {
    display: none;
  }

  .header-cta {
    font-size: 11px;
  }

  .eyebrow {
    margin-bottom: 20px;
    font-size: 10px;
  }

  .hero h1 {
    letter-spacing: -0.06em;
  }

  .product-count {
    display: none;
  }

  .product-card {
    min-height: 405px;
  }

  .card-footer {
    align-items: end;
  }

  .bundle-caption {
    right: -4px;
    bottom: -12px;
  }

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

  .smart-features {
    grid-template-columns: 1fr;
  }

  .smart-features article {
    min-height: 0;
  }

  .plan-card {
    min-height: 300px;
  }

  .order-copy h2 {
    font-size: 31px;
  }

  .udid-card {
    padding: 23px;
  }

  .payment-row span {
    font-size: 10px;
  }

  .toast {
    right: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
  }
}

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

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