/**
 * As per New Design styling
 */

:root {
  --gold: #E0A12B;
  --gold-2: #C68A1F;
  --brown: #5A2E1C;
  --dark: #0F172A;
  --light: #FFFFFF;
  --alt-bg: #F8FAFC;
  --muted-bg: #F1F5F9;
  --text: #0F172A;
  --text-2: #475569;
  --line: #E5E7EB;
  --surface: #FFFFFF;
  --radius: 18px;
  --shadow-sm: 0 2px 10px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 24px rgba(15, 23, 42, 0.1);
  --shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  --shadow-nav: 0 24px 48px rgba(15, 23, 42, 0.14), 0 0 0 1px rgba(15, 23, 42, 0.04);
}

html, body {
  margin: 0 !important;
  padding: 0 !important;
  font-family: "DM Sans", sans-serif !important;
  color: var(--text) !important;
  background: var(--light) !important;
  overflow-x: clip !important;
}

h1, h2, h3, h4 {
  font-family: "Manrope", sans-serif !important;
  margin: 0 0 10px !important;
  line-height: 1.15 !important;
  letter-spacing: -0.015em !important;
}

.elementor-widget-text-editor {
	font-family: "DM Sans", sans-serif !important;
}

.container { width: min(1180px, 92vw); margin: 0 auto; }
.page-shell {
  position: relative;
  background:
    radial-gradient(ellipse 70% 45% at 100% 0%, rgba(224, 161, 43, 0.05), transparent 60%),
    radial-gradient(ellipse 55% 40% at 0% 35%, rgba(148, 163, 184, 0.06), transparent 58%),
    #ffffff;
}
.top-grid-bg { display: none; }
.text-gold { color: var(--gold); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.92) 0%, rgba(248, 250, 252, 0.9) 100%);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
}

.navbar {
  min-height: 82px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 0 2px;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  z-index: 2;
  letter-spacing: -0.02em;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.brand-text {
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
}

.brand-logo {
  width: auto;
  height: 56px;
  max-height: 58px;
  max-width: min(340px, 44vw);
  border-radius: 0;
  object-fit: contain;
  display: block;
}

.menu-toggle {
  display: none;
  z-index: 102;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.menu-toggle:hover {
  border-color: rgba(224, 161, 43, 0.45);
  box-shadow: 0 4px 14px rgba(224, 161, 43, 0.15);
}
.menu-toggle-bars,
.menu-toggle-bars::before,
.menu-toggle-bars::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.2s;
}
.menu-toggle-bars {
  position: relative;
}
.menu-toggle-bars::before,
.menu-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}
.menu-toggle-bars::before {
  top: -6px;
}
.menu-toggle-bars::after {
  top: 6px;
}
.site-header.is-menu-open .menu-toggle-bars {
  background: transparent;
}
.site-header.is-menu-open .menu-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}
.site-header.is-menu-open .menu-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(2px);
}
.site-header.is-menu-open .nav-backdrop {
  display: block;
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 8px 20px;
  flex: 1;
  justify-content: flex-end;
}

.nav-primary {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  border-radius: 10px;
  transition: color 0.2s, background 0.2s;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  line-height: 1.2;
}

a.nav-link:hover,
a.nav-link:focus-visible {
  color: var(--brown);
  background: rgba(224, 161, 43, 0.08);
  outline: none;
}

.nav-link--trigger {
  color: var(--text);
}
.nav-link--trigger:hover,
.nav-link--trigger:focus-visible {
  color: var(--brown);
  background: rgba(224, 161, 43, 0.08);
  outline: none;
}

.nav-chevron {
  opacity: 0.65;
  transition: transform 0.25s ease;
}
.nav-item--dropdown:hover .nav-chevron,
.nav-item--dropdown:focus-within .nav-chevron,
.nav-item--dropdown.is-open .nav-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-dropdown {
  position: absolute;
  left: 50%;
  top: calc(100% + 4px);
  min-width: 520px;
  padding-top: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 6px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s;
  z-index: 101;
  max-width: calc(100vw - 20px);
}

@media (hover: hover) and (min-width: 761px) {
  .nav-item--dropdown:hover .nav-dropdown,
  .nav-item--dropdown:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }
}

.nav-dropdown--mega {
  width: min(640px, calc(100vw - 32px));
  min-width: 0;
}

.nav-dropdown--resources {
  width: min(680px, calc(100vw - 32px));
  min-width: 0;
}

.mega-card-icon--res-feat {
  background: rgba(16, 185, 129, 0.1);
  color: #047857;
}
.mega-card-icon--res-faq {
  background: rgba(59, 130, 246, 0.1);
  color: #1d4ed8;
}
.mega-card-icon--res-notes {
  background: rgba(224, 161, 43, 0.14);
  color: var(--brown);
}
.mega-card-icon--res-news {
  background: rgba(139, 92, 246, 0.12);
  color: #6d28d9;
}
.mega-card-icon--res-help {
  background: rgba(244, 63, 94, 0.1);
  color: #be123c;
}

#features,
#faqs,
#release-notes,
#news-updates {
  scroll-margin-top: 96px;
}

.mega-inner {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 0;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-nav);
  overflow: hidden;
}

.mega-inner--support {
  overflow: visible;
}

.nav-dropdown--support {
  width: min(720px, calc(100vw - 32px));
  min-width: 0;
}

.mega-aside {
  padding: 22px 20px;
  background: linear-gradient(165deg, #fffdf8 0%, #f8fafc 55%, #f1f5f9 100%);
  border-right: 1px solid var(--line);
}

.mega-kicker {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin: 0 0 8px;
}

.mega-title {
  font-family: "Manrope", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.25;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.mega-copy {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0 0 16px;
}

.mega-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brown);
}
.mega-cta:hover {
  color: var(--text);
}
.mega-cta svg {
  opacity: 0.85;
  transition: transform 0.2s;
}
.mega-cta:hover svg {
  transform: translateX(3px);
}

.mega-grid {
  list-style: none;
  margin: 0;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mega-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: #fff;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}
.mega-card:hover {
  border-color: rgba(224, 161, 43, 0.45);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
  transform: translateY(-1px);
}

.mega-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.mega-card-icon--usb {
  background: rgba(59, 130, 246, 0.1);
  color: #1d4ed8;
}
.mega-card-icon--std {
  background: rgba(16, 185, 129, 0.1);
  color: #047857;
}
.mega-card-icon--prem {
  background: rgba(139, 92, 246, 0.12);
  color: #6d28d9;
}

.mega-card-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  text-align: left;
}

.mega-card-title {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text);
}

.mega-card-desc {
  font-size: 0.78rem;
  color: var(--text-2);
  line-height: 1.35;
}

.mega-card-arrow {
  color: var(--gold-2);
  font-weight: 600;
  opacity: 0;
  transform: translateX(-4px);
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.mega-card:hover .mega-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

button.mega-card {
  font: inherit;
  font-family: inherit;
  color: inherit;
  cursor: pointer;
  text-align: left;
  width: 100%;
}

.mega-card--flyout .mega-flyout-chevron {
  font-size: 0.65rem;
  color: var(--gold-2);
  margin-left: 4px;
  opacity: 0.9;
  line-height: 1;
}

.mega-flyout-item {
  position: relative;
  list-style: none;
}

.mega-flyout-panel {
  list-style: none;
  margin: 0;
  padding: 8px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-nav);
  min-width: 220px;
  z-index: 6;
}

.mega-flyout-panel li {
  margin: 0;
}

.mega-flyout-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  transition: background 0.15s ease;
}

.mega-flyout-panel a:hover,
.mega-flyout-panel a:focus-visible {
  background: rgba(224, 161, 43, 0.12);
  color: var(--brown);
  outline: none;
}

@media (hover: hover) and (min-width: 761px) {
  .mega-flyout-panel {
    position: absolute;
    left: calc(100% + 8px);
    top: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.18s ease,
      visibility 0.18s ease;
  }
  .mega-flyout-item:hover .mega-flyout-panel,
  .mega-flyout-item:focus-within .mega-flyout-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

.mega-card-icon--sup-ticket {
  background: rgba(59, 130, 246, 0.1);
  color: #1d4ed8;
}
.mega-card-icon--sup-about {
  background: rgba(16, 185, 129, 0.1);
  color: #047857;
}
.mega-card-icon--sup-contact {
  background: rgba(139, 92, 246, 0.12);
  color: #6d28d9;
}
.mega-card-icon--sup-legal {
  background: rgba(71, 85, 105, 0.12);
  color: #334155;
}
.mega-card-icon--sup-upload {
  background: rgba(224, 161, 43, 0.16);
  color: var(--brown);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 8px;
  padding-left: 12px;
  border-left: 1px solid var(--line);
}

.nav-cta {
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(224, 161, 43, 0.25);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  padding: 12px 20px;
  transition: .22s ease;
}
.btn-sm { padding: 10px 16px; }
.btn-primary {
  background: var(--gold);
  color: #111111;
}
.btn-primary:hover {
  background: var(--gold-2);
  box-shadow: 0 8px 18px rgba(224, 161, 43, 0.35);
  transform: translateY(-1px);
}
.btn-secondary {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-secondary:hover {
  background: var(--gold);
  color: #111111;
}

.hero {
  padding: 35px 0 52px;
}

.elementor-27 .elementor-element.elementor-element-8be17a4 { 
	background: radial-gradient(ellipse at 60% 0%, rgba(224, 161, 43, 0.11), transparent 45%),
    linear-gradient(175deg, #fffef9 0%, #ffffff 60%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr .88fr;
  gap: 52px;
  align-items: start;
}

.hero-copy { max-width: 620px; }

.hero h1 {
  font-size: clamp(1.95rem, 3.6vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 18px;
  text-wrap: balance;
  font-weight: 600;
}

.subtext {
  font-size: 1.1rem;
  line-height: 1.72;
  color: var(--text-2);
  max-width: 57ch;
  margin-top: 4px;
  text-wrap: pretty;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
  background: rgba(224, 161, 43, 0.1);
  border: 1px solid rgba(224, 161, 43, 0.28);
  color: var(--brown);
  font-weight: 600;
  font-size: .84rem;
  letter-spacing: 0.01em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn-hero {
  padding: 14px 28px;
  font-size: 1rem;
}

.btn-primary {
  background: var(--gold);
  color: #111111;
}
.btn-primary:hover {
  background: var(--gold-2);
  box-shadow: 0 10px 24px rgba(224, 161, 43, 0.38);
  transform: translateY(-2px) scale(1.02);
}
.btn-secondary:hover {
  background: var(--gold);
  color: #111111;
  transform: translateY(-2px) scale(1.02);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid var(--line);
  color: var(--text);
  font-size: .86rem;
  font-weight: 600;
}

.trust-badge svg {
  width: 13px;
  height: 13px;
  fill: var(--gold);
  flex-shrink: 0;
}

.hero-compat-line {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(224, 161, 43, 0.28);
  background: linear-gradient(140deg, rgba(224, 161, 43, 0.08), rgba(255, 255, 255, 0.95));
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
}

.hero-compat-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(224, 161, 43, 0.16);
  color: var(--gold-2);
  flex-shrink: 0;
}

.hero-compat-icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.hero-compat-text {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--brown);
}

.hero-trust-strip {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(148, 163, 184, 0.26);
}

.hero-trust-headline {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.5;
  color: #334155;
}

.hero-trust-inline {
  margin: 9px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
}

.hero-trust-inline li {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #334155;
  line-height: 1.35;
}

.hero-trust-inline li + li::before {
  content: "";
  width: 4px;
  height: 4px;
  margin: 0 10px;
  border-radius: 999px;
  background: rgba(100, 116, 139, 0.55);
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: .3s ease;
  will-change: transform, box-shadow;
}
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(224, 161, 43, 0.45);
  box-shadow: var(--shadow-md);
}

.hero-proof {
  margin-top: 36px;
  display: grid;
  grid-template-columns: minmax(200px, 38%) 1fr;
  gap: 0;
  align-items: stretch;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 254, 249, 0.97) 0%, #ffffff 55%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 18px 40px rgba(15, 23, 42, 0.07);
}

.hero-proof-section {
  padding-top: 30px;
}

.hero-proof-section .hero-proof {
  margin-top: 0;
}
.hero-proof__media {
  position: relative;
  min-height: 200px;
  background: linear-gradient(160deg, #f1f5f9 0%, #e2e8f0 100%);
}
.hero-proof__media img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
.hero-proof__content {
  padding: clamp(20px, 3vw, 32px) clamp(20px, 3.5vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-left: 1px solid rgba(226, 232, 240, 0.9);
}
.hero-proof__eyebrow {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brown);
}
.hero-proof__title {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.15rem, 2.1vw, 1.45rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 52ch;
}
.hero-proof__lead {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-2);
  max-width: 62ch;
}
.hero-proof__highlights {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.hero-proof__highlights li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-2);
}
.hero-proof__highlights strong {
  color: var(--text);
  font-weight: 700;
}
.hero-proof__check {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
  line-height: 0;
}
.hero-proof__note {
  margin: 6px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-2);
  max-width: 62ch;
}
.hero-proof__note strong {
  color: var(--text);
  font-weight: 600;
}

.hero-visual-wrap {
  position: relative;
}

.visual-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 10px;
  margin-top: 2px;
  padding: 5px 10px;
  background: rgba(224, 161, 43, 0.1);
  border-radius: 999px;
  border: 1px solid rgba(224, 161, 43, 0.25);
}

.visual-label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  animation: dot-pulse 2s ease-in-out infinite;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background:
    radial-gradient(circle at 90% 20%, rgba(224, 161, 43, 0.15), transparent 35%),
    #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12), 0 4px 12px rgba(224, 161, 43, 0.1);
  color: var(--text);
}

