:root {
  color-scheme: light;
  --background: #f7fbfa;
  --surface: #ffffff;
  --foreground: #13201f;
  --muted: #5f706d;
  --border: #dce9e6;
  --primary: #0f766e;
  --primary-dark: #115e59;
  --primary-soft: #dff5f1;
  --accent: #2563eb;
  --shadow: 0 18px 45px rgba(15, 118, 110, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.12), transparent 34rem),
    var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

a {
  color: var(--primary);
  font-weight: 700;
}

.site-header,
.site-footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--foreground);
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--primary);
  color: #ffffff;
  font-size: 18px;
  box-shadow: var(--shadow);
}

nav a,
.text-link {
  color: var(--primary-dark);
  text-decoration: none;
}

nav a:hover,
.text-link:hover,
.policy-card a:hover,
.site-footer a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero {
  width: min(1120px, calc(100% - 40px));
  min-height: calc(100vh - 170px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: 48px;
  padding: 54px 0 74px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(44px, 9vw, 84px);
  line-height: 0.96;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 12px;
  background: var(--primary);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.button:hover {
  background: var(--primary-dark);
}

.trust-panel {
  display: grid;
  gap: 14px;
}

.trust-panel > div {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.panel-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-weight: 900;
}

.trust-panel h2,
.policy-card h2 {
  margin-bottom: 6px;
  font-size: 20px;
}

.trust-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.policy-shell {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0 72px;
}

.policy-card {
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.policy-card h1 {
  font-size: clamp(36px, 8vw, 58px);
}

.lead {
  color: var(--muted);
  font-size: 19px;
}

.policy-card section {
  padding-top: 26px;
  margin-top: 26px;
  border-top: 1px solid var(--border);
}

.policy-card p {
  color: #344341;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0 34px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--primary-dark);
  text-decoration: none;
}

@media (max-width: 760px) {
  .site-header,
  .site-footer,
  .hero,
  .policy-shell {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    padding: 18px 0;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px 0 54px;
  }

  .hero-copy,
  .lead {
    font-size: 17px;
  }

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

  .policy-shell {
    padding-top: 24px;
  }

  .policy-card {
    border-radius: 18px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
