:root {
  color-scheme: light;
  --ink: #18202b;
  --muted: #5d6877;
  --paper: #fbfcf7;
  --surface: #ffffff;
  --line: #d8ded8;
  --accent: #0f6b63;
  --accent-strong: #0a4642;
  --sun: #f2b84b;
  --rose: #d85d64;
  --shadow: 0 18px 60px rgba(24, 32, 43, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  color: var(--ink);
  margin: 0;
  min-height: 100vh;
  line-height: 1.65;
}

a {
  color: var(--accent-strong);
  font-weight: 700;
  text-decoration-color: rgba(15, 107, 99, 0.28);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--rose);
}

.site-header {
  align-items: center;
  background: rgba(251, 252, 247, 0.9);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 7vw;
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  color: var(--ink);
  font-size: 1rem;
  letter-spacing: 0;
  text-decoration: none;
}

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

nav a {
  color: var(--muted);
  font-size: 0.95rem;
  text-decoration: none;
}

nav a[aria-current="page"] {
  color: var(--accent-strong);
}

.container {
  margin: 0 auto;
  max-width: 1120px;
  padding: 0 24px;
  width: 100%;
}

.narrow {
  max-width: 820px;
}

.home-hero,
.product-hero,
.policy-hero {
  overflow: hidden;
  position: relative;
}

.home-hero::before,
.product-hero::before,
.policy-hero::before {
  background:
    linear-gradient(120deg, rgba(15, 107, 99, 0.12), transparent 38%),
    radial-gradient(circle at 82% 10%, rgba(242, 184, 75, 0.2), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 0;
}

.home-hero > .container,
.product-hero > .container,
.policy-hero > .container {
  position: relative;
  z-index: 1;
}

.home-hero {
  min-height: 58vh;
  padding: 112px 0 88px;
  text-align: center;
}

.eyebrow,
.card-kicker {
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  letter-spacing: 0;
  line-height: 0.98;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  letter-spacing: 0;
  line-height: 1.15;
  margin: 44px 0 14px;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.3;
  margin: 28px 0 10px;
}

.lede {
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  line-height: 1.55;
  margin: 0 auto 32px;
  max-width: 720px;
}

.actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.button {
  align-items: center;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 8px;
  color: #ffffff;
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  text-decoration: none;
}

.button:hover {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
  color: #ffffff;
}

.button.secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.button.secondary:hover {
  background: #ffffff;
  border-color: var(--accent);
  color: var(--accent-strong);
}

.content-band {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 72px 0;
}

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

.business-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 28px;
}

.business-card h2 {
  margin-top: 0;
}

.business-card p {
  color: var(--muted);
}

.product-hero {
  padding: 76px 0 64px;
}

.product-layout {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.65fr);
}

.product-copy .actions {
  justify-content: flex-start;
}

.phone-showcase {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(15, 107, 99, 0.12), rgba(242, 184, 75, 0.16)),
    #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: center;
  min-height: 460px;
  padding: 28px;
}

.phone-showcase img {
  display: block;
  height: auto;
  max-height: 610px;
  max-width: min(254px, 100%);
  width: 100%;
}

.text-page {
  max-width: 820px;
}

.text-page p,
.text-page li {
  color: var(--muted);
  font-size: 1.02rem;
}

.text-page ul {
  padding-left: 22px;
}

.text-page li + li {
  margin-top: 10px;
}

.feature-list {
  display: grid;
  gap: 12px;
  list-style: none;
  padding-left: 0;
}

.feature-list li {
  border-left: 4px solid var(--sun);
  padding-left: 14px;
}

.policy-hero {
  padding: 76px 0 40px;
}

.policy-mark {
  display: block;
  height: 92px;
  margin-bottom: 24px;
  object-fit: contain;
  object-position: top left;
  width: 46px;
}

.site-footer {
  background: var(--ink);
  color: #ffffff;
  padding: 26px 0;
}

.footer-inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
}

.site-footer a {
  color: #ffffff;
  text-decoration-color: rgba(255, 255, 255, 0.32);
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 16px;
    padding-top: 16px;
    position: static;
  }

  nav {
    justify-content: flex-start;
  }

  .home-hero,
  .product-hero,
  .policy-hero {
    padding: 56px 0 48px;
  }

  h1 {
    font-size: clamp(2.25rem, 13vw, 3.5rem);
  }

  .business-grid,
  .product-layout {
    grid-template-columns: 1fr;
  }

  .product-layout {
    gap: 36px;
  }

  .phone-showcase {
    min-height: 390px;
  }

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

  .button {
    width: 100%;
  }
}