.hero-visual .small { color: var(--text-2); }
.status-heading {
  font-family: "DM Sans", sans-serif;
  color: var(--text-2);
  margin: 14px 0 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(42px);
  opacity: .28;
  pointer-events: none;
}
.ambient-a { width: 180px; height: 180px; background: var(--gold); top: -42px; right: -30px; }
.ambient-b { width: 140px; height: 140px; background: #f1d9a4; bottom: -44px; left: -22px; }

.security-scene {
  position: relative;
  z-index: 2;
  border: 1px solid #f3e2b8;
  border-radius: 14px;
  background: linear-gradient(145deg, #fffdf8 0%, #fffcf4 45%, #fff8e8 100%);
  background-size: 200% 200%;
  animation: scene-tint 14s ease-in-out infinite;
  padding: 16px;
  margin-bottom: 16px;
  overflow: hidden;
}

.smart-home-scene {
  position: relative;
  border: 1px solid #f3e2b8;
  border-radius: 14px;
  background: linear-gradient(145deg, #fffdf8 0%, #fffcf4 50%, #fff8e8 100%);
  padding: 16px;
  margin-bottom: 16px;
  overflow: hidden;
}

.smart-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.smart-panel-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #475569;
}

.smart-panel-subtitle {
  font-size: 0.68rem;
  color: #64748b;
}

.smart-door {
  position: relative;
  min-height: 116px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  display: grid;
  place-items: center;
}

.smart-flow {
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: center;
}

.smart-flow-label {
  min-width: 116px;
  padding: 8px 10px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 10px;
  background: #ffffff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  color: #475569;
}

.smart-flow-label--left {
  color: #334155;
}

.smart-flow-label--right {
  position: relative;
  color: #7c2d12;
}

.smart-target-on {
  position: absolute;
  inset: 8px 10px;
  opacity: 0;
  color: #166534;
  animation: smart-target-on-show 7s ease-in-out infinite;
}

.smart-target-off {
  opacity: 1;
  animation: smart-target-off-hide 7s ease-in-out infinite;
}

.smart-flow-toggle {
  width: 34px;
  height: 14px;
  border-radius: 999px;
  background: #cbd5e1;
  border: 1px solid rgba(148, 163, 184, 0.45);
  position: relative;
  overflow: hidden;
  animation: smart-toggle-track 7s ease-in-out infinite;
}

.smart-flow-toggle-knob {
  position: absolute;
  top: 1px;
  left: 1px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.22);
  animation: smart-toggle-on 7s ease-in-out infinite;
}

.smart-door-status {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.smart-door-status--disabled {
  color: #7c2d12;
  animation: smart-disabled-fade 7s ease-in-out infinite;
}

.smart-door-status--enabled {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #166534;
  opacity: 0;
  animation: smart-enabled-show 7s ease-in-out infinite;
}

.smart-lock-core {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: radial-gradient(circle at 30% 30%, #f9e0a6, var(--gold-2));
  display: grid;
  place-items: center;
  box-shadow: 0 10px 22px rgba(224, 161, 43, 0.22);
  animation: smart-lock-turn 7s cubic-bezier(0.35, 0.05, 0.22, 1) infinite;
}

.smart-lock-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(90, 46, 28, 0.22));
}

.smart-lock-pulse {
  position: absolute;
  inset: -12px;
  border-radius: 999px;
  border: 1px solid rgba(224, 161, 43, 0.42);
  opacity: 0;
  animation: smart-pulse 7s ease-out infinite;
}

.smart-cursor {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 10px;
  height: 14px;
  background: #0f172a;
  clip-path: polygon(0 0, 100% 50%, 46% 56%, 56% 100%, 40% 100%, 30% 60%, 0 72%);
  z-index: 4;
  animation: smart-cursor-click 7s ease-in-out infinite;
}

.smart-access-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.smart-access-item {
  position: relative;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.84);
  padding: 7px 9px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.74rem;
  overflow: hidden;
}

.smart-access-item::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -55%;
  width: 55%;
  background: linear-gradient(90deg, rgba(224, 161, 43, 0), rgba(224, 161, 43, 0.2), rgba(224, 161, 43, 0));
  animation: smart-wave 7s ease-in-out infinite;
  pointer-events: none;
}

.smart-access-item:nth-child(2)::after { animation-delay: 0.45s; }
.smart-access-item:nth-child(3)::after { animation-delay: 0.9s; }

.smart-state {
  position: absolute;
  right: 9px;
  font-weight: 600;
  transition: opacity .35s ease, transform .35s ease;
}

.smart-state--off {
  color: #7c2d12;
  opacity: 1;
  animation: smart-state-off 7s ease-in-out infinite;
}

.smart-state--on {
  color: #166534;
  opacity: 0;
  transform: translateY(2px);
  animation: smart-state-on 7s ease-in-out infinite;
}

.smart-state--on::before {
  content: "🔒 ";
  font-size: 0.72rem;
}

.smart-access-item:nth-child(2) .smart-state--off,
.smart-access-item:nth-child(2) .smart-state--on { animation-delay: .45s; }
.smart-access-item:nth-child(3) .smart-state--off,
.smart-access-item:nth-child(3) .smart-state--on { animation-delay: .9s; }

.smart-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #16a34a;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.16);
}

.guardian-scene {
  min-height: 140px;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 10px;
}

.guardian-node {
  min-width: 110px;
  border-radius: 12px;
  border: 1px solid rgba(224, 161, 43, 0.42);
  background: linear-gradient(165deg, #fffef8, #fff5de);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}

.guardian-node-target {
  background: linear-gradient(165deg, #fff7e7, #fff1d6);
}

.guardian-icon {
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--brown);
}

.guardian-rail {
  position: relative;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: linear-gradient(
    90deg,
    rgba(224, 161, 43, 0.08) 0%,
    rgba(224, 161, 43, 0.3) 50%,
    rgba(224, 161, 43, 0.08) 100%
  );
}

.guardian-signal {
  position: absolute;
  top: 1px;
  width: 10px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f9e4b5, #d89b2c);
  box-shadow: 0 0 10px rgba(224, 161, 43, 0.45);
  animation: guardian-flow 2.5s linear infinite;
}

.gs1 { animation-delay: 0s; }
.gs2 { animation-delay: 0.75s; }
.gs3 { animation-delay: 1.5s; }
.gs4 { animation-delay: 0.2s; }
.gs5 { animation-delay: 0.95s; }
.gs6 { animation-delay: 1.7s; }

.guardian-core {
  width: 112px;
  height: 112px;
  position: relative;
  display: grid;
  place-items: center;
}

.guardian-ring {
  position: absolute;
  border-radius: 999px;
  border: 1px dashed rgba(198, 138, 31, 0.44);
}

.gr1 {
  width: 110px;
  height: 110px;
  animation: spin 8.5s linear infinite;
}

.gr2 {
  width: 86px;
  height: 86px;
  animation: spin-reverse 6.2s linear infinite;
}

.guardian-shield {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  background: radial-gradient(circle at 30% 30%, #f9e0a6, var(--gold-2));
  box-shadow:
    0 10px 24px rgba(224, 161, 43, 0.35),
    inset 0 1px 2px rgba(255, 255, 255, 0.45);
  display: grid;
  place-items: center;
  z-index: 2;
}

.guardian-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(90, 46, 28, 0.22));
}

.guardian-aura {
  position: absolute;
  inset: -14px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(224, 161, 43, 0.23), transparent 70%);
  animation: aura-breathe 2.8s ease-in-out infinite;
  pointer-events: none;
}

.status-list div {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}
.status-list span { color: var(--text-2); font-size: .9rem; }
.status-list strong { color: var(--brown); font-weight: 700; font-size: .9rem; }
.small { font-size: .84rem; }


.section {
  padding: 50px 0;
  border-bottom: 1px solid var(--line);
}
.section:last-of-type { border-bottom: 0; }
.section h2 { font-size: clamp(1.52rem, 3vw, 2rem); margin-bottom: 14px; color: var(--text); letter-spacing: -0.018em;
  background: linear-gradient(98deg, #0f172a 0%, #334155 62%, #8b6a1d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
/* .section p { max-width: 78ch; } */

.why-matters-panel {
  border: 1px solid rgba(224, 161, 43, 0.2);
  border-radius: 20px;
  padding: clamp(20px, 3vw, 30px);
  background:
    radial-gradient(ellipse 65% 50% at 100% 0%, rgba(224, 161, 43, 0.08), transparent 60%),
    linear-gradient(168deg, #ffffff 0%, #faf8f5 100%);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.why-matters-copy {
  max-width: 70ch;
}

.why-matters-eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.why-matters-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(1.38rem, 2.8vw, 1.9rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
}

.why-matters-lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.62;
  color: var(--text-2);
  width: 100%;
  max-width: 100% !important;
  display: block;
}

.why-matters-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.why-matters-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.55;
}

.why-matters-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(239, 68, 68, 0.12);
  color: #b91c1c;
}

.why-matters-close {
  margin: 16px 0 0;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid rgba(22, 163, 74, 0.24);
  background: rgba(240, 253, 244, 0.8);
  color: #166534;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.55;
  max-width: none;
}

.why-hardware-panel {
  padding: clamp(22px, 3.2vw, 36px);
  border-radius: 22px;

  background:
    radial-gradient(ellipse 72% 52% at 100% 0%, rgba(224, 161, 43, 0.09), transparent 56%),
    radial-gradient(ellipse 58% 42% at 0% 100%, rgba(90, 46, 28, 0.045), transparent 52%),
    linear-gradient(168deg, #ffffff 0%, #faf8f5 100%);
  
}

.why-hardware-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin: 0 0 10px;
}

.why-hardware-copy h2 {
  font-size: clamp(1.45rem, 2.8vw, 1.9rem);
  margin: 0 0 18px;
  line-height: 1.18;
  letter-spacing: -0.03em;
  
}

.why-hardware-lead {
  margin: 0 0 16px;
  max-width: none;
  font-size: 1rem;
  line-height: 1.62;
  color: var(--text-2);
}

.why-compare-table {
  border-radius: 16px;
  border: 1px solid rgba(224, 161, 43, 0.2);
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.why-hardware-close {
  margin: 18px auto 0;
  padding: 0;
  color: var(--brown);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 0.98rem;
  line-height: 1.45;
  letter-spacing: -0.01em;
  text-align: center;
  max-width: 81ch;
}

.why-compare-head,
.why-compare-row {
  display: grid;
  grid-template-columns: minmax(170px, 0.8fr) 1fr 1fr;
}

.why-compare-head {
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.95), rgba(241, 245, 249, 0.75));
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
}

.why-compare-col-title {
  padding: 11px 14px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.why-compare-col-title--hardware {
  color: #8a5a09;
}

.why-compare-col-title--software {
  color: #475569;
}

.why-compare-row {
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.why-compare-row:first-of-type {
  border-top: 0;
}

.why-compare-topic {
  margin: 0;
  padding: 14px;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--text);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.8));
  border-right: 1px solid rgba(148, 163, 184, 0.18);
}

.why-compare-cell {
  margin: 0;
  padding: 14px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-2);
}

.why-compare-cell--hardware {
  background: linear-gradient(145deg, rgba(224, 161, 43, 0.08), rgba(255, 255, 255, 0.98));
  border-right: 1px solid rgba(148, 163, 184, 0.18);
}

.why-compare-cell--software {
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.03), rgba(255, 255, 255, 0.98));
}

.why-hardware-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-hardware-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 16px 16px 16px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  box-shadow: 0 2px 14px rgba(15, 23, 42, 0.04);
}

.why-hardware-card--gold {
  background: linear-gradient(135deg, rgba(224, 161, 43, 0.09) 0%, rgba(255, 255, 255, 0.95) 100%);
  border-color: rgba(224, 161, 43, 0.3);
}

.why-hardware-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(224, 161, 43, 0.14);
  color: var(--brown);
  flex-shrink: 0;
}

.why-hardware-card--gold .why-hardware-card-icon {
  background: rgba(224, 161, 43, 0.22);
}

.why-hardware-card-title {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 6px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.why-hardware .why-hardware-card p {
  margin: 0;
  max-width: none;
  font-size: 0.93rem;
  line-height: 1.62;
  color: var(--text-2);
}

@media (max-width: 900px) {
  .why-hardware-copy h2 {
    max-width: none;
  }
  .why-compare-head {
    display: none;
  }
  .why-compare-row {
    grid-template-columns: 1fr;
  }
  .why-compare-topic {
    border-right: 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  }
  .why-compare-cell--hardware {
    border-right: 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  }
}

.why-software-panel {
  margin-top: clamp(16px, 2.4vw, 24px);
  padding: clamp(22px, 3.5vw, 40px);
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background:
    radial-gradient(ellipse 70% 50% at 0% 0%, rgba(90, 46, 28, 0.06), transparent 55%),
    linear-gradient(168deg, #f8fafc 0%, #ffffff 100%);
  box-shadow: 0 4px 28px rgba(15, 23, 42, 0.06);
}

.why-hardware.why-software .why-software-panel {
  border-color: rgba(224, 161, 43, 0.18);
  box-shadow: 0 3px 18px rgba(15, 23, 42, 0.05);
}

.why-software-intro {
  max-width: 62ch;
  margin-bottom: clamp(20px, 3vw, 28px);
}

.why-software-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
  margin: 0 0 10px;
}

.why-software-intro h2 {
  font-size: clamp(1.45rem, 2.8vw, 1.9rem);
  margin: 0 0 12px;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.why-software-subheading {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  margin: 0 0 10px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text);
}

.why-software-lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.62;
  color: var(--text-2);
  max-width: none;
}

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

.why-software .why-hardware-card p {
  margin: 0;
  max-width: none;
  font-size: 0.93rem;
  line-height: 1.62;
  color: var(--text-2);
}

@media (max-width: 960px) {
  .why-software-grid {
    grid-template-columns: 1fr;
  }
}

.what-you-can-do-panel {
  padding: clamp(22px, 3.5vw, 40px);
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background:
    radial-gradient(ellipse 70% 50% at 0% 0%, rgba(224, 161, 43, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 45% at 100% 100%, rgba(15, 23, 42, 0.05), transparent 52%),
    linear-gradient(168deg, #ffffff 0%, #faf8f5 100%);
  box-shadow: var(--shadow-sm);
}

.what-you-can-do-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(26px, 4vw, 42px);
  align-items: start;
}

.what-you-can-do-intro {
  margin-bottom: clamp(18px, 2.5vw, 24px);
}

.what-you-can-do-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin: 0 0 10px;
}

.what-you-can-do-intro h2 {
  font-size: clamp(1.45rem, 2.8vw, 1.9rem);
  margin: 0 0 12px;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.what-you-can-do-lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.62;
  color: var(--text-2);
  max-width: none;
}

.what-you-can-do-overview {
  position: sticky;
  top: 102px;
}

.what-you-can-do-media {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.11);
}

.what-you-can-do-media img {
  display: block;
  width: 100%;
  min-height: 320px;
  max-height: 380px;
  object-fit: cover;
  object-position: center;
}

.what-you-can-do-summary {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(148, 163, 184, 0.28);
}

.what-you-can-do-summary-label {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.what-you-can-do-summary p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.62;
  color: var(--text-2);
}

.what-you-can-do-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 0;
}

.what-you-can-do-row {
  padding: 18px 20px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset;
}

.what-you-can-do-row--accent {
  border-color: rgba(224, 161, 43, 0.34);
  background:
    linear-gradient(90deg, rgba(224, 161, 43, 0.08), transparent 18%),
    rgba(255, 255, 255, 0.78);
}

.what-you-can-do-row-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.what-you-can-do-row-copy {
  flex: 1;
  min-width: 0;
}

.what-you-can-do-row-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 12px;
  background: rgba(224, 161, 43, 0.14);
  border: 1px solid rgba(224, 161, 43, 0.22);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gold-2);
}

