:root {
  --bg: #eef5fe;
  --bg-deep: #dae7f7;
  --panel: rgba(255, 255, 255, 0.52);
  --panel-strong: rgba(255, 255, 255, 0.72);
  --stroke: rgba(125, 154, 196, 0.22);
  --text: #1f3656;
  --text-soft: #5d738d;
  --text-faint: #7a90aa;
  --blue: #2f72c7;
  --blue-deep: #235ca7;
  --ice: #f9fcff;
  --shadow: 0 24px 70px rgba(72, 102, 144, 0.16);
  --shadow-soft: 0 12px 32px rgba(80, 110, 148, 0.10);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #f7fbff 0%, var(--bg) 45%, #e8f2ff 100%);
  color: var(--text);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p, h1, h2, h3 { margin-top: 0; }

.frost-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 8%, rgba(255,255,255,.90), transparent 24%),
    radial-gradient(circle at 86% 6%, rgba(208,226,249,.78), transparent 23%),
    linear-gradient(180deg, #fbfdff 0%, #edf5fe 38%, #e5effd 100%);
}
.mist {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: .85;
}
.mist-left {
  width: 480px;
  height: 480px;
  left: -90px;
  top: 90px;
  background: rgba(255,255,255,.95);
}
.mist-right {
  width: 560px;
  height: 560px;
  right: -150px;
  top: 110px;
  background: rgba(193,219,250,.76);
}
.peaks {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  opacity: .44;
}
.peaks-back {
  bottom: 230px;
  width: min(1240px, 100vw);
  height: 220px;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.35));
  clip-path: polygon(0 100%, 6% 77%, 12% 88%, 18% 58%, 28% 85%, 38% 46%, 49% 82%, 61% 54%, 71% 88%, 80% 61%, 89% 86%, 100% 100%);
}
.peaks-front {
  bottom: 120px;
  width: min(1450px, 100vw);
  height: 310px;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(213,229,249,.84));
  clip-path: polygon(0 100%, 8% 70%, 16% 90%, 24% 52%, 33% 86%, 43% 39%, 53% 82%, 62% 48%, 72% 89%, 82% 57%, 90% 83%, 96% 68%, 100% 100%);
}
.ice-floor {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 240px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0), rgba(225,238,255,.94)),
    linear-gradient(90deg, rgba(255,255,255,.45), rgba(255,255,255,0) 18%, rgba(255,255,255,.3) 54%, rgba(255,255,255,0) 88%);
}
.flakes {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.88) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(255,255,255,.72) 0 1.1px, transparent 1.5px),
    radial-gradient(circle, rgba(255,255,255,.8) 0 1px, transparent 1.4px);
  background-size: 150px 150px, 240px 240px, 320px 320px;
  background-position: 0 0, 50px 80px, 100px 20px;
  opacity: .3;
}

.page-shell,
.site-header,
main,
.site-footer {
  width: min(1280px, calc(100% - 34px));
  margin-left: auto;
  margin-right: auto;
}
.narrow-shell { width: min(920px, calc(100% - 34px)); }

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  padding: 12px 16px;
  border: 1px solid rgba(147,176,214,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}
.brand-mark {
  width: 42px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: rgba(255,255,255,.96);
  box-shadow: inset 0 0 0 1px rgba(147,176,214,.24);
}
.brand-word {
  font-size: 1.12rem;
  color: var(--blue);
  letter-spacing: 0;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  gap: 30px;
  font-size: .95rem;
  color: var(--text);
  font-weight: 600;
}
.nav-links a:hover,
.footer-links a:hover { color: var(--blue); }
.header-button,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 16px;
  font-size: .95rem;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease;
}
.header-button:hover,
.primary-button:hover,
.secondary-button:hover { transform: translateY(-1px); }
.header-button,
.primary-button {
  color: #fff;
  background: linear-gradient(180deg, #4589df, var(--blue-deep));
  box-shadow: 0 14px 28px rgba(47,114,199,.22);
}
.secondary-button {
  color: var(--blue-deep);
  border: 1px solid rgba(147,176,214,.34);
  background: rgba(255,255,255,.62);
}

.hero-panel,
.panel-card,
.feature-card,
.stats-strip,
.site-footer {
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.50));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
  gap: 26px;
  align-items: center;
  margin-top: 18px;
  padding: 34px 36px 16px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}
