:root {
  --bg: #edf3f6;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.72);
  --text: #102033;
  --muted: #566679;
  --brand: #1e4a6c;
  --brand-strong: #12324d;
  --accent: #1f8f78;
  --accent-soft: rgba(31, 143, 120, 0.12);
  --line: #d8e3ea;
  --shadow: 0 18px 48px rgba(16, 32, 51, 0.08);
  --shadow-soft: 0 12px 28px rgba(16, 32, 51, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 10% 10%, rgba(31, 143, 120, 0.12), transparent 26%),
    radial-gradient(circle at 100% 0%, rgba(30, 74, 108, 0.12), transparent 34%),
    linear-gradient(180deg, #f7fbfd 0%, var(--bg) 100%);
}

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

a:hover {
  text-decoration: underline;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-title {
  margin: 0 0 10px;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
  color: var(--brand-strong);
}

.section-copy {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 15px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  color: var(--brand);
  background: rgba(30, 74, 108, 0.08);
  border: 1px solid rgba(30, 74, 108, 0.08);
}

.chip.accent {
  color: var(--accent);
  background: rgba(31, 143, 120, 0.11);
}

.chip.dark {
  color: #fff;
  background: var(--brand-strong);
}

.card {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.hero {
  padding: 28px 0 72px;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 460px);
  gap: 34px;
  align-items: center;
  padding: 34px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.brand-logo {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--brand), var(--brand-strong));
  box-shadow: 0 14px 30px rgba(18, 50, 77, 0.22);
}

.brand-logo svg {
  width: 42px;
  height: 42px;
}

.brand-name {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: var(--brand-strong);
}

.brand-subtitle {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-copy p {
  margin: 0;
}

.hero-body {
  margin-top: 18px;
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 16px;
  border: 1px solid var(--brand);
  font-size: 16px;
  font-weight: 700;
}

.button.primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 14px 28px rgba(30, 74, 108, 0.18);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.78);
  color: var(--brand);
}

.phone-panel {
  position: relative;
  min-height: 700px;
}

.phone {
  width: min(100%, 380px);
  margin-left: auto;
  padding: 12px;
  border-radius: 42px;
  background: linear-gradient(180deg, #14324c, #0f273c);
  box-shadow: 0 26px 60px rgba(16, 32, 51, 0.28);
}

.phone-screen {
  overflow: hidden;
  border-radius: 32px;
  background: #fff;
}

.screen-image {
  width: 100%;
  height: auto;
}

.floating-stat {
  position: absolute;
  left: 0;
  width: 210px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.floating-stat strong {
  display: block;
  margin-bottom: 4px;
  color: var(--brand-strong);
  font-size: 15px;
}

.floating-stat p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.floating-stat.top {
  top: 48px;
}

.floating-stat.bottom {
  bottom: 52px;
}

.section {
  padding: 0 0 68px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.features {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.feature-card,
.policy-card {
  padding: 22px;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(30, 74, 108, 0.09);
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 18px;
}

.feature-card h3,
.policy-card h2 {
  margin: 0 0 10px;
  font-size: 22px;
  color: var(--brand-strong);
}

.feature-card p,
.policy-card p,
.policy-card li {
  color: var(--muted);
  font-size: 15px;
}

.policy-card ul {
  margin: 0;
  padding-left: 20px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.shot-card {
  padding: 18px;
}

.shot-card img {
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.shot-card h3 {
  margin: 16px 0 6px;
  font-size: 21px;
  color: var(--brand-strong);
}

.shot-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.policy-layout {
  padding: 32px 0 56px;
}

.policy-hero {
  padding: 30px;
  margin-bottom: 18px;
}

.policy-hero p {
  max-width: 820px;
}

.policy-grid {
  display: grid;
  gap: 18px;
}

.footer-nav {
  padding: 0 0 40px;
}

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

.footer-meta {
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(30, 74, 108, 0.08);
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .hero-shell,
  .grid.features,
  .gallery {
    grid-template-columns: 1fr;
  }

  .phone-panel {
    min-height: auto;
  }

  .phone {
    margin: 0 auto;
  }

  .floating-stat {
    position: static;
    width: 100%;
    margin-top: 16px;
  }
}

@media (max-width: 680px) {
  .page {
    width: min(100% - 20px, 1160px);
  }

  .hero-shell,
  .policy-hero,
  .feature-card,
  .policy-card,
  .shot-card,
  .footer-shell {
    padding: 20px;
    border-radius: 22px;
  }

  .section {
    padding-bottom: 48px;
  }

  .button {
    width: 100%;
  }

  .brand-lockup {
    align-items: flex-start;
  }

  .brand-logo {
    width: 62px;
    height: 62px;
    border-radius: 18px;
  }

  .hero {
    padding-bottom: 48px;
  }
}
