* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.7;
  color: #23313c;
  background: #eef7f6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 96px));
  margin: 0 auto;
}

.topbar {
  background: #102b33;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.nav-wrapper {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #10b9a1, #153b49);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-weight: 900;
  font-size: 20px;
}

.brand-text {
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 600;
  font-size: 14px;
}

.main-nav a {
  color: #c4e7e4;
  position: relative;
}

.main-nav a.active,
.main-nav a:hover {
  color: white;
}

.main-nav a.active::after,
.main-nav a:hover::after {
  content: "";
  display: block;
  margin-top: 7px;
  height: 2px;
  background: #86f3dd;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  margin: 5px auto;
}

.hero {
  background:
    radial-gradient(circle at 80% 10%, rgba(30, 219, 212, 0.12), transparent 24%),
    linear-gradient(135deg, #102b33, #183f40 88%, #204b50);
  color: white;
  padding: 92px 0 100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(620px, 1.08fr) minmax(330px, 0.78fr);
  align-items: center;
  gap: 70px;
}

.hero-copy h1 {
  margin-top: 16px;
  max-width: 700px;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.08em;
}

.hero-text {
  max-width: 680px;
  margin-top: 20px;
  color: #bedfda;
  font-size: 20px;
  line-height: 1.75;
}

.hero-purpose-strip {
  margin-top: 24px;
  padding: 14px 16px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.09);
}

.hero-purpose-strip .purpose-label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #94f5ce;
}

.hero-purpose-strip .purpose-copy {
  color: white;
  font-size: 13px;
  font-weight: 700;
}

.eyebrow,
.section-kicker {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #94f5ce;
}

.dot {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #8affd3;
  box-shadow: 0 0 0 7px rgba(255,255,255,0.15) inset;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.btn-primary {
  background: linear-gradient(135deg, #82f7cb, #26b7a7);
  color: #123b34;
}

.btn-ghost {
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  background: transparent;
}

.btn-link {
  padding-left: 0;
  padding-right: 0;
  color: #104f58;
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-metrics {
  margin-top: 52px;
  display: flex;
  gap: 54px;
}

.metric-number {
  display: block;
  font-weight: 900;
  font-size: 30px;
  color: white;
}

.metric-label {
  display: block;
  margin-top: 3px;
  color: #BBDDD3;
  font-size: 12px;
  letter-spacing: 0.10em;
}

.hero-panel {
  display: flex;
  align-items: center;
  justify-content: center;
}

.panel-card {
  width: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.05));
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.24);
  padding: 34px;
  color: white;
  backdrop-filter: blur(24px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
}

.panel-card .panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.panel-kicker {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #75f8d4;
}

.status-pill {
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 11px;
  font-weight: 800;
}

.icon-stack {
  margin-top: 34px;
}

.icon-chip {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 15px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.icon-chip:first-child {
  border-top: none;
}

.icon-chip .icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #91e8d1;
  color: #0c453a;
  font-weight: 900;
}

.icon-chip .label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a6cece;
}

.icon-chip .value {
  margin-top: 2px;
  font-size: 23px;
  font-weight: 800;
}

.progress-wrap {
  margin-top: 28px;
}

.row-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #bddbd6;
  font-size: 12px;
  font-weight: 700;
}

.progress-bar {
  height: 9px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  margin-top: 10px;
  overflow: hidden;
}

.progress-bar div {
  height: 100%;
  background: linear-gradient(90deg, #addfce, #b5e848);
}

.section {
  padding: 96px 0;
}

.section-light {
  background: #eefaf7;
}

.purpose-section {
  background: #f8ffff;
}

.purpose-grid {
  display: grid;
  grid-template-columns: minmax(620px, 1.02fr) minmax(260px, 0.62fr);
  align-items: center;
  gap: 52px;
}

.purpose-copy h2 {
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.05em;
  color: #1e3033;
}

.purpose-copy p {
  margin-top: 20px;
  color: #5c6d6a;
  font-size: 17px;
  line-height: 1.86;
}

.purpose-list {
  margin-top: 28px;
}

.purpose-list > div {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  color: #1d5151;
  font-weight: 700;
}

.check-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #9ae8d4;
  color: #11453d;
  font-size: 13px;
}

.purpose-panel {
  display: flex;
  align-items: center;
  justify-content: center;
}