.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(179,204,235,.26));
  pointer-events: none;
}
.hero-copy,
.hero-visual { position: relative; z-index: 1; }
.eyebrow,
.section-kicker,
.mini-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--blue-deep);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: .75rem;
  font-weight: 800;
}
.eyebrow {
  padding: 8px 14px;
  border: 1px solid rgba(147,176,214,.22);
  border-radius: 999px;
  background: rgba(248,252,255,.84);
}
.section-kicker,
.mini-kicker { color: var(--text-faint); }
h1, .doc-title {
  margin-bottom: 18px;
  font-size: 72px;
  line-height: .98;
  letter-spacing: 0;
  color: var(--text);
}
h1 span { color: var(--blue); }
h2 {
  margin-bottom: 12px;
  font-size: 44px;
  line-height: 1.02;
  letter-spacing: 0;
  color: var(--text);
}
h3 {
  margin-bottom: 8px;
  font-size: 1.22rem;
  line-height: 1.12;
  color: var(--text);
}
.hero-lead,
.panel-card p,
.feature-card p,
.site-footer p,
.doc-panel p { color: var(--text-soft); }
.hero-lead { max-width: 600px; font-size: 1.15rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 14px; }
.hero-note { font-weight: 600; color: var(--blue-deep); }
.hero-visual {
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-phone {
  width: min(100%, 420px);
  filter: drop-shadow(0 28px 52px rgba(62, 84, 118, .26));
}
.hero-device {
  position: absolute;
  right: 10px;
  bottom: 108px;
  width: 240px;
  filter: drop-shadow(0 18px 34px rgba(42, 59, 90, .25));
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 16px 0;
}
.feature-card {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  min-height: 160px;
  padding: 24px;
  border-radius: var(--radius-lg);
}
.feature-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #dfeefe);
  box-shadow: var(--shadow-soft);
  color: var(--blue);
  font-size: 1.3rem;
  font-weight: 800;
}
.feature-card h2 {
  margin-bottom: 8px;
  font-size: 1.32rem;
}

.product-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) minmax(340px, 470px);
  gap: 16px;
  align-items: stretch;
  margin: 16px 0;
}
.panel-card {
  border-radius: var(--radius-xl);
}
.chart-panel {
  padding: 0;
  overflow: hidden;
}
.chart-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.copy-panel {
  padding: 28px 28px 24px;
}
.bullet-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.bullet-list li {
  position: relative;
  padding-left: 26px;
  color: var(--text);
  font-weight: 500;
}
.bullet-list li::before {
  content: "◌";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--blue);
  font-size: 18px;
  font-weight: 700;
}
.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.mini-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 230px;
  padding: 20px;
  overflow: hidden;
}
.mini-card img {
  align-self: end;
  justify-self: end;
  max-height: 110px;
}
.mini-card h3 { font-size: 1.06rem; }
.mini-card p { font-size: .95rem; }

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  margin: 16px 0;
  padding: 0;
  border-radius: var(--radius-xl);
  background: rgba(147,176,214,.22);
}
.stats-strip div {
  min-height: 110px;
  padding: 22px 24px;
  background: rgba(255,255,255,.62);
}
.stats-strip strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue-deep);
  font-size: 1.18rem;
}
.stats-strip span {
  color: var(--text-soft);
  font-weight: 500;
}

.security-band {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 18px;
  padding: 28px;
  margin: 16px 0;
}
.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.security-grid article {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.48);
  border: 1px solid rgba(147,176,214,.18);
}

.cta-band {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 28px 32px;
  margin: 16px 0;
  overflow: hidden;
}
.cta-device {
  width: 100%;
  max-width: 320px;
  filter: drop-shadow(0 20px 28px rgba(47,65,95,.20));
}
.compact-actions { margin: 22px 0 0; }

.faq-band {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 16px;
  margin: 16px 0 28px;
}
.faq-intro {
  padding: 26px;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.faq-grid .panel-card {
  padding: 24px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: start;
  padding: 26px 30px;
  border-radius: var(--radius-xl);
  margin-bottom: 26px;
}
.site-footer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}
.footer-links {
  display: flex;
  gap: 18px;
  font-weight: 700;
  color: var(--text);
}
.footer-meta {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--text-faint);
}

