.info-page {
  --info-navy: #17233d;
  --info-blue: #3a67e8;
  --info-mint: #22a17d;
  min-height: 100vh;
}

.info-page a.button {
  text-decoration: none;
}

.info-topbar {
  position: sticky;
  z-index: 30;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 11px clamp(18px, 4vw, 64px);
  background: var(--glass);
  border-bottom: 1px solid rgba(79, 96, 128, 0.14);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65), 0 7px 26px rgba(20, 29, 48, 0.055);
  -webkit-backdrop-filter: blur(22px) saturate(132%);
  backdrop-filter: blur(22px) saturate(132%);
}

.info-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--ink);
  text-decoration: none;
}

.info-brand > span:last-child {
  display: grid;
}

.info-brand strong {
  font-size: 19px;
  letter-spacing: -0.02em;
}

.info-brand small {
  color: var(--muted);
  font-size: 11.5px;
}

.info-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-main {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(42px, 7vw, 82px) 0 72px;
}

.info-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  min-height: 430px;
  padding: clamp(32px, 6vw, 68px);
  overflow: hidden;
  background:
    radial-gradient(circle at 17% 10%, rgba(83, 126, 255, 0.16), transparent 23rem),
    radial-gradient(circle at 88% 90%, rgba(34, 161, 125, 0.12), transparent 22rem),
    rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 30px;
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.info-kicker,
.info-section-heading > span,
.info-card-title > div > span,
.info-important-heading > div > span,
.info-cta > div > span {
  color: var(--primary);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.025em;
}

.info-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 11px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(58, 103, 232, 0.14);
  border-radius: 999px;
}

.info-kicker-dot {
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(34, 161, 125, 0.12);
}

.info-hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 770;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.info-hero-copy > p {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
}

.info-assurance {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  max-width: 660px;
  margin-top: 25px;
  padding: 15px 17px;
  color: #176c58;
  background: rgba(232, 248, 243, 0.78);
  border: 1px solid rgba(34, 161, 125, 0.18);
  border-radius: 15px;
}

.info-assurance .ui-icon {
  margin-top: 1px;
}

.info-shield {
  position: relative;
  display: grid;
  place-items: center;
  width: min(320px, 100%);
  aspect-ratio: 1;
  margin: auto;
  color: var(--primary);
}

.info-shield svg {
  position: relative;
  z-index: 2;
  width: 58%;
  filter: drop-shadow(0 24px 25px rgba(49, 91, 209, 0.22));
}

.shield-body {
  fill: rgba(255, 255, 255, 0.76);
  stroke: currentColor;
  stroke-width: 4;
}

.shield-lock {
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-shield > span {
  position: absolute;
  z-index: 3;
  bottom: 13%;
  padding: 7px 12px;
  color: #244cac;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(58, 103, 232, 0.15);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  direction: ltr;
  font-size: 11px;
  font-weight: 750;
}

.info-shield-orbit {
  position: absolute;
  border: 1px solid rgba(58, 103, 232, 0.14);
  border-radius: 50%;
}

.info-shield-orbit-one {
  inset: 8%;
}

.info-shield-orbit-two {
  inset: 20%;
  border-color: rgba(34, 161, 125, 0.15);
}

.info-section {
  padding: clamp(72px, 10vw, 118px) 0 46px;
}

.info-section-heading {
  max-width: 680px;
  margin-bottom: 34px;
}

.info-section-heading h2,
.info-card h2,
.info-key-section h2,
.info-important h2,
.info-cta h2 {
  margin: 6px 0 0;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.info-section-heading p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.info-section-heading.compact {
  margin-bottom: 20px;
}

.info-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.info-flow li {
  position: relative;
  min-height: 255px;
  padding: 26px;
  background: var(--surface-glass);
  border: 1px solid var(--line);
  border-radius: 21px;
  box-shadow: var(--shadow-sm);
}

.info-step-number {
  position: absolute;
  top: 20px;
  left: 22px;
  color: var(--faint);
  font-size: 12px;
  font-weight: 750;
}

.info-step-icon,
.info-card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--primary);
  background: var(--primary-soft);
  border: 1px solid rgba(58, 103, 232, 0.12);
  border-radius: 15px;
}

