:root {
  --page: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f5f8fc;
  --surface-blue: #edf4ff;
  --border: #dbe4ee;
  --border-strong: #c7d3e0;
  --ink: #132033;
  --ink-soft: #41516a;
  --muted: #64748b;
  --panel: #41516a;
  --panel-dark: #26364d;
  --panel-light: #526783;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --gold: #efd86b;
  --green: #16865a;
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.07);
  --shadow-md: 0 20px 54px rgba(15, 23, 42, 0.12);
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 24px;
  --content: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(850px 360px at 5% -10%, rgba(37, 99, 235, 0.08), transparent 60%),
    var(--page);
  font: 16px/1.65 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

img,
iframe {
  max-width: 100%;
}

a {
  color: var(--blue-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.32);
  outline-offset: 3px;
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.15;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.08rem;
}

p,
ul,
ol {
  margin-top: 0;
}

ul,
ol {
  padding-left: 1.35rem;
}

li + li {
  margin-top: 0.45rem;
}

.container {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 18px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--blue-dark);
  border-radius: 8px;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: relative;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(219, 228, 238, 0.86);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 1.03rem;
  font-weight: 760;
  letter-spacing: -0.015em;
}

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

.brand-logo {
  width: 42px;
  height: 42px;
  display: block;
  flex: 0 0 42px;
  object-fit: cover;
  background: #fff;
  border: 1px solid rgba(65, 81, 106, 0.22);
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.site-nav a {
  padding: 8px 11px;
  color: var(--ink-soft);
  border-radius: 9px;
  font-size: 0.93rem;
  font-weight: 620;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: var(--surface-soft);
  text-decoration: none;
}

.home-banner {
  margin-top: 30px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.home-banner picture,
.home-banner img {
  display: block;
  width: 100%;
}

.home-banner img {
  height: auto;
}

.home-hero {
  padding: clamp(54px, 8vw, 92px) 0 clamp(48px, 7vw, 82px);
}

.home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(270px, 0.6fr);
  align-items: end;
  gap: clamp(34px, 6vw, 74px);
}

.eyebrow {
  margin-bottom: 13px;
  color: var(--blue-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.home-hero h1 {
  max-width: 820px;
  margin: 0 0 22px;
}

.lead {
  max-width: 740px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(1.07rem, 2vw, 1.3rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 17px;
  color: #fff;
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 11px;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.2);
  font-weight: 720;
}

.button:hover {
  color: #fff;
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  text-decoration: none;
}

.button.secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--border-strong);
  box-shadow: none;
}

.button.secondary:hover {
  color: var(--ink);
  background: var(--surface-soft);
  border-color: #aebdce;
}

.button.light {
  color: var(--panel-dark);
  background: #fff;
  border-color: #fff;
  box-shadow: none;
}

.button.light:hover {
  color: var(--panel-dark);
  background: #eff5fb;
  border-color: #eff5fb;
}

.hero-note {
  padding: 23px;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.hero-note__label {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-note strong {
  display: block;
  margin-bottom: 7px;
  font-size: 1.1rem;
}

.hero-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.trust-strip__item {
  min-height: 118px;
  padding: 24px;
}

.trust-strip__item + .trust-strip__item {
  border-left: 1px solid var(--border);
}

.trust-number,
.trust-icon {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.trust-strip strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.97rem;
}

.trust-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.section {
  padding: clamp(64px, 8vw, 100px) 0;
}

.section + .section {
  padding-top: 0;
}

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

.section-heading h2 {
  margin: 0 0 13px;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.product-card {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.product-card::before {
  content: "";
  height: 7px;
  display: block;
  background: linear-gradient(90deg, var(--blue), #6488e8);
}

.product-card--gold::before {
  background: linear-gradient(90deg, #d6b936, var(--gold));
}

.product-card__body {
  flex: 1;
  padding: clamp(25px, 4vw, 36px);
}

.product-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.product-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--panel), var(--panel-dark));
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.product-tag,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  color: var(--blue-dark);
  background: var(--surface-blue);
  border: 1px solid #d5e5ff;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.02em;
}

.product-card h3 {
  margin: 0 0 13px;
  font-size: clamp(1.45rem, 3vw, 2rem);
  letter-spacing: -0.03em;
}

.product-card__summary {
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.benefit-list {
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-soft);
}

.benefit-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 850;
}

.product-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0 clamp(25px, 4vw, 36px) clamp(25px, 4vw, 36px);
}

.text-link {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 10px 5px;
  font-weight: 720;
}

.about-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.about-panel__story {
  padding: clamp(34px, 6vw, 62px);
  color: #fff;
  background:
    radial-gradient(500px 260px at 5% 0%, rgba(88, 127, 186, 0.45), transparent 65%),
    linear-gradient(145deg, var(--panel), var(--panel-dark));
}

.about-panel__story .eyebrow {
  color: #cbdcff;
}

.about-panel__story h2 {
  margin: 0 0 18px;
  color: #fff;
}

.about-panel__story p {
  max-width: 690px;
  color: #edf4ff;
}

.about-panel__points {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: clamp(30px, 5vw, 52px);
  background: var(--surface-soft);
}

.value-point {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
}

.value-point__number {
  color: var(--blue-dark);
  font-weight: 850;
}

.value-point strong {
  display: block;
  margin-bottom: 3px;
}

.value-point p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(30px, 5vw, 46px);
  color: #fff;
  background: var(--panel-dark);
  border-radius: var(--radius-lg);
}

.contact-band h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
}