.doc-body .page-shell { padding-bottom: 20px; }
.doc-header { justify-content: space-between; }
.doc-panel {
  padding: 32px;
  margin: 20px 0 0;
}
.doc-panel h2 {
  margin-top: 28px;
  font-size: 1.5rem;
}

.doc-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 4px;
}

.doc-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(13, 159, 189, 0.28);
  border-radius: 8px;
  color: var(--blue-deep);
  font-weight: 800;
  background: rgba(252, 254, 255, 0.7);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 16px;
  border: 1px solid rgba(96, 213, 237, 0.34);
  border-radius: 8px;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(221, 249, 255, 0.86)),
    rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 54px rgba(7, 45, 64, 0.18);
  backdrop-filter: blur(18px);
}

.cookie-banner strong {
  display: block;
  margin-bottom: 4px;
}

.cookie-banner p {
  margin: 0;
  color: var(--text-soft);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-actions a,
.cookie-actions button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(13, 159, 189, 0.28);
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.cookie-actions a {
  color: var(--blue-deep);
  background: rgba(252, 254, 255, 0.72);
}

.cookie-actions button {
  color: #f9fdff;
  background: linear-gradient(180deg, rgba(18, 129, 154, 0.96), rgba(9, 73, 96, 0.98));
}

@media (max-width: 1120px) {
  .feature-row,
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .product-grid,
  .security-band,
  .price-band,
  .cta-band,
  .faq-band { grid-template-columns: 1fr; }
  .mini-grid,
  .security-grid,
  .faq-grid { grid-template-columns: 1fr 1fr; }
  .hero-panel { grid-template-columns: 1fr; }
  .hero-visual { min-height: 460px; }
  .hero-device { right: 60px; bottom: 72px; }
}

@media (max-width: 760px) {
  .page-shell,
  .site-header,
  main,
  .site-footer,
  .narrow-shell { width: min(100% - 22px, 1280px); }
  .site-header {
    position: relative;
    top: auto;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 26px;
  }
  .nav-links { display: none; }
  .header-button { width: 100%; }
  .hero-panel,
  .copy-panel,
  .security-band,
  .cta-band,
  .faq-intro,
  .faq-grid .panel-card,
  .doc-panel { padding: 22px; }
  .feature-row,
  .mini-grid,
  .stats-strip,
  .security-grid,
  .faq-grid { grid-template-columns: 1fr; }
  h1, .doc-title { font-size: 48px; }
  h2 { font-size: 34px; }
  .hero-visual { min-height: 400px; }
  .hero-phone { width: 300px; }
  .hero-device {
    right: -8px;
    bottom: 68px;
    width: 180px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .primary-button,
  .secondary-button {
    width: 100%;
  }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions a,
  .cookie-actions button {
    flex: 1 1 140px;
  }
}

/* Icy crypto redesign layer */
:root {
  --bg: #eaf8ff;
  --bg-deep: #d7edf7;
  --panel: rgba(248, 253, 255, 0.66);
  --panel-strong: rgba(255, 255, 255, 0.86);
  --stroke: rgba(86, 196, 222, 0.28);
  --text: #0b2638;
  --text-soft: #506878;
  --text-faint: #728a99;
  --blue: #0d9fbd;
  --blue-deep: #0a5064;
  --aqua: #66e8ff;
  --mint: #8af2cf;
  --ember: #ff8a4a;
  --ice: #fbfeff;
  --shadow: 0 28px 86px rgba(7, 45, 64, 0.16);
  --shadow-soft: 0 14px 34px rgba(9, 73, 96, 0.12);
  --radius-xl: 8px;
  --radius-lg: 8px;
  --radius-md: 8px;
}

body {
  background:
    radial-gradient(circle at 18% -6%, rgba(102, 232, 255, 0.42), transparent 28%),
    radial-gradient(circle at 90% 6%, rgba(138, 242, 207, 0.28), transparent 24%),
    linear-gradient(180deg, #fbfeff 0%, #eaf8ff 45%, #dceff6 100%);
  color: var(--text);
}

.frost-bg {
  background:
    radial-gradient(circle at 16% 11%, rgba(255, 255, 255, 0.96), transparent 23%),
    radial-gradient(circle at 76% 12%, rgba(104, 232, 255, 0.42), transparent 22%),
    linear-gradient(165deg, #fafeff 0%, #e9f9ff 42%, #d8edf5 100%);
}

.frost-bg::before,
.frost-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.frost-bg::before {
  opacity: 0.34;
  background:
    linear-gradient(116deg, transparent 0 42%, rgba(13, 159, 189, 0.28) 42.2% 42.7%, transparent 43% 100%),
    linear-gradient(36deg, transparent 0 58%, rgba(255, 255, 255, 0.84) 58.3% 58.8%, transparent 59.2% 100%),
    linear-gradient(151deg, transparent 0 66%, rgba(138, 242, 207, 0.22) 66.2% 66.8%, transparent 67.1% 100%);
  background-size: 520px 420px, 680px 500px, 760px 560px;
  background-position: 8% 0, 100% 18%, 42% 72%;
  mix-blend-mode: multiply;
}

.frost-bg::after {
  background:
    repeating-linear-gradient(105deg, rgba(255, 255, 255, 0.24) 0 1px, transparent 1px 22px),
    radial-gradient(circle at 52% 100%, rgba(255, 255, 255, 0.78), transparent 46%);
  opacity: 0.36;
}

.mist {
  filter: blur(58px);
  opacity: 0.82;
}

.mist-left {
  background: rgba(255, 255, 255, 0.98);
}

.mist-right {
  background: rgba(93, 219, 241, 0.44);
}

.peaks-back {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(211, 246, 255, 0.48));
}

.peaks-front {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(174, 224, 238, 0.78));
}

.ice-floor {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(235, 250, 255, 0.96)),
    linear-gradient(100deg, rgba(13, 159, 189, 0.22), transparent 16%, rgba(255, 255, 255, 0.6) 38%, transparent 64%, rgba(138, 242, 207, 0.24));
}

.flakes {
  opacity: 0.42;
  animation: snowfall 24s linear infinite;
}

@keyframes snowfall {
  from { background-position: 0 0, 50px 80px, 100px 20px; }
  to { background-position: 0 260px, 50px 420px, 100px 360px; }
}

.site-header {
  border-color: rgba(96, 213, 237, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(227, 249, 255, 0.66)),
    rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 48px rgba(9, 73, 96, 0.14);
}

.brand-mark {
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  color: var(--blue-deep);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(178, 242, 255, 0.78)),
    conic-gradient(from 45deg, var(--aqua), #fff, var(--mint), #fff, var(--aqua));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.86),
    0 10px 22px rgba(13, 159, 189, 0.16);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 6px 9px;
  border: 1px solid rgba(10, 80, 100, 0.22);
  transform: rotate(45deg);
}

.brand-mark::after {
  inset: auto;
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(102, 232, 255, 0.92), transparent);
  border: 0;
  transform: rotate(-28deg);
}