.what-you-can-do-row-title {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.what-you-can-do-points {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.what-you-can-do-points li {
  position: relative;
  padding-left: 18px;
  font-size: 0.95rem;
  line-height: 1.58;
  color: var(--text-2);
}

.what-you-can-do-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
}

.what-you-can-do-more {
  margin: clamp(16px, 2vw, 22px) 0 0;
  font-size: 0.95rem;
}

.what-you-can-do-more a {
  font-weight: 700;
  color: var(--brown);
  text-decoration: none;
  border-bottom: 1px solid rgba(90, 46, 28, 0.35);
}

.what-you-can-do-more a:hover {
  color: var(--gold-2);
  border-bottom-color: rgba(224, 161, 43, 0.55);
}

@media (max-width: 720px) {
  .what-you-can-do-layout {
    grid-template-columns: 1fr;
  }
  .what-you-can-do-overview {
    position: static;
  }
  .what-you-can-do-media img {
    min-height: 220px;
    max-height: 280px;
  }
}

.drive-security-controls-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(18px, 3vw, 28px);
  align-items: stretch;
  padding: clamp(20px, 3vw, 34px);
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(224, 161, 43, 0.09), transparent 55%),
    linear-gradient(168deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 6px 26px rgba(15, 23, 42, 0.06);
}

.drive-security-controls-media {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.12);
  min-height: 100%;
}

.drive-security-controls-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.drive-security-controls-copy {
  display: flex;
  flex-direction: column;
}

.drive-security-controls-intro h2 {
  margin: 0 0 16px;
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

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

.drive-security-control-card {
  padding: 14px 0 14px 12px;
  border-left: 2px solid rgba(224, 161, 43, 0.35);
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.drive-security-control-title {
  margin: 0 0 8px;
  font-size: 0.99rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text);
  font-weight: 600;
}

.drive-security-control-card p {
  margin: 0;
  max-width: none;
  font-size: 0.94rem;
  line-height: 1.62;
  color: var(--text-2);
}

@media (max-width: 760px) {
  .drive-security-controls-panel {
    grid-template-columns: 1fr;
  }
  .drive-security-controls-grid {
    grid-template-columns: 1fr;
  }
  .drive-security-controls-media {
    max-height: 260px;
  }
}

@media (min-width: 761px) {
  .nav-link,
  .nav-link--trigger {
    color: var(--text);
  }
  a.nav-link:hover,
  a.nav-link:focus-visible,
  .nav-link--trigger:hover,
  .nav-link--trigger:focus-visible {
    color: var(--brown);
    background: rgba(224, 161, 43, 0.08);
  }
}

.solution {
  background: var(--alt-bg);
  padding-top: clamp(56px, 8vw, 78px);
  padding-bottom: clamp(56px, 8vw, 78px);
}

.solution-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.88fr);
  gap: clamp(28px, 4vw, 44px);
  align-items: start;
  padding: clamp(24px, 3.5vw, 42px);
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background:
    radial-gradient(ellipse 70% 50% at 0% 0%, rgba(224, 161, 43, 0.09), transparent 50%),
    radial-gradient(ellipse 55% 45% at 100% 100%, rgba(30, 58, 95, 0.06), transparent 50%),
    linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 20px 50px rgba(15, 23, 42, 0.07);
}

.solution-eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.solution-copy h2 {
  font-size: clamp(1.45rem, 2.8vw, 1.95rem);
  margin: 0 0 14px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  max-width: 22ch;
}

.solution-lead {
  margin: 0 0 22px;
  font-size: 1.02rem;
  line-height: 1.68;
  color: var(--text-2);
  max-width: 58ch;
}

.solution-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.solution-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 14px 14px 14px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.solution-point:hover {
  border-color: rgba(224, 161, 43, 0.35);
  box-shadow: 0 6px 22px rgba(15, 23, 42, 0.06);
}

.solution-point-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(224, 161, 43, 0.16) 0%, rgba(224, 161, 43, 0.07) 100%);
  color: var(--brown);
  flex-shrink: 0;
}

.solution-point-title {
  font-family: "Manrope", sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  margin: 0 0 6px;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text);
}

.solution-point p {
  margin: 0;
  max-width: none;
  font-size: 0.92rem;
  line-height: 1.62;
  color: var(--text-2);
}

.solution-visual {
  margin: 0;
  position: sticky;
  top: 88px;
}

.solution-visual-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}

.solution-visual-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 35%,
    rgba(15, 23, 42, 0.06) 100%
  );
  border-radius: inherit;
}

.solution-visual-frame img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.solution-visual-caption {
  margin: 12px 4px 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-2);
  letter-spacing: 0.01em;
}

@media (max-width: 960px) {
  .solution-panel {
    grid-template-columns: 1fr;
  }
  .solution-copy h2 {
    max-width: none;
  }
  .solution-visual {
    position: static;
    order: -1;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
}

#features { background: #ffffff; }
.oem-cta {
  padding-top: clamp(18px, 3vw, 28px);
  padding-bottom: clamp(14px, 2.5vw, 24px);
}
.oem-cta-panel {
  text-align: center;
  padding: clamp(24px, 4vw, 34px);
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background:
    radial-gradient(ellipse 80% 70% at 12% 0%, rgba(224, 161, 43, 0.15), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: var(--shadow-sm);
}
.oem-kicker {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(224, 161, 43, 0.35);
  background: rgba(224, 161, 43, 0.12);
  color: #8a5a0a;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.oem-cta-panel h2 {
  margin-bottom: 10px;
  color: var(--text);
}
.oem-cta-panel p {
  margin: 0 auto;
  max-width: 89ch;
  color: var(--text-2);
}
.oem-cta-panel .hero-actions {
  justify-content: center;
  margin-top: 20px;
}
.final-cta {
  text-align: center;
  padding: 36px 20px;
  background:
    radial-gradient(circle at 28% 24%, rgba(224, 161, 43, 0.14), transparent 35%),
    #FEF3C7;
  border: 1px solid #f4d78b;
}
.final-cta h2 { color: var(--text); }
.final-cta p { color: var(--text-2); margin: 0 auto; max-width: 62ch; }
.final-cta .hero-actions { justify-content: center; }

.section-dark, .section-dark-soft, .section-ink {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  box-shadow: none;
}

.why-hardware,
.what-you-can-do,
.drive-security-controls,
.conversion-strip {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  box-shadow: none;
}
.section-image {
  margin-top: 16px;
  width: min(760px, 100%);
  border-radius: 18px;
  border: 1px solid var(--line);
  max-height: 300px;
  object-fit: cover;
}

.steps-grid, .feature-grid, .plans-grid, .cards-3 { display: grid; gap: 16px; }
.steps-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 16px 0; }
.steps-grid--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.step { padding: 16px; }
.step h3 { font-size: 1rem; }
.step p { font-size: 0.92rem; color: var(--text-2); margin-top: 6px; }

.paths-section h2 { margin-bottom: 10px; }
.paths-lead {
  
  margin: 0 0 22px;
  color: var(--text-2);
  line-height: 1.65;
}
.paths-section .plans-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.paths-section .plan {
  position: relative;
  padding: 20px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 16px;
  background:
    linear-gradient(170deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.92) 100%);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.paths-section .plan:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.1);
  border-color: rgba(224, 161, 43, 0.42);
}
.paths-section .featured-plan {
  border-color: rgba(224, 161, 43, 0.58);
  background:
    radial-gradient(ellipse 95% 60% at 100% 0%, rgba(224, 161, 43, 0.14), transparent 56%),
    linear-gradient(170deg, #fffdf7 0%, #ffffff 100%);
}
.paths-section .plan-top h3 {
  margin: 4px 0 0 !important;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  font-size: 1.12rem;
  line-height: 1.2 !important;
  letter-spacing: -0.02em !important;
  color: var(--text);
  font-weight: 600;
}
.paths-section .plan-inline-price {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(224, 161, 43, 0.16);
  border: 1px solid rgba(224, 161, 43, 0.38);
  color: #5f3400;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}
.paths-section .badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  background: rgba(224, 161, 43, 0.16);
  color: var(--brown);
  margin: 0;
}
.paths-section .plan-summary {
  margin: 0;
  color: var(--text-2);
  line-height: 1.62;
  max-width: none;
}
.paths-section .plan-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7px;
}
.paths-section .plan-points li {
  position: relative;
  padding-left: 18px;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.42;
}
.paths-section .plan-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
}
.paths-section .plan-fit {
  margin: 2px 0 0;
  color: var(--text-2);
  line-height: 1.55;
  max-width: none;
}
.paths-section .plan .btn {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

.opal-lite-note {
  margin-top: 18px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 16px;
  background:
    radial-gradient(ellipse 72% 48% at 0% 0%, rgba(224, 161, 43, 0.12), transparent 56%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.opal-lite-kicker {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.opal-lite-note h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  line-height: 1.25;
  color: var(--text);
  font-weight: 600;
}

.opal-lite-lead {
  margin: 0 0 10px;
  font-size: 0.93rem;
  line-height: 1.58;
  color: var(--text-2);
}

.opal-lite-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

.opal-lite-list li {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-2);
}

.paths-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.path-card {
  padding: 22px;
  display: flex;
  flex-direction: column;
}
.path-card h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.path-tagline {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 12px;
}
.path-list {
  margin: 0 0 18px;
  padding-left: 1.15rem;
  color: var(--text-2);
  font-size: 0.92rem;
  line-height: 1.55;
  flex: 1;
}
.path-list li { margin-bottom: 8px; }
.path-card .btn { align-self: flex-start; margin-top: auto; }
.path-card--emphasis {
  border-color: rgba(224, 161, 43, 0.5);
  background: linear-gradient(165deg, #fffdf8 0%, #ffffff 55%);
  box-shadow: var(--shadow-md);
}

.section-lead {

  margin: 0 0 16px;
  color: var(--text-2);
  line-height: 1.6;
}
.section-lead a {
  color: var(--brown);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.compare-heading {
  margin-top: 0px;
  margin-bottom: 8px;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
}
.compare-note {
  font-size: 0.9rem;
  color: var(--text-2);
  margin: 0 0 14px;
}
.compare-note a { color: var(--brown); font-weight: 600; }
.edition-table-wrap {
  margin-top: 8px;
}
.edition-table {
  min-width: 720px;
  font-size: 0.86rem;
}
.edition-table td:first-child {
  font-weight: 600;
  color: var(--text);
  max-width: 220px;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 8px;
}
.requirements-panel {
  padding: clamp(22px, 3.2vw, 34px);
  border-radius: 20px;

  background:
    radial-gradient(ellipse 76% 52% at 100% 0%, rgba(224, 161, 43, 0.11), transparent 55%),
    linear-gradient(168deg, #ffffff 0%, #f8fafc 100%);
 ;
}
.requirements-kicker {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.requirements-lead {
  margin-bottom: 18px;

}
.requirements-col {
  padding: 18px 16px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 2px 14px rgba(15, 23, 42, 0.04);
}
.requirements-col-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 8px;
  background: rgba(224, 161, 43, 0.16);
  color: var(--brown);
}
.requirements-col h3 {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: var(--text);
  font-weight: 700;
}
.requirements-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  color: var(--text-2);
  font-size: 0.9rem;
  line-height: 1.55;
}
.requirements-list li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 16px;
}
.requirements-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
}
.requirements-foot {
  margin-top: 16px;
  font-size: 0.92rem;
  color: var(--text-2);
}
.requirements-foot a { color: var(--brown); font-weight: 600; }

.who-for-panel {
  padding: clamp(22px, 3.2vw, 34px);
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background:
    radial-gradient(ellipse 72% 52% at 0% 0%, rgba(224, 161, 43, 0.1), transparent 56%),
    linear-gradient(168deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}
.who-for-head {
  margin-bottom: 18px;
}
.who-for-kicker {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.who-for-head h2 {
  margin: 0 0 8px;
}
.who-for-lead {
  margin: 0;
  max-width: 83ch;
}
.who-for-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.who-for-item {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 2px 14px rgba(15, 23, 42, 0.04);
}
.who-for-icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  margin-bottom: 8px;
  background: rgba(224, 161, 43, 0.16);
  font-size: 1rem;
}
.who-for-item h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: var(--text);
  font-weight: 700;
}
.who-for-item p {
  margin: 0;
  max-width: none;
  color: var(--text-2);
}

.why-opal-panel {
  padding: clamp(22px, 3.2vw, 34px);
  border-radius: 20px;
  
  background:
    radial-gradient(ellipse 72% 52% at 100% 0%, rgba(224, 161, 43, 0.1), transparent 56%),
    linear-gradient(168deg, #ffffff 0%, #f8fafc 100%);

}
.why-opal-head {
  margin-bottom: 18px;
}
.why-opal-kicker {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.why-opal-head h2 {
  margin: 0 0 8px;
}
.why-opal-lead {
  margin: 0;
  max-width: 83ch;
}
.why-opal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.why-opal-item {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 2px 14px rgba(15, 23, 42, 0.04);
}
.why-opal-icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  margin-bottom: 8px;
  background: rgba(224, 161, 43, 0.16);
  font-size: 1rem;
}
.why-opal-item h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: var(--text);
  font-weight: 700;
}
.why-opal-item p {
  margin: 0;
  max-width: none;
  color: var(--text-2);
}

.resource-pdf {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
  margin-bottom: 24px;
}
.resource-pdf-hint {
  font-size: 0.9rem;
  color: var(--text-2);
}

.resources-panel {
  padding: clamp(22px, 3.2vw, 34px);
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background:
    radial-gradient(ellipse 72% 52% at 100% 0%, rgba(224, 161, 43, 0.1), transparent 56%),
    linear-gradient(168deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}
.resources-head {
  margin-bottom: 14px;
}
.resources-kicker {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.resources-head h2 {
  margin: 0 0 8px;
}
.resources-lead {
  margin: 0;
  max-width: 68ch;
}
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.resource-card {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 2px 14px rgba(15, 23, 42, 0.04);
}
.resource-card-chip {
  margin: 0 0 8px;
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--brown);
  background: rgba(224, 161, 43, 0.15);
}
.resource-card h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}
.resource-card p {
  margin: 0;
  max-width: none;
  color: var(--text-2);
}
.step-number {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 8px;
  font-weight: 600;
  color: #111111;
  background: var(--gold);
}
.diagram {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #ffffff;
}
.node {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-weight: 700;
}
.arrow { color: var(--brown); font-weight: 800; }

#how-it-works .how-it-works-panel {
  padding: clamp(22px, 3.5vw, 36px);
 
  border-radius: 20px;
  background:
    radial-gradient(ellipse 80% 55% at 100% 0%, rgba(224, 161, 43, 0.12), transparent 55%),
    linear-gradient(170deg, #ffffff 0%, #f8fafc 100%);
 
}
#how-it-works .how-it-works-head h2 {
  margin-bottom: 10px;
}
#how-it-works .how-it-works-lead {
  margin: 0 0 18px;
  
  color: var(--text-2);
}
#how-it-works .steps-grid {
  margin: 0;
  gap: 16px;
  position: relative;
}
#how-it-works .steps-grid::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 18px;
  height: 2px;
  background: linear-gradient(90deg, rgba(224, 161, 43, 0.22), rgba(224, 161, 43, 0.58), rgba(224, 161, 43, 0.22));
}
#how-it-works .step {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 2px 0 6px;
  position: relative;
  z-index: 1;
  min-height: 210px;
  display: flex;
  flex-direction: column;
}
#how-it-works .step:hover {
  transform: none;
}
#how-it-works .step-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
#how-it-works .step-number {
  margin-bottom: 0;
  border: 2px solid rgba(224, 161, 43, 0.55);
  background: #fffdf8;
  box-shadow: 0 4px 12px rgba(224, 161, 43, 0.18);
}
#how-it-works .step-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(224, 161, 43, 0.14);
  color: var(--brown);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
