* {
  box-sizing: border-box;
}

:root {
  --background: #f7faf9;
  --foreground: #16201f;
  --muted: #60706d;
  --line: #dfe8e4;
  --teal: #0b7a75;
  --mint: #d8f1e9;
  --amber: #f2bb46;
  --ink: #10201e;
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: Inter, Arial, Helvetica, sans-serif;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.hero,
.subpage {
  background:
    radial-gradient(circle at 72% 8%, rgba(32, 201, 192, 0.22), transparent 27rem),
    linear-gradient(135deg, #f7faf9 0%, #ffffff 54%, #edf9f6 100%);
  min-height: 100vh;
  padding: 24px;
}

.hero {
  border-bottom: 1px solid var(--line);
}

.nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1120px;
}

.brand-menu {
  position: relative;
}

.brand {
  align-items: center;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
  list-style: none;
  min-height: 54px;
  padding: 4px 8px 4px 4px;
}

.brand::-webkit-details-marker {
  display: none;
}

.brand-logo {
  border-radius: 8px;
  height: 46px;
  object-fit: cover;
  width: 46px;
}

.brand-dropdown {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(16, 32, 30, 0.16);
  display: grid;
  gap: 6px;
  left: 0;
  min-width: 220px;
  padding: 8px;
  position: absolute;
  top: calc(100% + 10px);
  z-index: 4;
}

.brand-dropdown a {
  border-radius: 6px;
  color: var(--ink);
  font-weight: 750;
  padding: 12px 14px;
}

.brand-dropdown a:hover,
.brand-dropdown a:focus-visible {
  background: var(--mint);
  outline: none;
}

.nav-link,
.button,
.email-link {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
}

.nav-link {
  border: 1px solid var(--line);
  color: var(--teal);
  min-height: 42px;
  padding: 0 16px;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  margin: 78px auto 0;
  max-width: 1120px;
}

.eyebrow {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

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

h1 {
  color: var(--ink);
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  font-weight: 900;
  line-height: 0.92;
  margin-bottom: 24px;
}

h2 {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  margin-bottom: 16px;
}

h3 {
  color: var(--ink);
  font-size: 1.12rem;
  margin-bottom: 10px;
}

.lede,
.info-card p,
.contact-inner p,
.terms-copy {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.lede {
  max-width: 690px;
}

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

.button {
  min-height: 50px;
  padding: 0 20px;
}

.primary {
  background: var(--teal);
  color: white;
}

.secondary {
  background: white;
  border: 1px solid var(--line);
  color: var(--ink);
}

.metrics-panel,
.info-card,
.support-box {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.metrics-panel {
  box-shadow: 0 24px 80px rgba(16, 32, 30, 0.13);
  padding: 18px;
}

.panel-top,
.metric-row {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.panel-top {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  gap: 8px;
  padding-bottom: 16px;
}

.panel-top strong {
  color: var(--teal);
  margin-left: auto;
}

.status-dot {
  background: #36b37e;
  border-radius: 999px;
  height: 10px;
  width: 10px;
}

.metric-row {
  border-bottom: 1px solid #edf2f0;
  min-height: 78px;
}

.metric-row:last-child {
  border-bottom: 0;
}

.content-band,
.contact-band {
  padding: 76px 24px;
}

.section-inner,
.contact-inner,
.subpage-hero {
  margin: 0 auto;
  max-width: 1120px;
}

.info-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}

.info-card {
  padding: 24px;
}

.card-icon {
  color: #f0745f;
  display: block;
  font-family: ui-monospace, monospace;
  font-weight: 900;
  margin-bottom: 24px;
}

.contact-band {
  background: var(--ink);
  color: white;
}

.contact-inner {
  align-items: center;
  display: flex;
  gap: 32px;
  justify-content: space-between;
}

.contact-inner h2,
.contact-inner .eyebrow {
  color: white;
}

.contact-inner p {
  color: #c7d7d3;
  margin-bottom: 0;
  max-width: 560px;
}

.email-link {
  background: var(--amber);
  color: var(--ink);
  min-height: 54px;
  padding: 0 20px;
  word-break: break-word;
}

.subpage-hero {
  margin-top: 86px;
  max-width: 860px;
}

.subpage-hero .button {
  margin-top: 18px;
}

.support-box {
  display: grid;
  gap: 8px;
  margin: 32px 0 10px;
  max-width: 520px;
  padding: 24px;
}

.support-box span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.support-box a {
  color: var(--teal);
  font-size: clamp(1.15rem, 3vw, 1.7rem);
  font-weight: 900;
  word-break: break-word;
}

.terms-copy {
  display: grid;
  gap: 16px;
  max-width: 760px;
}

@media (max-width: 820px) {
  .hero-grid,
  .info-grid,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    margin-top: 52px;
  }

  .contact-inner {
    align-items: flex-start;
    display: grid;
  }
}

@media (max-width: 520px) {
  .hero,
  .subpage {
    padding: 18px;
  }

  .brand-logo {
    height: 40px;
    width: 40px;
  }

  .brand-dropdown {
    min-width: min(220px, calc(100vw - 36px));
  }

  .button,
  .email-link {
    width: 100%;
  }
}