.brand-mark-core {
  position: relative;
  z-index: 1;
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1;
}

.brand-word {
  color: var(--blue-deep);
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, transparent, var(--aqua), transparent);
  transition: transform 0.18s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.header-button,
.primary-button,
.secondary-button {
  border-radius: 8px;
  min-height: 48px;
  letter-spacing: 0;
}

.header-button,
.primary-button {
  color: #f9fdff;
  border: 1px solid rgba(102, 232, 255, 0.42);
  background:
    linear-gradient(180deg, rgba(18, 129, 154, 0.96), rgba(9, 73, 96, 0.98)),
    linear-gradient(90deg, rgba(102, 232, 255, 0.2), rgba(138, 242, 207, 0.18));
  box-shadow: 0 16px 32px rgba(9, 73, 96, 0.22);
}

.secondary-button {
  color: var(--blue-deep);
  border: 1px solid rgba(13, 159, 189, 0.28);
  background: rgba(252, 254, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.82);
}

.hero-panel,
.panel-card,
.feature-card,
.stats-strip,
.site-footer {
  border-color: rgba(96, 213, 237, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(224, 249, 255, 0.58) 48%, rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow);
}

.hero-panel {
  isolation: isolate;
  align-items: start;
  padding: 26px 44px 20px;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.92), rgba(205, 247, 255, 0.55) 48%, rgba(255, 255, 255, 0.84)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(91, 205, 229, 0.16));
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(122deg, transparent 0 48%, rgba(13, 159, 189, 0.24) 48.2% 48.8%, transparent 49.2% 100%),
    linear-gradient(28deg, transparent 0 54%, rgba(255, 255, 255, 0.72) 54.2% 54.8%, transparent 55.1% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 82%, 94% 100%, 0 100%);
  opacity: 0.64;
  pointer-events: none;
}