#how-it-works .step h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text);
  font-weight: 700;
}
#how-it-works .step-points {
  margin: 9px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
  align-content: start;
}
#how-it-works .step-points li {
  position: relative;
  padding-left: 16px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-2);
}
#how-it-works .step-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
}
#how-it-works .diagram {
  margin-top: 16px;
  padding: 10px 2px 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
#how-it-works .diagram .node {
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.24) inset;
  padding: 7px 12px;
  font-weight: 600;
  color: var(--text);
}
#how-it-works .diagram .arrow {
  color: rgba(224, 161, 43, 0.9);
  font-weight: 800;
}
#how-it-works .how-it-works-close {
  margin: 14px 0 0;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--brown);
  max-width: none;
}

.feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 30px; }
.feature-item { border-bottom: 1px solid var(--line); padding: 12px 0 14px; }
.feature-item h3 { font-size: 1.02rem; display: flex; align-items: center; gap: 8px; color: var(--text);font-weight: 600; }
.feature-glyph {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  color: var(--brown);
  background: rgba(224, 161, 43, 0.2);
  border-radius: 7px;
}
.feature-glyph svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.table-wrap { overflow: auto; box-shadow: none; }
table { width: 100%; min-width: 620px; border-collapse: collapse; background: #fff;margin: unset; }
th, td { padding: 14px !important; text-align: left; border-top: none !important;border-right: none !important;border-left: none !important; border-bottom: 1px solid var(--line) !important; vertical-align: middle !important; color: var(--text);}
thead th { background: #f8f5ef; color: var(--brown); font-size: .92rem; }
.comparison-points {
  margin: 0;
  padding-left: 18px;
  color: var(--text-2);
}
.comparison-points li + li {
  margin-top: 8px;
}

.plans-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.plan {
  padding: 22px;
}
.plan p strong { color: var(--brown); }
.featured-plan {
  border: 1px solid rgba(224, 161, 43, 0.55);
}
.badge {
  display: inline-block;
  font-size: .75rem;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(224, 161, 43, 0.18);
  color: var(--brown);
  margin-bottom: 4px;
  font-weight: 700;
}

.conversion-strip {
  border-bottom: 0;
  padding-left: clamp(14px, 2.4vw, 26px);
  padding-right: clamp(14px, 2.4vw, 26px);
}
.conversion-inner {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 20px;
  align-items: center;
  padding: clamp(26px, 3.8vw, 42px);
  border-radius: 24px;
  border: 1px solid rgba(224, 161, 43, 0.36);
  background:
    radial-gradient(ellipse 95% 62% at 100% 0%, rgba(224, 161, 43, 0.24), transparent 58%),
    radial-gradient(ellipse 65% 48% at 0% 100%, rgba(90, 46, 28, 0.08), transparent 52%),
    linear-gradient(165deg, #fff8e9 0%, #f8fafc 100%);
  box-shadow:
    0 18px 42px rgba(15, 23, 42, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
}
.conversion-copy h2 {
  margin: 6px 0 12px;
  line-height: 1.16;
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  letter-spacing: -0.03em;
}
.conversion-kicker {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.conversion-lead {
  margin: 0;
  max-width: none;
  font-size: 1.02rem;
  line-height: 1.62;
}
.conversion-lead a{ 
  color: inherit !important;
}
.conversion-points {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.conversion-points li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(224, 161, 43, 0.28);
  background: rgba(224, 161, 43, 0.08);
  color: var(--brown);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.2;
}
.conversion-point-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  flex-shrink: 0;
}
.conversion-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.conversion-actions .btn {
  min-width: 170px;
  justify-content: center;
}
.conversion-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.conversion-metric {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(90, 46, 28, 0.2);
  background: rgba(255, 255, 255, 0.62);
  color: var(--brown);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
}
.conversion-metric strong {
  font-family: "Manrope", sans-serif;
  font-size: 0.88rem;
}
.conversion-actions-note {
  margin: 8px 0 0;
  font-size: 0.86rem;
  color: var(--text-2);
  width: 100%;
  text-align: right;
}
.conversion-actions-note a {
  color: var(--brown);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(224, 161, 43, 0.5);
  text-underline-offset: 3px;
}

.cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.content-item {
  border-bottom: 1px solid var(--line);
  padding: 8px 0 14px;
}
.seo-panel {
  padding: clamp(24px, 3vw, 38px);
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(224, 161, 43, 0.07), transparent 52%),
    linear-gradient(168deg, #f8fafc 0%, #f1f5f9 100%);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

.seo-panel-header {
  margin-bottom: clamp(20px, 3vw, 28px);
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.seo-panel-eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.seo-panel-header h2 {
  margin: 0 0 12px;
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--text);
}

.seo-panel-lead {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-2);
}

.seo-facts {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.seo-facts li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(224, 161, 43, 0.28);
  background: rgba(224, 161, 43, 0.08);
  color: var(--brown);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
}

.seo-fact-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  flex-shrink: 0;
}

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

.seo-tile {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 18px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.seo-tile-chip {
  margin: 0;
  align-self: flex-start;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brown);
  background: rgba(224, 161, 43, 0.15);
}

.seo-tile:hover {
  border-color: rgba(224, 161, 43, 0.28);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
}

.seo-tile--accent {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(224, 161, 43, 0.06) 100%);
  border-color: rgba(224, 161, 43, 0.22);
}

.seo-tile-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(224, 161, 43, 0.18) 0%, rgba(224, 161, 43, 0.06) 100%);
  color: var(--brown);
  flex-shrink: 0;
}

.seo-tile-title {
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--text);
}

.seo-tile p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.62;
  color: var(--text-2);
  flex: 1;
}

.seo-tile-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  flex: 1;
}

.seo-tile-points li {
  position: relative;
  margin: 0;
  padding-left: 14px;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-2);
}

.seo-tile-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(224, 161, 43, 0.85);
}

.seo-tile a {
  color: var(--brown);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(224, 161, 43, 0.5);
  text-underline-offset: 3px;
}

.seo-tile a:hover {
  color: var(--text);
}

.seo-panel--premium {
  border-color: rgba(224, 161, 43, 0.2);
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(224, 161, 43, 0.1), transparent 52%),
    linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
  box-shadow:
    0 12px 34px rgba(15, 23, 42, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.65) inset;
}

.seo-panel-header--premium {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.9fr);
  gap: clamp(18px, 3vw, 30px);
  align-items: start;
}

.seo-facts--premium {
  justify-content: flex-start;
  margin-top: 4px;
}

.seo-panel-grid--premium {
  gap: 14px;
}

.seo-tile-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(224, 161, 43, 0.45);
  background: rgba(224, 161, 43, 0.12);
  color: var(--brown);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Flatten premium SEO section visuals (no boxes/pills) */
.seo-panel--premium {
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  background: transparent;
  box-shadow: none;
}

.seo-panel-grid--premium .seo-tile {
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 12px 0 14px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.26);
}

.seo-panel-grid--premium .seo-tile--accent {
  border-left: 2px solid rgba(224, 161, 43, 0.42);
  padding-left: 12px;
}

.seo-panel-grid--premium .seo-tile-chip {
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #475569;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
}

.seo-facts--premium li {
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.28);
  background: transparent;
  padding: 4px 0;
}

@media (max-width: 900px) {
  #how-it-works .steps-grid::before {
    display: none;
  }
  .seo-panel-header--premium {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .seo-facts--premium {
    margin-top: 0;
  }
  .seo-panel-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-auto-columns: calc((100% - 14px) / 2);
  }
}
.testimonials-panel {
  padding: clamp(22px, 3.2vw, 34px);
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background:
    radial-gradient(ellipse 72% 52% at 100% 0%, rgba(224, 161, 43, 0.1), transparent 56%),
    linear-gradient(168deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}
.testimonials-head {
  margin-bottom: 14px;
}
.testimonials-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.testimonials-kicker {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.testimonials-head h2 {
  margin: 0;
}
.testimonials-controls {
  display: inline-flex;
  gap: 8px;
}
.testimonials-nav {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: #fff;
  color: var(--brown);
  font-weight: 600;
  cursor: pointer;
  padding:0 !important;
}
.testimonials-nav:hover {
  border-color: rgba(224, 161, 43, 0.45);
  background: rgba(224, 161, 43, 0.1);
}
.testimonials-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 28px) / 3);
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  padding-bottom: 4px;
}
.quote-flat {
  margin: 0;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 2px 14px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  gap: 10px;
  scroll-snap-align: start;
}
.quote-rating {
  margin: 0;
  color: var(--gold-2);
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  font-weight: 800;
}
.quote-text {
  margin: 0;
  color: var(--text);
  line-height: 1.6;
}
.quote-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.quote-flat cite {
  margin: 0;
  font-style: normal;
  color: var(--text-2);
  font-size: 0.9rem;
}
.quote-avatar {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(224, 161, 43, 0.2);
  color: var(--brown);
  font-size: 0.74rem;
  font-weight: 800;
  flex-shrink: 0;
}

.contact-form {
  margin-top: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field span {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid rgba(224, 161, 43, 0.3);
  border-color: rgba(224, 161, 43, 0.45);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-link[aria-current="page"] {
  color: var(--brown);
  font-weight: 700;
  box-shadow: inset 0 -2px 0 var(--gold);
}

.page-contact {
  background: var(--light);
}

.contact-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 8vw, 88px) 0 clamp(40px, 6vw, 64px);
  border-bottom: 1px solid rgba(224, 161, 43, 0.14);
  background:
    radial-gradient(ellipse 85% 65% at 88% 12%, rgba(224, 161, 43, 0.2), transparent 52%),
    radial-gradient(ellipse 55% 45% at 0% 92%, rgba(90, 46, 28, 0.07), transparent 48%),
    linear-gradient(168deg, #fffefb 0%, #f8fafc 42%, #ffffff 100%);
}

.contact-hero__glow {
  pointer-events: none;
  position: absolute;
  inset: -30% -20% auto 40%;
  height: min(70vw, 520px);
  background: radial-gradient(circle, rgba(224, 161, 43, 0.12) 0%, transparent 68%);
  filter: blur(40px);
}

.contact-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 48px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.contact-hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin: 0 0 12px;
}

.contact-hero__copy h1 {
  font-size: clamp(1.85rem, 4.2vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin: 0 0 14px;
  color: var(--text);
}

.contact-hero__lead {
  margin: 0;
  max-width: 48ch;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-2);
}

.contact-hero__badge {
  width: 100px;
  height: 100px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, #fff9ec, #fdecc8);
  border: 1px solid rgba(224, 161, 43, 0.38);
  box-shadow:
    0 22px 48px rgba(224, 161, 43, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  color: var(--brown);
  position: relative;
}

.contact-hero__badge-ring {
  position: absolute;
  inset: -8px;
  border-radius: 30px;
  border: 1px dashed rgba(198, 138, 31, 0.42);
  animation: spin 14s linear infinite;
}

.page-contact__body.section {
  padding-top: clamp(48px, 6vw, 72px);
  border-bottom: 0;
}

.contact-split {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.12fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}

.contact-channel {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 18px 18px 16px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-channel:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(224, 161, 43, 0.4) !important;
}

.contact-channel--accent {
  background: linear-gradient(135deg, rgba(224, 161, 43, 0.1) 0%, rgba(255, 255, 255, 0.98) 100%);
  border-color: rgba(224, 161, 43, 0.28);
}

.contact-channel__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: rgba(224, 161, 43, 0.15);
  color: var(--brown);
}

.contact-channel--accent .contact-channel__icon {
  background: rgba(224, 161, 43, 0.24);
}

.contact-channel__body {
  min-width: 0;
}

.contact-channel__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 4px;
}

.contact-channel__value {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.35;
  color: var(--text);
}

.contact-channel__hint {
  display: block;
  margin-top: 6px;
  font-size: 0.84rem;
  color: var(--text-2);
}

.contact-split__aside {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-split__back {
  margin-top: 6px;
  margin-bottom: 0;
  font-size: 0.92rem;
}

.contact-split__back a {
  font-weight: 600;
  color: var(--brown);
  border-bottom: 1px solid rgba(90, 46, 28, 0.28);
}

.contact-split__back a:hover {
  color: var(--gold-2);
  border-bottom-color: rgba(224, 161, 43, 0.5);
}

.contact-split__form-wrap {
  padding: clamp(22px, 3vw, 34px);
  border-radius: var(--radius);
  border: 1px solid rgba(224, 161, 43, 0.22);
  box-shadow:
    0 16px 44px rgba(15, 23, 42, 0.09),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  background: linear-gradient(175deg, #ffffff 0%, #fffdf8 100%);
}

.contact-form-title {
  font-family: "Manrope", sans-serif;
  font-size: 1.38rem;
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
  color: var(--text);
}

.contact-form-sub {
  margin: 0 0 18px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-2);
}

.contact-form--page {
  margin-top: 0;
  padding: 0;
  gap: 16px;
}

.contact-form-submit {
  margin-top: 6px;
}

@media (max-width: 900px) {
  .contact-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .contact-hero__copy h1 {
    margin-left: auto;
    margin-right: auto;
  }
  .contact-hero__lead {
    margin-left: auto;
    margin-right: auto;
  }
  .contact-hero__badge {
    margin: 0 auto;
  }
  .contact-split {
    grid-template-columns: 1fr;
  }
  .contact-split__form-wrap {
    order: -1;
  }
}

.site-footer {
  --footer-fg: #e2e8f0;
  --footer-muted: #94a3b8;
  --footer-dim: #64748b;
  --footer-edge: rgba(148, 163, 184, 0.18);
  margin-top: 0;
  background: linear-gradient(165deg, #0f172a 0%, #020617 72%);
  color: var(--footer-muted);
  border-top: 0;
}

.footer-accent {
  height: 3px;
  background: linear-gradient(90deg, #b8860f 0%, var(--gold) 38%, var(--gold-2) 72%, #c4a035 100%);
}

.footer-main {
  padding: clamp(40px, 5vw, 56px) 0 clamp(32px, 4vw, 44px);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 40px);
  align-items: start;
}

.footer-brand {
  padding-right: clamp(8px, 2vw, 20px);
}

.footer-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  margin-bottom: 14px;
}

.footer-brand-lockup:hover .footer-brand-name {
  color: var(--gold);
}

.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: contain;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-brand-name {
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #f8fafc;
  transition: color 0.2s ease;
}

.footer-brand-byline {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--footer-dim);
}