.info-step-icon svg,
.info-card-icon svg,
.info-important-heading > svg,
.info-key-lock svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-flow h3 {
  margin: 25px 0 8px;
  font-size: 19px;
}

.info-flow p,
.info-key-section p,
.info-important p,
.info-cta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.info-card {
  padding: clamp(27px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.info-card-protected {
  background: linear-gradient(145deg, rgba(232, 248, 243, 0.8), rgba(255, 255, 255, 0.82));
}

.info-card-visible {
  background: linear-gradient(145deg, rgba(238, 243, 255, 0.8), rgba(255, 255, 255, 0.82));
}

.info-card-visible .info-card-icon {
  color: #8058b4;
  background: #f2eafa;
  border-color: rgba(128, 88, 180, 0.12);
}

.info-card-title {
  display: flex;
  gap: 15px;
  align-items: center;
}

.info-card-title h2 {
  font-size: clamp(23px, 2.6vw, 31px);
}

.info-check-list,
.info-neutral-list {
  display: grid;
  gap: 13px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.info-check-list li,
.info-neutral-list li {
  position: relative;
  padding-inline-start: 30px;
}

.info-check-list li::before,
.info-neutral-list li::before {
  position: absolute;
  top: 1px;
  right: 0;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.info-check-list li::before {
  content: "✓";
  color: #16745d;
  background: rgba(34, 161, 125, 0.14);
}

.info-neutral-list li::before {
  content: "i";
  color: #70439f;
  background: rgba(128, 88, 180, 0.13);
  font-family: Georgia, serif;
}

.info-card-note {
  margin: 24px 0 0;
  padding: 14px 16px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.56);
  border-radius: 13px;
  font-size: 13px;
}

.info-key-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
  margin: 80px 0;
  padding: clamp(32px, 6vw, 64px);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
}

.info-key-section p + p {
  margin-top: 15px;
}

.info-key-visual {
  display: grid;
  grid-template-columns: 1fr 32px 58px 32px 1fr;
  align-items: center;
  direction: rtl;
}

.info-key-browser,
.info-key-server {
  padding: 13px 10px;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: var(--shadow-sm);
  font-size: 12px;
  font-weight: 700;
}

.info-key-line {
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--line-strong) 0 4px, transparent 4px 8px);
}

.info-key-lock {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #fff;
  background: linear-gradient(145deg, #4b77ee, #315bd1);
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(49, 91, 209, 0.22);
}

.info-important {
  margin: 84px 0 50px;
  padding: clamp(30px, 5vw, 52px);
  background: linear-gradient(145deg, rgba(255, 248, 228, 0.92), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(165, 102, 18, 0.18);
  border-radius: 26px;
}

.info-important-heading {
  display: flex;
  gap: 15px;
  align-items: center;
}

.info-important-heading > svg {
  width: 46px;
  height: 46px;
  padding: 10px;
  color: var(--warning);
  background: var(--warning-soft);
  border-radius: 14px;
}

.info-important-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 38px;
  margin-top: 36px;
}

.info-important h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.info-technical {
  margin-top: 34px;
}

.info-technical details {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.info-technical summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 20px 25px;
  list-style: none;
}

.info-technical summary::-webkit-details-marker {
  display: none;
}

.info-technical summary > span:first-child {
  display: grid;
  gap: 3px;
}

.info-technical summary small {
  color: var(--muted);
  font-weight: 400;
}

.info-details-chevron {
  color: var(--muted);
  font-size: 22px;
  transition: transform 160ms ease;
}

.info-technical details[open] .info-details-chevron {
  transform: rotate(180deg);
}

.info-technical-body {
  padding: 0 25px 25px;
}

.info-technical dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 0;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.info-technical dl > div {
  padding: 16px 18px;
  background: var(--surface);
}

.info-technical dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.info-technical dd {
  margin: 0;
  font-size: 13px;
}

.info-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 78px;
  padding: clamp(28px, 5vw, 48px);
  color: #fff;
  background:
    radial-gradient(circle at 8% 20%, rgba(105, 149, 255, 0.38), transparent 20rem),
    linear-gradient(135deg, #1a2850, #203a78);
  border-radius: 26px;
  box-shadow: 0 22px 45px rgba(23, 35, 61, 0.2);
}

.info-cta > div > span,
.info-cta p {
  color: rgba(255, 255, 255, 0.72);
}

.info-cta .button-primary {
  flex: 0 0 auto;
  color: #244cac;
  background: #fff;
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 20px rgba(4, 12, 34, 0.22);
}

.info-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px 44px;
  color: var(--muted);
  font-size: 12px;
}