.hero-panel::after {
  z-index: 0;
  background:
    radial-gradient(circle at 72% 46%, rgba(102, 232, 255, 0.22), transparent 26%),
    linear-gradient(180deg, transparent 52%, rgba(122, 205, 224, 0.18));
}

.hero-copy,
.hero-visual {
  z-index: 1;
}

.hero-copy {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 22px;
  padding: 0 0 22px;
  align-self: start;
}

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

.hero-chips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 640px;
}

.hero-chips span {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(96, 213, 237, 0.28);
  border-radius: 8px;
  color: var(--blue-deep);
  font-size: 0.86rem;
  font-weight: 800;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(215, 248, 255, 0.56)),
    rgba(255, 255, 255, 0.54);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.68);
}

.hero-chips span::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  margin-right: 10px;
  border: 1px solid rgba(13, 159, 189, 0.48);
  background: linear-gradient(135deg, #fff, var(--aqua));
  transform: rotate(45deg);
}

.hero-control-card {
  max-width: 640px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  padding-top: 20px;
  border-top: 1px solid rgba(13, 159, 189, 0.18);
}

.hero-control-card .mini-kicker {
  margin-bottom: 8px;
}

.hero-control-card h2 {
  margin: 0;
  font-size: 1.42rem;
  line-height: 1.08;
  color: #082131;
}

.hero-mini-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.hero-mini-actions a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(13, 159, 189, 0.28);
  border-radius: 8px;
  color: var(--blue-deep);
  font-size: 0.9rem;
  font-weight: 800;
  background: rgba(252, 254, 255, 0.68);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.hero-mini-actions a:first-child {
  color: #f9fdff;
  background: linear-gradient(180deg, rgba(18, 129, 154, 0.94), rgba(9, 73, 96, 0.96));
}

.eyebrow,
.section-kicker,
.mini-kicker {
  letter-spacing: 0;
}

.eyebrow {
  color: var(--blue-deep);
  border-color: rgba(13, 159, 189, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(219, 249, 255, 0.7));
}

.section-kicker,
.mini-kicker {
  color: #496f7c;
}

h1,
.doc-title {
  font-size: 72px;
  line-height: 0.96;
  letter-spacing: 0;
  color: #061b28;
}

h1 span {
  color: transparent;
  background: linear-gradient(90deg, var(--blue-deep), var(--blue), #34c7c2);
  -webkit-background-clip: text;
  background-clip: text;
}

h2 {
  font-size: 44px;
  line-height: 1.02;
  letter-spacing: 0;
  color: #082131;
}

h3 {
  letter-spacing: 0;
}

.hero-lead {
  max-width: 620px;
  color: #415d6d;
}

.hero-note {
  color: var(--blue-deep);
}

.hero-phone {
  filter:
    drop-shadow(0 30px 58px rgba(6, 34, 50, 0.24))
    drop-shadow(0 0 34px rgba(102, 232, 255, 0.18));
}

.hero-device {
  filter:
    drop-shadow(0 22px 38px rgba(6, 34, 50, 0.24))
    drop-shadow(0 0 24px rgba(138, 242, 207, 0.2));
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 172px;
}

.feature-card::before,
.panel-card::before,
.stats-strip::before,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.74), transparent 28%),
    linear-gradient(180deg, rgba(102, 232, 255, 0.16), transparent 44%);
  opacity: 0.66;
}

.feature-card > *,
.panel-card > *,
.stats-strip > *,
.site-footer > * {
  position: relative;
  z-index: 1;
}

.feature-icon {
  border-radius: 8px;
  color: var(--blue-deep);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(192, 244, 255, 0.78)),
    conic-gradient(from 40deg, rgba(102, 232, 255, 0.78), #fff, rgba(138, 242, 207, 0.78), #fff);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.86),
    0 14px 28px rgba(9, 73, 96, 0.12);
}

.product-grid {
  gap: 18px;
}

.chart-panel {
  background: #f9fdff;
}

.chart-panel img {
  filter: saturate(1.05) contrast(1.04);
}

.copy-panel,
.faq-intro,
.faq-grid .panel-card,
.doc-panel {
  padding: 30px;
}

.bullet-list li {
  color: #183646;
}