.footer-tagline {
  margin: 0 0 16px;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--footer-muted);
  max-width: 36ch;
}

.footer-tagline strong {
  color: #f1f5f9;
  font-weight: 600;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #0f172a;
  background: linear-gradient(145deg, var(--gold) 0%, var(--gold-2) 100%);
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(224, 161, 43, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(224, 161, 43, 0.35);
  color: #0f172a;
}

.footer-col .footer-heading {
  margin: 0 0 14px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #cbd5e1;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--footer-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #f8fafc;
}

.footer-links--contact {
  gap: 14px;
}

.footer-contact-line {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0;
  text-decoration: none;
  color: inherit;
}

.footer-contact-line:hover .footer-contact-value {
  color: var(--gold);
}

.footer-contact-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--footer-dim);
}

.footer-contact-value {
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--footer-fg);
  transition: color 0.2s ease;
}

.footer-contact-line--address .footer-contact-value {
  line-height: 1.5;
}

.footer-social-label {
  margin: 22px 0 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #cbd5e1;
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid var(--footer-edge);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.65);
  width: 42px;
  height: 42px;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: #e2e8f0;
  opacity: 0.95;
}

.social-link:hover {
  border-color: rgba(224, 161, 43, 0.55);
  background: rgba(224, 161, 43, 0.12);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

.social-link:hover svg {
  fill: var(--gold);
}

.footer-bar {
  border-top: 1px solid rgba(51, 65, 85, 0.85);
  background: rgba(2, 6, 23, 0.65);
}

.footer-bottom {
  padding: 18px 0 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-copy {
  margin: 0;
  font-size: 0.84rem;
  color: var(--footer-dim);
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.footer-legal-links a {
  font-size: 0.84rem;
  color: var(--footer-muted);
  text-decoration: none;
}

.footer-legal-links a:hover {
  color: var(--gold);
}

@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes spin-reverse { from { transform: rotate(360deg); } to { transform: rotate(0deg); } }
@keyframes pulse-ring {
  0% { opacity: 0.7; transform: scale(1); }
  70% { opacity: 0; transform: scale(1.25); }
  100% { opacity: 0; transform: scale(1.25); }
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
@keyframes guardian-flow {
  from { left: -12px; opacity: 0; }
  18% { opacity: 1; }
  82% { opacity: 1; }
  to { left: calc(100% + 12px); opacity: 0; }
}
@keyframes aura-breathe {
  0%, 100% { opacity: 0.35; transform: scale(0.92); }
  50% { opacity: 0.7; transform: scale(1.06); }
}
@keyframes flow {
  from { left: -16px; opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  to { left: calc(100% + 16px); opacity: 0; }
}
@keyframes flow-reverse {
  from { left: calc(100% + 16px); opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  to { left: -16px; opacity: 0; }
}

@keyframes scene-tint {
  0%, 100% { background-position: 0% 40%; }
  50% { background-position: 100% 60%; }
}

@keyframes core-breathe {
  0%, 100% {
    transform: scale(1);
    box-shadow:
      0 8px 20px rgba(224, 161, 43, 0.28),
      0 0 0 1px rgba(255, 255, 255, 0.35) inset;
  }
  50% {
    transform: scale(1.045);
    box-shadow:
      0 10px 28px rgba(224, 161, 43, 0.4),
      0 0 22px rgba(224, 161, 43, 0.22),
      0 0 0 1px rgba(255, 255, 255, 0.45) inset;
  }
}

@keyframes lock-nudge {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  40% { transform: translateY(-2px) rotate(-4deg); }
  60% { transform: translateY(1px) rotate(3deg); }
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.35; transform: scale(0.92); }
  50% { opacity: 0.75; transform: scale(1.06); }
}

@keyframes ring-fade {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.95; }
}

@keyframes ring-mid-opacity {
  0%, 100% { opacity: 0.38; }
  50% { opacity: 0.92; }
}

@keyframes stream-bg {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes stream-sweep {
  0% { left: -55%; opacity: 0; }
  12% { opacity: 1; }
  100% { left: 105%; opacity: 0; }
}

@keyframes stream-sweep-reverse {
  0% { left: 105%; opacity: 0; }
  12% { opacity: 1; }
  100% { left: -55%; opacity: 0; }
}

@keyframes smart-cursor-click {
  0%, 12% { transform: translate(0, 0) scale(1); opacity: 0; }
  18%, 30% { transform: translate(234px, 42px) scale(1); opacity: 1; }
  32% { transform: translate(234px, 42px) scale(0.92); opacity: 1; }
  36%, 100% { transform: translate(234px, 42px) scale(1); opacity: 0; }
}

@keyframes smart-lock-turn {
  0%, 28% { transform: rotate(0deg); box-shadow: 0 10px 22px rgba(224, 161, 43, 0.16); }
  36% { transform: rotate(18deg); box-shadow: 0 10px 26px rgba(224, 161, 43, 0.34); }
  44% { transform: rotate(0deg); box-shadow: 0 10px 28px rgba(224, 161, 43, 0.4); }
  100% { transform: rotate(0deg); box-shadow: 0 10px 28px rgba(224, 161, 43, 0.4); }
}

@keyframes smart-pulse {
  0%, 30% { transform: scale(0.85); opacity: 0; }
  40% { transform: scale(1); opacity: 0.55; }
  56% { transform: scale(1.38); opacity: 0; }
  100% { transform: scale(1.38); opacity: 0; }
}

@keyframes smart-disabled-fade {
  0%, 34% { opacity: 1; }
  44%, 100% { opacity: 0; }
}

@keyframes smart-enabled-show {
  0%, 42% { opacity: 0; }
  50%, 100% { opacity: 1; }
}

@keyframes smart-wave {
  0%, 46% { left: -55%; opacity: 0; }
  54% { opacity: 1; }
  70%, 100% { left: 110%; opacity: 0; }
}

@keyframes smart-state-off {
  0%, 56% { opacity: 1; transform: translateY(0); }
  66%, 100% { opacity: 0; transform: translateY(-2px); }
}

@keyframes smart-state-on {
  0%, 60% { opacity: 0; transform: translateY(2px); }
  70%, 100% { opacity: 1; transform: translateY(0); }
}

@keyframes smart-target-off-hide {
  0%, 36% { opacity: 1; }
  46%, 100% { opacity: 0; }
}

@keyframes smart-target-on-show {
  0%, 44% { opacity: 0; }
  54%, 100% { opacity: 1; }
}

@keyframes smart-toggle-on {
  0%, 40% { transform: translateX(0); background: #ffffff; }
  52%, 100% { transform: translateX(20px); background: #f8fdf8; }
}

@keyframes smart-toggle-track {
  0%, 40% { background: #cbd5e1; border-color: rgba(148, 163, 184, 0.45); }
  52%, 100% { background: #86efac; border-color: rgba(22, 163, 74, 0.45); }
}

@media (max-width: 900px) {
  .hero-proof {
    grid-template-columns: 1fr;
  }
  .hero-proof__media {
    min-height: 180px;
    max-height: 240px;
  }
  .hero-proof__media img {
    min-height: 180px;
    max-height: 240px;
  }
  .hero-proof__content {
    border-left: 0;
    border-top: 1px solid rgba(226, 232, 240, 0.9);
  }
}

@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-copy { max-width: 100%; }
  .plans-grid, .cards-3, .steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .paths-section .plans-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps-grid--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .paths-grid { grid-template-columns: 1fr; }
  .requirements-grid { grid-template-columns: 1fr; }
  .who-for-grid { grid-template-columns: 1fr; }
  .why-opal-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-auto-columns: 100%; }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-brand {
    grid-column: 1 / -1;
    max-width: 44rem;
    padding-right: 0;
  }
  .conversion-inner { grid-template-columns: 1fr; }
  .conversion-actions { justify-content: flex-start; }
  .conversion-actions-note { text-align: left; }
}

@media (max-width: 760px) {
  .navbar {
    min-height: 74px;
  }
  .brand {
    position: relative;
    z-index: 103;
  }
  .brand-logo {
    height: 42px;
    max-height: 44px;
    max-width: min(260px, 62vw);
  }
  .menu-toggle {
    display: inline-flex;
  }
  .nav-shell {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 99;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 88px 20px 28px;
    margin: 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 0.28s ease,
      transform 0.28s ease,
      visibility 0.28s;
    overflow-y: auto;
    border: 0;
  }
  .site-header.is-menu-open .nav-shell {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-primary {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    width: 100%;
  }
  .nav-item .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid transparent;
  }
  .nav-item:not(.nav-item--dropdown) .nav-link {
    background: #fff;
    border-color: var(--line);
    box-shadow: var(--shadow-sm);
  }
  .nav-link--trigger {
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
  }
  .nav-dropdown {
    position: static;
    min-width: 0;
    padding-top: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .nav-item--dropdown.is-open .nav-dropdown {
    max-height: 2800px;
  }
  .smart-access-grid {
    grid-template-columns: 1fr;
  }
  .smart-flow {
    grid-template-columns: 1fr;
    gap: 8px;
   padding: 40px;
  }
  .smart-flow-label,
  .smart-flow-toggle,
  .smart-lock-core {
    justify-self: center;
  }
  .mega-flyout-panel {
    position: static !important;
    left: auto !important;
    top: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    box-shadow: none;
    border: 0;
    border-left: 2px solid rgba(224, 161, 43, 0.35);
    margin: 0 0 0 6px;
    padding-left: 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .mega-flyout-item.is-open .mega-flyout-panel {
    max-height: 320px;
    margin-top: 8px;
    margin-bottom: 4px;
  }
  .mega-inner {
    grid-template-columns: 1fr;
    border-radius: 14px;
    margin-top: 8px;
  }
  .mega-aside {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 16px;
  }
  .mega-grid {
    padding: 10px;
  }
  .mega-card {
    padding: 12px;
  }
  .nav-actions {
    margin-left: 0;
    padding: 16px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
    margin-top: 12px;
  }
  .nav-cta {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }
  .plans-grid, .cards-3, .steps-grid, .steps-grid--four, .feature-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .paths-section .plans-grid { grid-template-columns: 1fr; }
  .paths-section .plan-ribbon {
    margin-left: -18px;
    margin-right: -18px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .guardian-scene {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .guardian-rail { display: none; }
  .guardian-core { margin: 2px auto; }
  .guardian-node { width: 100%; }
  .hero-proof__media {
    min-height: 150px;
    max-height: 200px;
  }
  .hero-proof__media img {
    min-height: 150px;
    max-height: 200px;
    object-position: center 28%;
  }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .security-scene,
  .guardian-ring,
  .guardian-signal,
  .guardian-aura,
  .visual-label::before,
  .contact-hero__badge-ring {
    animation: none;
  }
}

/* Product pages */
.product-page .section.container {
  margin-top: clamp(14px, 2.2vw, 22px);
  padding: clamp(24px, 3.5vw, 36px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(ellipse 70% 55% at 0% 0%, rgba(224, 161, 43, 0.09), transparent 55%),
    linear-gradient(170deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.07);
}

.product-page .product-hero {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  margin-top: clamp(14px, 2.2vw, 24px);
  padding: clamp(28px, 4vw, 44px) 0;
  background:
    radial-gradient(circle at 8% 8%, rgba(224, 161, 43, 0.2), transparent 35%),
    radial-gradient(circle at 92% 92%, rgba(15, 23, 42, 0.08), transparent 36%),
    linear-gradient(165deg, #fffaf0 0%, #ffffff 58%, #f8fafc 100%);
  box-shadow: 0 24px 44px rgba(15, 23, 42, 0.09);
}

.product-page .product-hero .container {
  width: min(1080px, 90vw);
}

.product-page .product-hero h1 {
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  max-width: 30ch;
}

.product-page .product-hero .subtext {
  max-width: 72ch;
  font-size: 1.02rem;
  line-height: 1.7;
}

.product-page .product-hero .hero-actions {
  margin-top: 24px;
}

.product-page .product-hero .trust-badges {
  margin-top: 22px;
  gap: 10px;
}

.product-page .product-hero .trust-badge {
  border-radius: 999px;
  border: 1px solid rgba(224, 161, 43, 0.3);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.product-page .section h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 12px;
}

.product-page .paths-lead {
  font-size: 1rem;
  line-height: 1.72;
  max-width: 68ch;
}

.product-page .cards-3 .card,
.product-page .product-compat-item {
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.09);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.07);
}

.product-page .cards-3 .card h3,
.product-page .product-compat-item h3 {
  font-size: 1.08rem;
}

.product-page .video-feature-layout {
  gap: 20px;
}

.product-page .video-feature-embed {
  border: 1px solid rgba(15, 23, 42, 0.16);
  box-shadow: 0 20px 38px rgba(15, 23, 42, 0.14);
}

.product-page .video-feature-list {
  border: 1px solid rgba(15, 23, 42, 0.11);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.09);
}

.product-page .product-faq-item {
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.product-page #resources .product-cta-row {
  margin-top: 16px;
  gap: 10px;
}

.product-page #resources .btn {
  border-radius: 12px;
}

.product-page .final-cta {
  margin-top: 16px;
  border-radius: 22px;
  border: 1px solid rgba(224, 161, 43, 0.28);
  background:
    radial-gradient(ellipse 70% 55% at 8% 8%, rgba(224, 161, 43, 0.16), transparent 56%),
    linear-gradient(165deg, #fffdf8 0%, #ffffff 100%);
  box-shadow: 0 22px 36px rgba(15, 23, 42, 0.11);
}

.product-page .final-cta p {
  font-size: 1rem;
  line-height: 1.7;
}

.product-page .final-cta .btn-primary {
  min-width: 180px;
}

.product-page .final-cta .btn-secondary {
  min-width: 190px;
}

@media (max-width: 960px) {
  .product-page .section.container {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .product-page .product-hero {
    border-radius: 22px;
  }

  .product-page .product-hero .container {
    width: min(1080px, 92vw);
  }

  .product-page .product-hero h1 {
    max-width: none;
  }
}
.shop-hero--usb {
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  background:
    radial-gradient(ellipse 70% 55% at 0% 0%, rgba(224, 161, 43, 0.16), transparent 56%),
    radial-gradient(ellipse 58% 44% at 100% 100%, rgba(15, 23, 42, 0.06), transparent 54%),
    linear-gradient(170deg, #fffef8 0%, #ffffff 64%);
}

.shop-hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(14px, 2.4vw, 22px);
  align-items: start;
}

.shop-hero-copy .subtext {
  max-width: 60ch;
}

.shop-hero-side {
  padding: clamp(18px, 3vw, 24px);
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.96));
  box-shadow: var(--shadow-sm);
}

.shop-hero-side-kicker {
  margin: 0 0 8px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.shop-hero-side h2 {
  margin: 0 0 10px;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text);
}

.shop-hero-points {
  margin: 0;
  padding-left: 18px;
  color: var(--text-2);
  display: grid;
  gap: 8px;
  font-size: 0.94rem;
  line-height: 1.55;
}

.product-page .usb-shop-block {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  padding: clamp(22px, 3vw, 34px);
  background:
    radial-gradient(ellipse 70% 55% at 0% 0%, rgba(224, 161, 43, 0.1), transparent 58%),
    linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
}

.usb-shop-head {
  margin-bottom: 18px;
}

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

.usb-pack-card {
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.9);
  display: grid;
  gap: 10px;
}

.usb-pack-card--featured {
  border-color: rgba(224, 161, 43, 0.52);
  box-shadow: 0 14px 28px rgba(224, 161, 43, 0.14);
}

.usb-pack-tag {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.usb-pack-card h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text);
}

.usb-pack-desc {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-2);
}

.usb-pack-points {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--text-2);
}

.usb-pack-card .btn {
  margin-top: 4px;
}

.usb-license-compare-wrap {
  margin-top: 18px;
}

.usb-license-compare-title {
  margin: 0 0 10px;
  font-size: 1.02rem;
  color: var(--text);
}

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

.usb-license-tier-card {
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  padding: 14px;
  display: grid;
  gap: 8px;
}

.usb-license-tier-card--featured {
  border-color: rgba(224, 161, 43, 0.5);
  box-shadow: 0 12px 24px rgba(224, 161, 43, 0.14);
}

.usb-license-tier-label {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.usb-license-tier-card h4 {
  margin: 0;
  font-size: 1.02rem;
  color: var(--text);
}

.usb-license-tier-price {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 800;
  color: #5f3400;
}

.usb-license-tier-points {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: var(--text-2);
  font-size: 0.88rem;
}

.usb-license-tier-card .btn {
  margin-top: 4px;
  width: 100%;
  justify-content: center;
}

.usb-lite-mini {
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  display: grid;
  gap: 8px;
}

.usb-lite-mini-kicker {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.usb-lite-mini h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--text);
}

.usb-lite-mini p {
  margin: 0;
  color: var(--text-2);
  font-size: 0.9rem;
}

.usb-lite-mini .btn {
  width: fit-content;
}

.usb-shop-note {
  margin: 14px 0 0;
  font-size: 0.9rem;
  color: var(--text-2);
}

.usb-shop-note a {
  color: var(--brown);
  font-weight: 700;
}

@media (max-width: 900px) {
  .shop-hero-layout {
    grid-template-columns: 1fr;
  }
  .usb-shop-grid {
    grid-template-columns: 1fr;
  }
  .usb-license-tier-grid {
    grid-template-columns: 1fr;
  }
  .shop-license-grid {
    grid-template-columns: 1fr;
  }
  .shop-pick-grid {
    grid-template-columns: 1fr;
  }
  .shop-lite-band {
    grid-template-columns: 1fr;
  }
}

/* Unified shop page: all licenses + product info */
.shop-unified-page .shop-licenses-block {
  scroll-margin-top: 96px;
}

.shop-license-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.shop-license-grid .usb-license-tier-card {
  scroll-margin-top: 96px;
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 100%;
}

.shop-license-name {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.2;
  color: var(--text);
}

.shop-license-tagline {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--text-2);
}

.shop-license-fit {
  margin: 4px 0 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--text-2);
}

.shop-license-fit strong {
  color: var(--text);
}

.shop-license-grid .usb-license-tier-card .btn {
  margin-top: auto;
}

.shop-lite-band {
  margin-top: 16px;
  padding: clamp(18px, 2.8vw, 24px);
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.04), transparent 28%),
    rgba(255, 255, 255, 0.92);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  scroll-margin-top: 96px;
}

.shop-lite-band h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  color: var(--text);
}