.purpose-card {
  background: linear-gradient(180deg, #173f43, #102b33);
  border-radius: 30px;
  padding: 42px;
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  box-shadow: 0 24px 70px rgba(28, 89, 82, 0.18);
}

.purpose-card h3 {
  margin-top: 20px;
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.purpose-card p {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.8;
  color: #ccdeda;
}

.purpose-card .panel-kicker {
  color: #88f3d7;
}

.app-signal {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.app-signal span {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #86f3d0;
  color: #11453d;
  font-weight: 900;
}

.app-signal span::before {
  content: "S";
  font-size: 25px;
}

.app-signal .label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #9ccaca;
  text-transform: uppercase;
}

.app-signal .value {
  font-size: 24px;
  margin-top: 2px;
  color: white;
}

.two-column {
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  align-items: center;
  gap: 62px;
}

.two-column h2,
.section-heading h2,
.cta-box h2,
.page-hero h1 {
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.05em;
  color: #1e3033;
}

.two-column p,
.section-heading p,
.cta-box p {
  margin-top: 20px;
  color: #5c6d6a;
  font-size: 17px;
  line-height: 1.86;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 18px;
}

.feature-card {
  padding: 30px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #d5ece9;
  box-shadow: 0 14px 38px rgba(26,72,61,0.06);
}

.feature-card h3,
.product-card h3 {
  margin-top: 24px;
  font-size: 22px;
  line-height: 1.25;
  color: #17393d;
}

.feature-card p,
.product-card p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.78;
  color: #586e69;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #dffcf5;
  color: #094e49;
  font-size: 24px;
}

.section-heading.centered {
  max-width: 700px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading .section-kicker,
.cta-box .section-kicker {
  color: #168b7d;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(300px, 1fr));
  gap: 30px;
}

.product-card {
  border-radius: 28px;
  background: white;
  padding: 40px;
  border: 1px solid #d7edeb;
  box-shadow: 0 12px 34px rgba(20,67,61,0.06);
}

.product-card.highlight-card {
  background: linear-gradient(180deg, #1b423a, #153b40);
  border-color: #244b46;
}

.product-card.highlight-card h3,
.product-card.highlight-card p,
.product-card.highlight-card li {
  color: white;
}

.product-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-size: 24px;
  font-weight: 900;
}

.icon-red {
  background: #ffe3dd;
  color: #972928;
}

.icon-blue {
  background: #c9eef2;
  color: #14515f;
}

.check-list {
  margin-top: 24px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-top: 12px;
  font-size: 14px;
  color: #58746f;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #168b7d;
  font-weight: 900;
}

.cta-section {
  background: linear-gradient(135deg, #eefaf7 0%, #d6f0ed 100%);
}

.cta-box {
  border-radius: 28px;
  background: white;
  padding: 54px;
  border: 1px solid #b2eee7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.page-hero {
  background: linear-gradient(135deg, #102b33, #183c3d);
  color: white;
  padding: 88px 0 80px;
}

.page-hero.small-hero {
  padding-top: 82px;
}

.page-hero h1 {
  color: white;
  margin-top: 12px;
  font-size: clamp(40px, 5vw, 58px);
}

.page-hero .subcopy {
  margin-top: 14px;
  color: #bedfda;
  max-width: 760px;
}

.page-hero .narrow {
  width: min(920px, calc(100% - 80px));
}

.policy-content {
  background: #f9ffff;
}

.policy-layout {
  display: grid;
  grid-template-columns: 280px minmax(620px, 1fr);
  gap: 44px;
}

.toc-card {
  background: white;
  border-radius: 24px;
  border: 1px solid #d4ece9;
  padding: 30px;
  align-self: start;
  box-shadow: 0 12px 34px rgba(20,67,61,0.05);
  position: sticky;
  top: 30px;
}

.toc-card h3 {
  margin-bottom: 25px;
  color: #17393d;
}

.toc-list {
  list-style: none;
}

.toc-list li {
  padding: 12px 0;
  border-top: 1px solid #dcefed;
}

.toc-list li:first-child {
  border-top: none;
}

.toc-list a {
  color: #1b6059;
  font-weight: 700;
}

.article-panel {
  background: white;
  padding: 38px 44px;
  border-radius: 24px;
  border: 1px solid #d4ece9;
}

.article-panel h2 {
  font-size: 30px;
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: #19383d;
  margin-bottom: 12px;
}

.article-panel p {
  margin-top: 14px;
  color: #596d69;
  line-height: 1.88;
}

.article-block {
  padding: 26px 0;
  border-top: 1px solid #eff2f0;
}

.article-block:first-child {
  border-top: none;
  padding-top: 6px;
}

.footer {
  background: #102b33;
  color: #badbd8;
  padding-top: 54px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.footer-brand .brand-text {
  color: white;
}

.footer-copy {
  color: #ADCBC9;
  font-size: 13px;
  margin-top: 10px;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 28px;
  align-items: center;
}

.footer-links a {
  color: #eefaff;
}

.footer-bottom {
  padding: 28px 0;
  margin-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.10);
  font-size: 12px;
}

@media (max-width: 900px) {
  .container {
    width: min(100%, calc(100% - 36px));
  }

  .hero-grid,
  .two-column,
  .policy-layout,
  .product-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 52px;
  }

  .hero-copy h1 {
    font-size: clamp(40px, 11vw, 62px);
  }

  .hero-metrics {
    flex-wrap: wrap;
  }

  .hero-actions,
  .cta-box,
  .footer-grid {
    align-items: flex-start;
  }

  .hero-actions,
  .cta-box,
  .footer-grid {
    flex-direction: column;
  }

  .main-nav {
    position: absolute;
    top: 84px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: #153a3e;
    padding: 24px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.12);
  }

  .main-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-block;
  }

  .article-panel {
    padding: 24px;
  }
}