.bullet-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  top: 7px;
  border: 1px solid rgba(13, 159, 189, 0.58);
  background: linear-gradient(135deg, #fff, var(--aqua));
  transform: rotate(45deg);
}

.mini-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(223, 249, 255, 0.55)),
    rgba(255, 255, 255, 0.66);
}

.mini-card img {
  max-height: 116px;
  filter: drop-shadow(0 16px 24px rgba(6, 34, 50, 0.18));
}

.stats-strip {
  border: 1px solid rgba(96, 213, 237, 0.28);
  gap: 0;
  background: rgba(96, 213, 237, 0.18);
}

.stats-strip div {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(226, 249, 255, 0.62)),
    rgba(255, 255, 255, 0.62);
}

.stats-strip strong {
  color: var(--blue-deep);
}

.price-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 26px;
  align-items: center;
  margin: 16px 0;
  padding: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 48%, rgba(102, 232, 255, 0.28), transparent 28%),
    linear-gradient(132deg, rgba(255, 255, 255, 0.88), rgba(216, 248, 255, 0.62) 56%, rgba(255, 255, 255, 0.78)),
    rgba(255, 255, 255, 0.64);
}

.price-copy {
  max-width: 680px;
}

.price-copy p {
  color: var(--text-soft);
}

.price-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.price-card {
  min-height: 250px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 28px;
  border: 1px solid rgba(96, 213, 237, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(210, 247, 255, 0.7)),
    rgba(255, 255, 255, 0.74);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.74),
    0 22px 46px rgba(9, 73, 96, 0.12);
}

.price-label,
.price-note {
  color: #496f7c;
  font-size: 0.88rem;
  font-weight: 800;
}

.price-card strong {
  color: #061b28;
  font-size: 4.8rem;
  line-height: 1;
}

.price-note {
  text-align: center;
}

.security-band {
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.86), rgba(217, 248, 255, 0.56) 58%, rgba(255, 255, 255, 0.76)),
    rgba(255, 255, 255, 0.64);
}

.security-grid article {
  border-radius: 8px;
  border-color: rgba(96, 213, 237, 0.22);
  background: rgba(255, 255, 255, 0.56);
}

.cta-band {
  background:
    radial-gradient(circle at 14% 50%, rgba(255, 138, 74, 0.12), transparent 22%),
    linear-gradient(132deg, rgba(255, 255, 255, 0.86), rgba(217, 248, 255, 0.62) 58%, rgba(255, 255, 255, 0.78)),
    rgba(255, 255, 255, 0.64);
}

.cta-device {
  filter:
    drop-shadow(0 24px 34px rgba(6, 34, 50, 0.2))
    drop-shadow(0 0 22px rgba(255, 138, 74, 0.12));
}

.faq-grid .panel-card {
  min-height: 180px;
}

.footer-links a {
  color: var(--blue-deep);
}

@media (prefers-reduced-motion: reduce) {
  .flakes {
    animation: none;
  }
}

@media (max-width: 1120px) {
  h1,
  .doc-title {
    font-size: 60px;
  }

  h2 {
    font-size: 38px;
  }

  .hero-panel {
    padding: 26px 34px 18px;
  }

  .hero-copy {
    min-height: auto;
    gap: 22px;
    padding-bottom: 6px;
  }

  .price-band {
    grid-template-columns: 1fr;
  }

  .price-copy {
    max-width: none;
  }

  .price-card strong {
    font-size: 4rem;
  }
}

@media (max-width: 760px) {
  .site-header {
    border-radius: 8px;
  }

  .hero-panel,
  .copy-panel,
  .security-band,
  .price-band,
  .cta-band,
  .faq-intro,
  .faq-grid .panel-card,
  .doc-panel {
    padding: 22px;
  }

  .hero-panel::before {
    inset: 10px;
  }

  h1,
  .doc-title {
    font-size: 46px;
    line-height: 1;
  }

  h2 {
    font-size: 32px;
  }

  .hero-lead {
    font-size: 1rem;
  }

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

  .hero-control-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-mini-actions {
    justify-content: stretch;
  }

  .hero-mini-actions a {
    flex: 1 1 150px;
  }

  .price-actions {
    flex-direction: column;
  }

  .price-card {
    min-height: 210px;
  }

  .price-card strong {
    font-size: 3.4rem;
  }

  .feature-card {
    min-height: auto;
  }
}