.shop-lite-band p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--text-2);
}

.shop-lite-points {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.shop-lite-points li {
  position: relative;
  padding-left: 16px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-2);
}

.shop-lite-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.shop-lite-band-action {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.shop-pick-section {
  padding-top: clamp(8px, 1.5vw, 16px);
}

.shop-pick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.shop-pick-card {
  padding: clamp(18px, 2.5vw, 22px);
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(255, 255, 255, 0.88);
  display: grid;
  gap: 10px;
  align-content: start;
}

.shop-pick-card--featured {
  border-color: rgba(224, 161, 43, 0.38);
  background:
    linear-gradient(155deg, rgba(224, 161, 43, 0.1) 0%, rgba(255, 255, 255, 0.92) 42%),
    rgba(255, 255, 255, 0.92);
}

.shop-pick-card h3 {
  margin: 0;
  font-size: 1.02rem;
  color: var(--text);
}

.shop-pick-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.58;
  color: var(--text-2);
}

.shop-pick-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brown);
}

.shop-pick-link:hover {
  color: var(--gold-2);
} 

.shop-unified-page .edition-table-wrap {
  margin-top: 12px;
}

/* Video walkthroughs: featured player + right list */
.video-feature-layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 16px;
  margin-top: 10px;
  align-items: start;
}

.video-feature-embed {
  background: #0b1220;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-sm);
}

.video-feature-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-feature-list {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.video-feature-item {
  width: 100%;
  appearance: none;
  border: 0;
  background: transparent;
  padding: 12px 14px;
  cursor: pointer;
  display: block;
  text-align: left;
  position: relative;
  transition: background 0.15s ease;
}

.video-feature-item + .video-feature-item {
  border-top: 1px solid var(--line);
}

.video-feature-item:hover {
  background: rgba(224, 161, 43, 0.06);
}

.video-feature-item.is-active {
  background: rgba(224, 161, 43, 0.11);
}

.video-feature-item.is-active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gold);
}

.video-feature-item:focus-visible {
  outline: 2px solid rgba(224, 161, 43, 0.6);
  outline-offset: -2px;
}

.video-feature-item-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.video-feature-thumb {
  width: 112px;
  height: 63px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(226, 232, 240, 0.95);
  flex-shrink: 0;
}

.video-feature-item-text {
  flex: 1;
  min-width: 0;
}

.video-feature-item-top {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.video-feature-item-badge {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  font-weight: 900;
  font-size: 0.84rem;
  color: var(--gold-2);
  border: 1px solid rgba(224, 161, 43, 0.35);
  background: rgba(224, 161, 43, 0.14);
  margin-top: 1px;
}

.video-feature-item-title {
  font-family: "Manrope", sans-serif;
  font-weight: 900;
  font-size: 0.98rem;
  color: var(--text);
  margin: 0;
  line-height: 1.2;
}

.video-feature-item-desc {
  margin-top: 6px;
  color: var(--text-2);
  font-size: 0.9rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-feature-item-desc[hidden] {
  display: none;
}

@media (max-width: 760px) {
  .video-feature-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .video-feature-thumb {
    display: none;
  }
  .video-feature-item {
    padding: 12px 14px;
  }
}

.product-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}

@media (min-width: 1000px) {
  .product-video-grid {
    /* 4 videos => 3 columns on desktop keeps it to 2 rows, reducing height */
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.product-video-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.product-video-embed {
  background: #0b1220;
  aspect-ratio: 16 / 9;
}

.product-video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.product-video-meta {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-video-meta h3 {
  font-size: 0.98rem;
  margin: 0;
  color: var(--text);
}

.product-video-meta p {
  margin: 0;
  color: var(--text-2);
  font-size: 0.9rem;
  line-height: 1.6;
}

.product-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.product-compat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 12px;
}

.product-compat-item {
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}

.product-compat-item h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: var(--text);
}

.product-compat-item p {
  margin: 0;
}

.product-faq-list {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

@media (max-width: 860px) {
  .product-faq-row {
    grid-template-columns: 1fr;
  }
}

.product-faq-item {
  border-radius: var(--radius);
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.product-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
}

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

.product-faq-q {
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.product-faq-plus {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(224, 161, 43, 0.35);
  color: var(--gold-2);
  background: rgba(224, 161, 43, 0.08);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.product-faq-item[open] .product-faq-plus {
  transform: rotate(45deg);
}

.product-faq-a {
  padding: 0 16px 16px;
  color: var(--text-2);
  line-height: 1.65;
}

.product-faq-a p {
  margin: 0;
  color: var(--text-2);
  font-size: 0.92rem;
}

.guide-frame {
  padding: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #ffffff;
  min-height: 72vh;
}

.guide-frame iframe {
  width: 100%;
  height: 72vh;
  border: 0;
  display: block;
  background: #ffffff;
}

.guide-fallback {
  margin-top: 12px;
  font-size: 0.92rem;
}

.guide-fallback a {
  color: var(--brown);
  text-decoration: underline;
  text-underline-offset: 3px;
}

table tbody tr:hover > td,
table tbody tr:hover > th {
  background-color: transparent !important;
}

table tbody > tr:nth-child(2n+1) > td {
  background-color: transparent !important;
}


@media (max-width: 760px) {
  .product-video-grid { grid-template-columns: 1fr; }
  .product-compat-grid { grid-template-columns: 1fr; }
}

/* Floating quick shop (all pages) */
.quick-shop {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 130;
}

.quick-shop-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: auto;
  min-width: 140px;
  height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(224, 161, 43, 0.28);
  color: var(--gold);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
  position: relative;
}

.quick-shop-toggle-icon {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.quick-shop-toggle-text {
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--gold);
}

/* Gold dot pulse indicator */
.quick-shop-toggle::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold-2);
  box-shadow: 0 0 0 0 rgba(224, 161, 43, 0.45);
  animation: quick-shop-pulse 1.8s ease-in-out infinite;
}

.quick-shop-panel {
  position: absolute;
  right: 0;
  bottom: 66px;
  width: min(240px, calc(100vw - 36px));
  background:
    radial-gradient(120px 120px at 20% 0%, rgba(224, 161, 43, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.98) 0%, rgba(2, 6, 23, 0.98) 100%);
  border: 1px solid rgba(224, 161, 43, 0.22);
  border-radius: 26px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.38);
  overflow: hidden;
  padding: 6px 0;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.quick-shop.is-open .quick-shop-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.quick-shop-item {
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  text-align: center;
}

.quick-shop-item:last-child {
  border-bottom: 0;
}

.quick-shop-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: rgba(224, 161, 43, 0.06);
  border: 1px solid rgba(224, 161, 43, 0.35);
  flex-shrink: 0;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.quick-shop-item-name {
  font-weight: 900;
  color: #f8fafc;
  letter-spacing: -0.01em;
  font-size: 1rem;
  line-height: 1.15;
}

.quick-shop-item-desc {
  display: block;
  font-size: 0.86rem;
  color: rgba(203, 213, 225, 0.92);
  line-height: 1.35;
  max-width: 170px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.quick-shop-item:hover .quick-shop-icon {
  border-color: rgba(224, 161, 43, 0.6);
  box-shadow: 0 16px 34px rgba(224, 161, 43, 0.12);
}

@media (max-width: 760px) {
  .quick-shop {
    right: 12px;
    bottom: 12px;
  }
  .quick-shop-panel {
    bottom: 60px;
  }
}

@media (min-width: 761px) {
  /* Desktop: keep quick shop at bottom-right with horizontal toggle */
  .quick-shop {
    right: 18px;
    bottom: 18px;
    top: auto;
    transform: none;
  }

  .quick-shop-toggle {
    width: auto;
    min-width: 140px;
    height: 56px;
    padding: 0 22px;
    flex-direction: row;
    gap: 10px;
  }

  .quick-shop-toggle-text {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 0.86rem;
    letter-spacing: -0.01em;
  }

  .quick-shop-panel {
    right: 0;
    bottom: 66px;
    top: auto;
    transform: translateY(10px) scale(0.98);
  }

  .quick-shop.is-open .quick-shop-panel {
    transform: translateY(0) scale(1);
  }

  /* Narrower panel on desktop */
  .quick-shop-panel {
    width: 190px;
  }

  .quick-shop-item {
    grid-template-columns: 1fr;
    padding: 14px 12px;
    justify-items: center;
    text-align: center;
  }

  .quick-shop-icon {
    width: 56px;
    height: 56px;
    border-radius: 999px;
  }

  .quick-shop-item-name {
    font-size: 0.98rem;
    line-height: 1.15;
  }

  .quick-shop-item-desc {
    display: -webkit-box;
  }
}

@keyframes quick-shop-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(224, 161, 43, 0.45);
    opacity: 0.95;
  }
  55% {
    box-shadow: 0 0 0 14px rgba(224, 161, 43, 0.0);
    opacity: 0.95;
  }
  100% {
    box-shadow: 0 0 0 0 rgba(224, 161, 43, 0.0);
    opacity: 0.95;
  }
}

/* Mobile view */
@media (max-width: 430px) {
  .what-you-can-do-row-head {
    flex-direction: column; /* stack vertically */
    align-items: flex-start;
  }

  .what-you-can-do-row-index {
    margin-bottom: 8px; /* spacing between index and content */
  }
	
  .conversion-actions .btn {
	min-width: 100%;
  }
	
  .requirements-col {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    /* allows list to go below */
  }

  .requirements-col-icon {
    margin-bottom: 0;
    /* remove vertical spacing */
    margin-right: 10px;
    /* space between icon and heading */
  }

  .requirements-col h3 {
    margin-bottom: 0;
    /* keep inline with icon */
  }

  .requirements-list {
    width: 100%;
    /* push list to next line */
    margin-top: 8px;
  }
}

@media (max-width: 430px) {

  /* if you have text/paragraph below */
  .who-for-item p,
  .who-for-item ul {
    width: 100%;
    margin-top: 8px;
  }
}

@media (max-width: 430px) {
  .why-opal-item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    /* allows text below */
  }

  .why-opal-icon {
    margin-bottom: 0;
    /* remove vertical stacking */
    margin-right: 10px;
    /* spacing between icon & heading */
    flex-shrink: 0;
  }

  .why-opal-item h3 {
    margin: 0;
    /* keep inline */
  }

  /* if there's description text below */
  .why-opal-item p {
    width: 100%;
    margin-top: 8px;
  }
	
   #how-it-works .diagram {
	 flex-wrap: unset;
  	 font-size: 12px;
   }
	
   .hero-actions {
	  flex-wrap: wrap;
 	  gap: 10px;
   }
	
   .hero-actions .btn{
	  min-width: 100%;
   }
	
   .smart-door-status {
	  right: unset;
   }
	
   .section {
	  padding: 30px 0;
   }
	
   .eyebrow {
	  font-size: 0.75rem;
   }

   .shop-lite-band {
      display: block;
   }

   .shop-lite-band-action{
      justify-content: center;
   }
}

/* Opal Lock shop landing — matches site light theme (styles.css tokens) */

.shop-landing-page .page-shell {
  background:
    radial-gradient(ellipse 70% 45% at 100% 0%, rgba(224, 161, 43, 0.05), transparent 60%),
    radial-gradient(ellipse 55% 40% at 0% 35%, rgba(148, 163, 184, 0.06), transparent 58%),
    #ffffff;
}