.contact-band p {
  margin: 0;
  color: #dce7f5;
}

.page-header {
  margin-top: 34px;
  padding: clamp(38px, 6vw, 66px);
  color: #fff;
  background:
    radial-gradient(700px 340px at 95% 0%, rgba(96, 133, 187, 0.38), transparent 60%),
    linear-gradient(145deg, var(--panel), var(--panel-dark));
  border: 1px solid rgba(38, 54, 77, 0.45);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.page-header .eyebrow {
  color: #cbdcff;
}

.page-header h1 {
  max-width: 890px;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(2.15rem, 5vw, 3.65rem);
}

.page-header .lead {
  color: #eff5fc;
}

.page-header .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.page-header .pill {
  color: #f4f8ff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.page-header .button.secondary {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.42);
}

.page-header .button.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.content-section {
  padding: clamp(58px, 7vw, 88px) 0;
}

.content-section + .content-section {
  padding-top: 0;
}

.surface {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.surface-pad {
  padding: clamp(26px, 4vw, 40px);
}

.surface h2:first-child,
.surface h3:first-child {
  margin-top: 0;
}

.surface h2 {
  margin-bottom: 16px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.surface p,
.surface li {
  color: var(--ink-soft);
}

.overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  gap: 24px;
  align-items: stretch;
}

.media-card {
  overflow: hidden;
  background: var(--panel-dark);
}

.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #172235;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-caption {
  margin: 0;
  padding: 17px 20px;
  color: #dce7f5;
  font-size: 0.88rem;
}

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

.feature-card {
  padding: 28px;
}

.feature-card__index {
  display: block;
  margin-bottom: 17px;
  color: var(--blue-dark);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.feature-card h3 {
  margin: 0 0 11px;
  font-size: 1.15rem;
}

.feature-card ul {
  margin-bottom: 0;
}

.trust-band {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 40px;
  align-items: center;
  padding: clamp(30px, 5vw, 48px);
  background: var(--surface-blue);
  border: 1px solid #d5e5ff;
  border-radius: var(--radius-lg);
}

.trust-band h2 {
  margin: 0;
}

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

.trust-band li {
  position: relative;
  padding-left: 25px;
  color: var(--ink-soft);
}

.trust-band li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 850;
}

.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  counter-increment: step;
  margin: 0;
  padding: 20px;
  color: var(--ink-soft);
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.91rem;
}

.steps li::before {
  content: counter(step);
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: #fff;
  background: var(--panel);
  border-radius: 9px;
  font-weight: 820;
}

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

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

.info-card {
  padding: clamp(25px, 4vw, 36px);
}

.info-card h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
}

.info-card--wide {
  grid-column: 1 / -1;
}

.info-card--accent {
  background: var(--surface-blue);
  border-color: #d5e5ff;
}

.legal-copy h3 {
  margin-top: 27px;
  margin-bottom: 8px;
}

.legal-copy h3:first-of-type {
  margin-top: 0;
}

.meta-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.page-header .meta-note {
  color: #dce7f5;
}

.site-footer {
  margin-top: clamp(50px, 7vw, 88px);
  background: #f4f7fa;
  border-top: 1px solid var(--border);
}

.footer-inner {
  min-height: 126px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-copy strong {
  display: block;
  margin-bottom: 3px;
}

.footer-copy span {
  color: var(--muted);
  font-size: 0.87rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 17px;
}

.footer-links a {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 620;
}

@media (max-width: 900px) {
  .home-hero__grid,
  .about-panel,
  .overview-grid,
  .trust-band {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip__item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .trust-strip__item:nth-child(4) {
    border-top: 1px solid var(--border);
  }

  .overview-grid {
    align-items: start;
  }

  .trust-band {
    gap: 22px;
  }

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

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

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

  .site-nav {
    justify-content: flex-start;
    gap: 2px;
  }

  .site-nav a {
    padding: 7px 8px;
    font-size: 0.86rem;
  }

  .home-banner {
    margin-top: 20px;
    border-radius: var(--radius);
  }

  .home-hero {
    padding-top: 44px;
  }

  .product-grid,
  .feature-grid,
  .info-grid,
  .info-grid--three {
    grid-template-columns: 1fr;
  }

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

  .page-header {
    margin-top: 20px;
    padding: 31px 24px;
    border-radius: var(--radius);
  }

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

  .contact-band,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-inner {
    padding: 28px 0;
  }

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

@media (max-width: 480px) {
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip__item + .trust-strip__item,
  .trust-strip__item:nth-child(3) {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .hero-actions,
  .product-card__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .text-link {
    width: 100%;
    justify-content: center;
  }
}

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

  .product-card {
    transition: none;
  }
}