.info-footer .brand-mark {
  width: 25px;
  height: 25px;
  border-radius: 8px;
  font-size: 14px;
}

html[data-theme="dark"] .info-hero,
html[data-theme="dark"] .info-key-section,
html[data-theme="dark"] .info-technical details {
  background-color: rgba(21, 27, 38, 0.82);
  border-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .info-card-protected {
  background: linear-gradient(145deg, rgba(21, 63, 55, 0.6), rgba(21, 27, 38, 0.84));
}

html[data-theme="dark"] .info-card-visible {
  background: linear-gradient(145deg, rgba(45, 39, 69, 0.66), rgba(21, 27, 38, 0.84));
}

html[data-theme="dark"] .info-important {
  background: linear-gradient(145deg, rgba(74, 56, 22, 0.72), rgba(21, 27, 38, 0.8));
}

html[data-theme="dark"] .info-assurance {
  color: #8bdfc5;
  background: rgba(20, 76, 62, 0.5);
}

html[data-theme="dark"] .info-kicker,
html[data-theme="dark"] .info-card-note,
html[data-theme="dark"] .info-shield > span {
  background: rgba(15, 19, 27, 0.7);
}

html[data-theme="dark"] .shield-body {
  fill: rgba(18, 24, 35, 0.78);
}

@media (max-width: 850px) {
  .info-hero,
  .info-key-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .info-shield {
    width: min(260px, 75vw);
  }

  .info-flow {
    grid-template-columns: minmax(0, 1fr);
  }

  .info-flow li {
    min-height: 0;
  }

  .info-protection-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 620px) {
  .info-topbar {
    min-height: 64px;
    padding: 9px 12px;
  }

  .info-brand .brand-mark,
  .info-actions .theme-toggle span,
  .info-back-button span {
    display: none;
  }

  .info-actions .theme-toggle,
  .info-back-button {
    min-width: 40px;
    width: 40px;
    padding: 0;
  }

  .info-main {
    width: min(100% - 24px, 1160px);
    padding-top: 22px;
  }

  .info-hero {
    min-height: 0;
    padding: 27px 21px 31px;
    border-radius: 22px;
  }

  .info-hero h1 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .info-shield {
    width: 210px;
  }

  .info-section {
    padding-top: 72px;
  }

  .info-flow li,
  .info-card,
  .info-key-section,
  .info-important,
  .info-cta {
    border-radius: 20px;
  }

  .info-key-section {
    margin-block: 55px;
    padding: 27px 21px;
  }

  .info-key-visual {
    grid-template-columns: 1fr 18px 48px 18px 1fr;
  }

  .info-key-lock {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .info-important-grid,
  .info-technical dl {
    grid-template-columns: minmax(0, 1fr);
  }

  .info-technical summary small {
    display: none;
  }

  .info-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .info-cta .button {
    align-self: stretch;
  }
}

@media (forced-colors: active) {
  .info-hero,
  .info-flow li,
  .info-card,
  .info-key-section,
  .info-important,
  .info-technical details,
  .info-cta {
    color: CanvasText;
    background: Canvas;
    border-color: ButtonBorder;
    box-shadow: none;
  }
}