.shop-landing { padding-bottom: 88px; }
.shop-landing [id] { scroll-margin-top: 96px; }

.shop-kicker {
  margin: 0 0 10px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.shop-section-head {
  max-width: 640px;
  margin-bottom: clamp(28px, 4vw, 40px);
}
.shop-section-head h2 {
  color: var(--text);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}
.shop-section-head .shop-lead {
  margin-top: 10px;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-2);
}
.shop-section-head .shop-lead a {
  color: var(--brown);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.shop-landing-page .btn-ghost {
  border: 1px solid var(--line);
  color: var(--text-2);
  background: transparent;
}
.shop-landing-page .btn-ghost:hover {
  border-color: rgba(224, 161, 43, 0.45);
  color: var(--brown);
  background: rgba(224, 161, 43, 0.08);
}

/* Hero — aligned with .hero */
.shop-hero {
  padding: clamp(40px, 7vw, 72px) 0 clamp(48px, 8vw, 80px);
  background:
    radial-gradient(ellipse at 60% 0%, rgba(224, 161, 43, 0.11), transparent 45%),
    linear-gradient(175deg, #fffef9 0%, #ffffff 60%);
  border-bottom: 1px solid var(--line);
}
.shop-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 52px);
  align-items: center;
}
.shop-hero h1 {
  font-size: clamp(1.95rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--text);
  letter-spacing: -0.025em;
}
.shop-hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.shop-hero-sub {
  margin: 16px 0 0;
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  max-width: 52ch;
  line-height: 1.72;
  color: var(--text-2);
}
.shop-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.shop-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  padding: 0;
  list-style: none;
}
.shop-trust-badges li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(224, 161, 43, 0.28);
  background: rgba(224, 161, 43, 0.08);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brown);
}
.shop-trust-badges svg {
  width: 14px;
  height: 14px;
  color: var(--gold-2);
  flex-shrink: 0;
}

.shop-mockup {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 254, 249, 0.97) 0%, #ffffff 55%);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.shop-mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--muted-bg);
}
.shop-mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.45);
}
.shop-mockup-dot:nth-child(1) { background: #f87171; }
.shop-mockup-dot:nth-child(2) { background: #fbbf24; }
.shop-mockup-dot:nth-child(3) { background: #34d399; }
.shop-mockup-title {
  margin-left: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-2);
}
.shop-mockup-body { padding: 20px; }
.shop-mockup-status { display: grid; gap: 10px; }
.shop-mockup-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 0.86rem;
  color: var(--text);
}
.shop-mockup-row strong {
  color: #15803d;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.shop-mockup-pba {
  margin-top: 14px;
  padding: 14px;
  border-radius: 12px;
  background: rgba(224, 161, 43, 0.1);
  border: 1px solid rgba(224, 161, 43, 0.28);
  font-size: 0.86rem;
  color: var(--text-2);
}
.shop-mockup-pba span { color: var(--brown); font-weight: 700; }

/* Trust */
.shop-trust {
  padding: clamp(40px, 6vw, 64px) 0;
  /* border-block: 1px solid var(--line); */
  background: var(--alt-bg);
}
.shop-trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
.shop-trust h2 {
  color: var(--text);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}
.shop-trust .shop-lead { color: var(--text-2); }
.shop-trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.shop-trust-logo {
  flex: 1 1 120px;
  min-height: 52px;
  display: grid;
  place-items: center;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px dashed rgba(148, 163, 184, 0.45);
  background: var(--surface);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.shop-trust-points {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.shop-trust-points li {
  position: relative;
  padding-left: 22px;
  font-size: 0.92rem;
  color: var(--text-2);
}
.shop-trust-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--gold);
}

/* Hardware compare */
.shop-hw { padding: clamp(48px, 7vw, 80px) 0; }
.shop-hw-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}
.shop-hw-card {
  padding: clamp(20px, 3vw, 28px);
  border-radius: var(--radius);
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}
.shop-hw-card--winner {
  border-color: rgba(224, 161, 43, 0.5);
  background:
    radial-gradient(ellipse 95% 60% at 100% 0%, rgba(224, 161, 43, 0.12), transparent 56%),
    linear-gradient(170deg, #fffdf7 0%, #ffffff 100%);
  box-shadow: 0 12px 24px rgba(224, 161, 43, 0.1);
}
.shop-hw-card h3 {
  color: var(--text);
  font-size: 1.05rem;
  margin-bottom: 12px;
}
.shop-hw-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.shop-hw-card li {
  font-size: 0.9rem;
  padding-left: 18px;
  position: relative;
  color: var(--text-2);
}
.shop-hw-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-2);
  font-weight: 700;
}
.shop-hw-card--muted li::before { content: "–"; color: #94a3b8; }
.shop-hw-mini-table {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.shop-hw-mini-table table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.shop-hw-mini-table th,
.shop-hw-mini-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.shop-hw-mini-table th {
  background: var(--muted-bg);
  color: var(--text-2);
  font-weight: 600;
}
.shop-hw-mini-table td { color: var(--text); }
.shop-hw-mini-table tr:last-child td { border-bottom: 0; }
.shop-hw-mini-table .is-best { color: var(--brown); font-weight: 700; }

/* Steps */
.shop-steps {
  padding: clamp(48px, 7vw, 80px) 0;
  background: var(--muted-bg);
}
.shop-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.shop-step {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.2s, border-color 0.2s;
}
.shop-step.is-revealed { opacity: 1; transform: none; }
.shop-step:hover {
  border-color: rgba(224, 161, 43, 0.42);
  box-shadow: var(--shadow-md);
}
.shop-step-num {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(224, 161, 43, 0.14);
  color: var(--gold-2);
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 14px;
}
.shop-step h3 { color: var(--text); font-size: 1.05rem; }
.shop-step p { margin-top: 8px; font-size: 0.9rem; color: var(--text-2); }

/* Features */
.shop-features { padding: clamp(48px, 7vw, 80px) 0; }
.shop-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.shop-feature {
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(255, 255, 255, 0.88);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease, border-color 0.2s, box-shadow 0.2s;
}
.shop-feature.is-revealed { opacity: 1; transform: none; }
.shop-feature:hover {
  border-color: rgba(224, 161, 43, 0.38);
  box-shadow: var(--shadow-sm);
}
.shop-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(224, 161, 43, 0.12);
  color: var(--gold-2);
  margin-bottom: 12px;
}
.shop-feature h3 { color: var(--text); font-size: 0.95rem; margin-bottom: 6px; }
.shop-feature p { font-size: 0.84rem; line-height: 1.55; color: var(--text-2); }

/* Licenses — aligned with .usb-license-tier-card */
.shop-licenses {
  padding: clamp(48px, 7vw, 80px) 0;
  scroll-margin-top: 88px;
}
.shop-license-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.shop-license-card {
  display: grid;
  gap: 10px;
  padding: clamp(18px, 2.5vw, 22px);
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  scroll-margin-top: 96px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.shop-license-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(224, 161, 43, 0.38);
}
.shop-license-card--featured {
  border-color: rgba(224, 161, 43, 0.5);
  background:
    radial-gradient(ellipse 95% 60% at 100% 0%, rgba(224, 161, 43, 0.14), transparent 56%),
    linear-gradient(170deg, #fffdf7 0%, #ffffff 100%);
  box-shadow: 0 12px 24px rgba(224, 161, 43, 0.14);
}
.shop-license-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.shop-license-price {
  font-family: Manrope, sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #5f3400;
  line-height: 1;
}
.shop-license-card h3 { color: var(--text); font-size: 1.12rem; }
.shop-license-card > p { font-size: 0.9rem; color: var(--text-2); }
.shop-license-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
  flex: 1;
}
.shop-license-points li {
  font-size: 0.86rem;
  padding-left: 16px;
  position: relative;
  color: var(--text-2);
}
.shop-license-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.shop-license-card .btn { margin-top: auto; width: 100%; justify-content: center; }

.shop-lite-row {
  margin-top: 16px;
  padding: 20px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(148, 163, 184, 0.24);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.03), transparent 28%),
    rgba(255, 255, 255, 0.92);
}
.shop-lite-row h3 { color: var(--text); }
.shop-lite-row p { color: var(--text-2); }

.shop-enterprise-band {
  margin-top: 20px;
  padding: clamp(24px, 4vw, 32px);
  border-radius: 24px;
  border: 1px solid rgba(224, 161, 43, 0.36);
  background:
    radial-gradient(ellipse 95% 62% at 100% 0%, rgba(224, 161, 43, 0.18), transparent 58%),
    linear-gradient(165deg, #fff8e9 0%, #f8fafc 100%);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
}
.shop-enterprise-band h3 { color: var(--text); margin-bottom: 6px; }
.shop-enterprise-band p { color: var(--text-2); }

/* Compatibility */
.shop-compat {
  padding: clamp(48px, 7vw, 80px) 0;
  background: var(--alt-bg);
  scroll-margin-top: 88px;
}
.shop-compat-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.shop-compat-search {
  flex: 1 1 220px;
  min-width: 0;
  padding: 12px 16px 12px 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='%23475569' viewBox='0 0 24 24'%3E%3Cpath d='M15.5 14h-.79l-.28-.27A6.47 6.47 0 0016 9.5 6.5 6.5 0 109.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E") 14px center no-repeat;
  color: var(--text);
  font: inherit;
  font-size: 0.95rem;
}
.shop-compat-search:focus {
  outline: none;
  border-color: rgba(224, 161, 43, 0.55);
  box-shadow: 0 0 0 3px rgba(224, 161, 43, 0.15);
}
.shop-compat-select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font: inherit;
  min-width: 160px;
}
.shop-vendor-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.shop-vendor-chip {
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid rgba(224, 161, 43, 0.22);
  background: rgba(224, 161, 43, 0.06);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brown);
}
.shop-compat-table-wrap {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: auto;
  max-height: 420px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.shop-compat-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.shop-compat-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  text-align: left;
  padding: 12px 14px;
  background: var(--muted-bg);
  color: var(--text-2);
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}
.shop-compat-table td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
}
.shop-compat-table tr:hover td { background: rgba(248, 250, 252, 0.9); }
.shop-compat-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.shop-compat-badge--ok {
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
}
.shop-compat-badge--verify {
  background: rgba(224, 161, 43, 0.14);
  color: var(--brown);
}
.shop-compat-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  font-size: 0.88rem;
}
.shop-compat-note { max-width: 52ch; color: var(--text-2); }
.shop-compat-note a { color: var(--brown); font-weight: 700; }
.shop-compat-cta-row { display: flex; flex-wrap: wrap; gap: 10px; }
.shop-compat-empty {
  padding: 24px;
  text-align: center;
  color: var(--text-2);
}

/* Use cases */
.shop-usecases { padding: clamp(48px, 7vw, 80px) 0; }
.shop-use-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.shop-use-card {
  padding: 20px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.shop-use-card:hover {
  border-color: rgba(224, 161, 43, 0.38);
  box-shadow: var(--shadow-md);
}
.shop-use-card h3 { color: var(--text); font-size: 1rem; margin-bottom: 8px; }
.shop-use-card p { font-size: 0.86rem; color: var(--text-2); }

/* Compare table */
.shop-compare {
  padding: clamp(48px, 7vw, 80px) 0;
  background: var(--muted-bg);
}
.shop-compare-table-wrap {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: auto;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.shop-compare-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.shop-compare-table th,
.shop-compare-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.shop-compare-table th {
  background: var(--muted-bg);
  color: var(--text-2);
  text-align: left;
  font-weight: 600;
}
.shop-compare-table td { color: var(--text); }
.shop-compare-table .col-opal {
  background: rgba(224, 161, 43, 0.06);
}
.shop-compare-table .is-yes { color: #15803d; font-weight: 700; }
.shop-compare-table .is-partial { color: var(--brown); font-weight: 600; }

/* FAQ */
.shop-faq { padding: clamp(48px, 7vw, 80px) 0; }
.shop-faq-list { display: grid; gap: 8px; max-width: 780px; }
.shop-faq-item {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.shop-faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}
.shop-faq-item summary::-webkit-details-marker { display: none; }
.shop-faq-item[open] summary { border-bottom: 1px solid var(--line); }
.shop-faq-a { padding: 0 18px 16px; font-size: 0.9rem; }
.shop-faq-a p { margin: 0; color: var(--text-2); }

/* Final CTA — matches .conversion-inner */
.shop-final-cta {
  margin: 0 auto clamp(32px, 5vw, 48px);
  max-width: min(1180px, 92vw);
  padding: clamp(32px, 5vw, 48px);
  border-radius: 24px;
  text-align: center;
  border: 1px solid rgba(224, 161, 43, 0.36);
  background:
    radial-gradient(ellipse 95% 62% at 100% 0%, rgba(224, 161, 43, 0.24), transparent 58%),
    radial-gradient(ellipse 65% 48% at 0% 100%, rgba(90, 46, 28, 0.06), transparent 52%),
    linear-gradient(165deg, #fff8e9 0%, #f8fafc 100%);
  box-shadow: var(--shadow-md);
}
.shop-final-cta h2 {
  color: var(--text);
  font-size: clamp(1.5rem, 3vw, 2rem);
  max-width: 24ch;
  margin-inline: auto;
  line-height: 1.16;
  letter-spacing: -0.03em;
}
.shop-final-cta p {
  margin: 12px auto 24px;
  max-width: 48ch;
  color: var(--text-2);
}
.shop-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Sticky mobile CTA */
.shop-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: flex;
  gap: 8px;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.96) 0%, rgba(248, 250, 252, 0.98) 100%);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(12px);
  box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.08);
}
.shop-sticky-cta .btn {
  flex: 1;
  justify-content: center;
  padding: 12px 10px;
  font-size: 0.88rem;
}
.shop-sticky-cta[hidden] { display: none; }

@media (max-width: 1024px) {
  .shop-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shop-hero-grid { grid-template-columns: 1fr; }
  .shop-mockup { max-width: 520px; }
}
@media (max-width: 900px) {
  .shop-trust-grid,
  .shop-hw-cards,
  .shop-steps-grid,
  .shop-license-grid,
  .shop-use-grid { grid-template-columns: 1fr; }
  .shop-enterprise-band,
  .shop-lite-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .shop-feature-grid { grid-template-columns: 1fr; }
  .shop-hero-actions .btn { width: 100%; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .shop-step,
  .shop-feature { opacity: 1; transform: none; transition: none; }
}

/* shop.html (unified shop page) */
.shop-unified-page .shop-step,
.shop-unified-page .shop-feature {
  opacity: 1;
  transform: none;
}
.shop-unified-page .shop-hero-copy .shop-trust-badges {
  margin-top: 22px;
}
.shop-unified-page .shop-hero--shop {
  padding-top: clamp(46px, 7vw, 76px);
  padding-bottom: clamp(44px, 7vw, 68px);
}
.shop-unified-page .shop-hero-copy--shop {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.shop-unified-page .shop-hero-copy--shop .subtext {
  margin-left: auto;
  margin-right: auto;
  max-width: 62ch;
}
.shop-unified-page .shop-hero-cta-wrap {
  margin-top: 24px;
  display: grid;
  justify-items: center;
  gap: 10px;
}
.shop-unified-page .shop-hero-actions--shop {
  justify-content: center;
  margin-top: 0;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid rgba(224, 161, 43, 0.24);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}
.shop-unified-page .shop-hero-actions--shop .btn {
  min-width: 210px;
  min-height: 48px;
  border-radius: 10px;
}
.shop-unified-page .shop-hero-actions--shop .shop-cta-primary {
  box-shadow: 0 8px 18px rgba(224, 161, 43, 0.26);
}
.shop-unified-page .shop-hero-actions--shop .shop-cta-secondary {
  border-color: rgba(148, 163, 184, 0.42);
  color: var(--text);
  background: #fff;
}
.shop-unified-page .shop-hero-actions--shop .shop-cta-secondary:hover {
  border-color: rgba(224, 161, 43, 0.5);
  background: #fffcf5;
}
.shop-unified-page .shop-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 0;
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--text-2);
  text-decoration: none;
  text-underline-offset: 3px;
}
.shop-unified-page .shop-cta-link:hover {
  color: var(--brown);
  text-decoration: underline;
}
.shop-unified-page .shop-hero-copy--shop .shop-trust-badges {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
.shop-unified-page .shop-hero-microcopy {
  margin-top: 12px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-2);
}
/* Primary licenses block — main conversion zone on shop.html */
.shop-unified-page .shop-licenses-section {
  padding: clamp(36px, 6vw, 56px) 0;
  scroll-margin-top: 96px;
  position: relative;
}

.shop-unified-page .shop-licenses-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(224, 161, 43, 0.12), transparent 62%);
  pointer-events: none;
}

.shop-unified-page .shop-licenses-section > .container {
  position: relative;
  z-index: 1;
}

.shop-unified-page .shop-licenses-panel {
  border: 2px solid rgba(224, 161, 43, 0.48);
  border-radius: 24px;
  padding: clamp(28px, 4.5vw, 42px);
  background:
    radial-gradient(ellipse 95% 62% at 100% 0%, rgba(224, 161, 43, 0.2), transparent 58%),
    radial-gradient(ellipse 55% 45% at 0% 100%, rgba(90, 46, 28, 0.06), transparent 55%),
    linear-gradient(165deg, #fffdf7 0%, #ffffff 50%, #f8fafc 100%);
  box-shadow:
    0 28px 60px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.95) inset;
}

.shop-unified-page .shop-licenses-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(224, 161, 43, 0.45);
  background: linear-gradient(135deg, rgba(224, 161, 43, 0.22) 0%, rgba(224, 161, 43, 0.1) 100%);
  color: var(--brown);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-unified-page .shop-licenses-layout {
  display: grid;
  gap: clamp(20px, 3vw, 28px);
}

.shop-unified-page .shop-licenses-head {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.shop-unified-page .shop-licenses-head--full {
  width: 100%;
  max-width: none;
  text-align: center;
  padding: 0 clamp(8px, 2vw, 16px);
}

.shop-unified-page .shop-licenses-head--full .shop-licenses-eyebrow {
  margin-inline: auto;
}

.shop-unified-page .shop-licenses-head--full #licenses-heading {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: -0.03em;
  color: var(--text);
  max-width: none;
  margin-inline: auto;
}

.shop-unified-page .shop-licenses-head--full .paths-lead {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  max-width: min(72ch, 100%);
  margin-inline: auto;
  line-height: 1.65;
}

.shop-unified-page .shop-licenses-head--full .conversion-kicker {
  margin-bottom: 8px;
}

.shop-unified-page .shop-licenses-panel .shop-license-grid {
  gap: 18px;
}

.shop-unified-page .shop-licenses-panel .usb-license-tier-card {
  padding: clamp(18px, 2.5vw, 22px);
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.shop-unified-page .shop-licenses-panel .usb-license-tier-card:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 161, 43, 0.4);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.1);
}

.shop-unified-page .shop-licenses-panel .usb-license-tier-card--featured {
  border: 2px solid rgba(224, 161, 43, 0.62);
  background:
    radial-gradient(ellipse 100% 70% at 50% 0%, rgba(224, 161, 43, 0.14), transparent 55%),
    #fff;
  box-shadow:
    0 22px 44px rgba(224, 161, 43, 0.18),
    0 0 0 1px rgba(224, 161, 43, 0.12);
  position: relative;
  z-index: 1;
}

@media (min-width: 901px) {
  .shop-unified-page .shop-licenses-panel .usb-license-tier-card--featured {
    transform: scale(1.03);
  }
  .shop-unified-page .shop-licenses-panel .usb-license-tier-card--featured:hover {
    transform: scale(1.03) translateY(-4px);
  }
}

.shop-unified-page .shop-licenses-panel .usb-license-tier-price {
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  color: #5f3400;
}

.shop-unified-page .shop-licenses-panel .usb-license-tier-card .btn {
  font-weight: 700;
}

.shop-unified-page .shop-licenses-panel .shop-lite-band {
  margin-top: 20px;
  border-color: rgba(224, 161, 43, 0.25);
  background: rgba(255, 255, 255, 0.85);
}

.shop-unified-page .shop-licenses-panel .usb-shop-note {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed rgba(148, 163, 184, 0.35);
}
.shop-enterprise-wrap {
  padding-bottom: clamp(28px, 4vw, 40px);
}
.shop-enterprise-wrap .shop-enterprise-band {
  margin-top: 0;
}
.shop-enterprise-wrap .shop-enterprise-band h2 {
  margin: 0 0 8px;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text);
}
.shop-enterprise-wrap .shop-enterprise-band p {
  margin: 0;
  color: var(--text-2);
  font-size: 0.94rem;
  line-height: 1.6;
}

/* —— shop.html section rhythm (avoid “same card panel” repetition) —— */

/* Product story: editorial split, no boxed panel */
.shop-unified-page .shop-product-story {
  padding: clamp(40px, 6vw, 64px) 0;
  background: var(--surface);
  /* border-bottom: 1px solid var(--line); */
}
.shop-unified-page .shop-product-story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 48px);
  align-items: start;
}
.shop-unified-page .shop-product-story-intro h2 {
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  color: var(--text);
  max-width: 22ch;
}
.shop-unified-page .shop-product-story-lead {
  margin: 12px 0 0;
  font-size: 1rem;
  line-height: 1.68;
  color: var(--text-2);
  max-width: 42ch;
}
.shop-unified-page .shop-product-spec-chips {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.shop-unified-page .shop-product-spec-chips li {
  padding: 6px 12px;
  border-radius: 8px;
  background: var(--muted-bg);
  border: 1px solid var(--line);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-2);
}
.shop-unified-page .shop-product-story-cta {
  margin: 18px 0 0;
}
.shop-unified-page .shop-inline-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brown);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.shop-unified-page .shop-product-story-rows {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--alt-bg);
}
.shop-unified-page .shop-product-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: clamp(18px, 2.5vw, 22px) clamp(18px, 2.5vw, 24px);
  align-items: start;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.shop-unified-page .shop-product-row:last-child {
  border-bottom: 0;
}
.shop-unified-page .shop-product-row-mark {
  font-family: Manrope, sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--gold-2);
  line-height: 1;
  padding-top: 4px;
}
.shop-unified-page .shop-product-row-body h3 {
  margin: 0 0 6px;
  font-size: 1.02rem;
  color: var(--text);
}
.shop-unified-page .shop-product-row-body p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-2);
}

/* Compare table section — document style */
.shop-unified-page #compare {
  padding-top: clamp(36px, 5vw, 52px);
  padding-bottom: clamp(28px, 4vw, 40px);
  background: var(--muted-bg);
}
.shop-unified-page #compare .edition-table-wrap {
  box-shadow: var(--shadow-md);
}

/* Pick guide — light cards only here */
.shop-unified-page .shop-pick-section {
  padding: clamp(32px, 5vw, 48px) 0;
  background: var(--surface);
}
.shop-unified-page .shop-section-head--pick {
  margin-inline: auto;
  margin-bottom: clamp(18px, 3vw, 24px);
}
.shop-unified-page .shop-section-head--pick .conversion-kicker {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(224, 161, 43, 0.12);
}

/* Header variants to avoid repetitive kicker-title rhythm */
.shop-unified-page .shop-section-head--inline {
  max-width: none;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px 16px;
  align-items: baseline;
  margin-bottom: clamp(18px, 3vw, 24px);
}
.shop-unified-page .shop-section-head--inline .conversion-kicker {
  margin: 0;
  grid-column: 1;
}
.shop-unified-page .shop-section-head--inline h2 {
  margin: 0;
  grid-column: 2;
}
.shop-unified-page .shop-section-head--inline .paths-lead {
  grid-column: 2;
  margin: 4px 0 0;
}
.shop-unified-page .shop-section-head--center {
  text-align: center;
  max-width: min(760px, 100%);
  margin-inline: auto;
}
.shop-unified-page .shop-section-head--centered-rule {
  text-align: center;
  max-width: min(760px, 100%);
  margin-inline: auto;
  margin-bottom: clamp(24px, 4vw, 32px);
  position: relative;
}
.shop-unified-page .shop-section-head--centered-rule::after {
  content: "";
  display: block;
  width: clamp(100px, 18vw, 150px);
  height: 2px;
  margin: 14px auto 0;
  background: linear-gradient(90deg, transparent 0%, rgba(224, 161, 43, 0.85) 50%, transparent 100%);
}
.shop-unified-page .shop-section-head--left-accent {
  border-left: 4px solid rgba(224, 161, 43, 0.62);
  padding-left: 14px;
}
.shop-unified-page .shop-section-head--left-accent .shop-kicker {
  color: var(--brown);
}

/* Steps: horizontal timeline (not duplicate cards) */
.shop-unified-page .shop-steps--timeline {
  background: transparent;
  padding: clamp(40px, 6vw, 56px) 0;
  /* border-block: 1px solid var(--line); */
}
.shop-unified-page .shop-steps--timeline .shop-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  position: relative;
}
.shop-unified-page .shop-steps--timeline .shop-steps-grid::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(224, 161, 43, 0.25) 100%);
  z-index: 0;
}
.shop-unified-page .shop-steps--timeline .shop-step {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  padding: 0 14px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.shop-unified-page .shop-steps--timeline .shop-step-num {
  margin: 0 auto 14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(224, 161, 43, 0.45);
  background: var(--surface);
  font-size: 1rem;
}
.shop-unified-page .shop-steps--timeline .shop-step h3 {
  font-size: 0.98rem;
}
.shop-unified-page .shop-steps--timeline .shop-step p {
  font-size: 0.86rem;
  max-width: 28ch;
  margin-inline: auto;
}

/* Features: checklist (not 8 mini cards) */
.shop-unified-page .shop-features--checklist {
  padding: clamp(40px, 6vw, 56px) 0;
  background: var(--alt-bg);
}
.shop-unified-page .shop-section-head--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 20px 32px;
  align-items: end;
  margin-bottom: 24px;
}
.shop-unified-page .shop-lead--aside {
  margin: 0;
  font-size: 0.95rem;
}
.shop-unified-page .shop-feature-checklist {
  margin: 0;
  padding: clamp(20px, 3vw, 28px);
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface);
}
.shop-unified-page .shop-feature-checklist li {
  display: grid;
  gap: 4px;
  padding-left: 22px;
  position: relative;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text-2);
}
.shop-unified-page .shop-feature-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--gold);
}
.shop-unified-page .shop-feature-checklist li strong {
  display: block;
  color: var(--text);
  font-size: 0.92rem;
}

/* Use cases: audience list with accent stripe */
.shop-unified-page .shop-usecases--audience {
  padding: clamp(40px, 6vw, 56px) 0;
  background: var(--surface);
}
.shop-unified-page .shop-usecases--audience .shop-use-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.shop-unified-page .shop-usecases--audience .shop-use-card {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 20px 20px 20px 24px;
  border-bottom: 1px solid var(--line);
  border-left: 4px solid transparent;
  background: var(--alt-bg);
}
.shop-unified-page .shop-usecases--audience .shop-use-card:nth-child(odd) {
  background: var(--surface);
}
.shop-unified-page .shop-usecases--audience .shop-use-card:nth-child(1) { border-left-color: var(--gold); }
.shop-unified-page .shop-usecases--audience .shop-use-card:nth-child(2) { border-left-color: #64748b; }
.shop-unified-page .shop-usecases--audience .shop-use-card:nth-child(3) { border-left-color: #15803d; }
.shop-unified-page .shop-usecases--audience .shop-use-card:nth-child(4) { border-left-color: var(--gold-2); }
.shop-unified-page .shop-usecases--audience .shop-use-card:nth-child(5) { border-left-color: #6366f1; }
.shop-unified-page .shop-usecases--audience .shop-use-card:nth-child(6) { border-left-color: var(--brown); }
.shop-unified-page .shop-usecases--audience .shop-use-card:nth-last-child(-n+2) {
  border-bottom: 0;
}

@media (max-width: 900px) {
  .shop-unified-page .shop-section-head--inline {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .shop-unified-page .shop-section-head--inline .conversion-kicker,
  .shop-unified-page .shop-section-head--inline h2,
  .shop-unified-page .shop-section-head--inline .paths-lead {
    grid-column: 1;
  }
  .shop-unified-page .shop-product-story-layout {
    grid-template-columns: 1fr;
  }
  .shop-unified-page .shop-section-head--split {
    grid-template-columns: 1fr;
  }
  .shop-unified-page .shop-feature-checklist {
    grid-template-columns: 1fr;
  }
  .shop-unified-page .shop-steps--timeline .shop-steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .shop-unified-page .shop-steps--timeline .shop-steps-grid::before {
    display: none;
  }
  .shop-unified-page .shop-steps--timeline .shop-step {
    text-align: left;
    padding: 0;
  }
  .shop-unified-page .shop-steps--timeline .shop-step-num {
    margin: 0 0 12px;
  }
  .shop-unified-page .shop-steps--timeline .shop-step p {
    margin-inline: 0;
    max-width: none;
  }
  .shop-unified-page .shop-usecases--audience .shop-use-grid {
    grid-template-columns: 1fr;
  }
  .shop-unified-page .shop-hero-actions--shop .btn {
    min-width: 0;
    width: 100%;
  }
  .shop-unified-page .shop-hero-actions--shop {
    width: min(440px, 100%);
    grid-template-columns: 1fr;
  }
  .shop-unified-page .shop-cta-link {
    width: 100%;
    justify-content: center;
    padding: 2px 0 0;
  }
}

.shop-start-here-section {
  border-block: 1px solid rgba(224, 161, 43, 0.22);
	background: linear-gradient(180deg, rgba(224, 161, 43, 0.08) 0%, rgba(255, 251, 243, 0.65) 45%, var(--alt-bg) 100%);
}