/* Dawnwater marketing site */
:root {
  color-scheme: light;
  --navy-950: #041525;
  --navy-900: #071b33;
  --navy-800: #0c2d4d;
  --blue-500: #4b9fd3;
  --blue-300: #9bcde7;
  --blue-100: #e5f3fa;
  --paper: #f7fafc;
  --white: #ffffff;
  --ink: #0a2031;
  --muted: #5b6e7b;
  --line: rgba(7, 27, 51, 0.12);
  --shadow: 0 24px 70px rgba(4, 21, 37, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 85% 8%, rgba(155, 205, 231, 0.34), transparent 28rem),
    linear-gradient(180deg, #fbfdff 0%, var(--paper) 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

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

.site-header {
  position: relative;
  z-index: 10;
  padding: 22px 0;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-900);
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  box-shadow: 0 10px 28px rgba(7, 27, 51, 0.18);
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.brand-copy span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  border-radius: 999px;
  color: var(--navy-800);
  font-size: 0.94rem;
  font-weight: 700;
  padding: 10px 14px;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav a[aria-current="page"] {
  background: var(--blue-100);
  color: var(--navy-950);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: center;
  gap: clamp(42px, 7vw, 88px);
  min-height: 610px;
  padding: 70px 0 100px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #2c739f;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: var(--navy-950);
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.5rem, 8vw, 6.6rem);
  letter-spacing: -0.065em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.lead {
  max-width: 670px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid var(--navy-900);
  border-radius: 999px;
  background: var(--navy-900);
  color: var(--white);
  font-weight: 800;
  padding: 12px 21px;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(7, 27, 51, 0.2);
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy-900);
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.trust-line span::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--blue-500);
  content: "";
  vertical-align: 1px;
}

.brand-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), transparent 38%),
    var(--navy-900);
  box-shadow: var(--shadow);
  color: var(--white);
  isolation: isolate;
}

.brand-card::before,
.brand-card::after {
  position: absolute;
  right: -20%;
  left: -20%;
  height: 150px;
  border: 2px solid rgba(155, 205, 231, 0.44);
  border-radius: 50%;
  content: "";
  transform: rotate(-5deg);
}

.brand-card::before {
  bottom: 44px;
}

.brand-card::after {
  bottom: -18px;
  opacity: 0.7;
}

.brand-card-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  padding: 54px;
  text-align: center;
}

.brand-card img {
  width: 136px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 34px;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.28);
}

.brand-card h2 {
  margin: 28px 0 10px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
}

.brand-card p {
  max-width: 280px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.section {
  padding: 100px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 44px;
}

.section-heading p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.card {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
  padding: 30px;
  box-shadow: 0 14px 40px rgba(4, 21, 37, 0.045);
}

.card-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 46px;
  place-items: center;
  border-radius: 13px;
  background: var(--blue-100);
  color: var(--navy-800);
  font-size: 1.1rem;
  font-weight: 900;
}

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

.promise-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--navy-900);
  color: var(--white);
  padding: clamp(38px, 6vw, 70px);
}

.promise-band::after {
  position: absolute;
  right: -80px;
  bottom: -115px;
  width: 340px;
  height: 240px;
  border: 2px solid rgba(155, 205, 231, 0.34);
  border-radius: 50%;
  content: "";
}

.promise-band h2 {
  max-width: 760px;
  color: var(--white);
}

.promise-band > p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
}

.promise-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.promise-list span {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  font-weight: 750;
  padding: 15px;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 72px 0 100px;
}

.cta h2 {
  margin-bottom: 8px;
}

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

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 38px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-inner p {
  margin-bottom: 0;
}

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

.footer-links a {
  color: var(--navy-800);
  font-weight: 750;
  text-decoration: none;
}

.page-hero {
  max-width: 850px;
  padding: 92px 0 54px;
}

.page-hero h1 {
  font-size: clamp(3.2rem, 7vw, 5.6rem);
}

.page-hero .meta {
  margin-top: 25px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 22px 0 70px;
}

.summary-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  padding: 22px;
}

.summary-card strong,
.summary-card span {
  display: block;
}

.summary-card strong {
  margin-bottom: 7px;
  color: var(--navy-950);
}

.summary-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.content-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 760px);
  align-items: start;
  gap: clamp(36px, 7vw, 90px);
  padding: 40px 0 110px;
}

.contents {
  position: sticky;
  top: 24px;
  border-left: 2px solid var(--blue-100);
  padding-left: 18px;
}

.contents strong {
  display: block;
  margin-bottom: 12px;
  color: var(--navy-950);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contents a {
  display: block;
  margin: 8px 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
}

.contents a:hover,
.contents a:focus-visible {
  color: var(--navy-900);
}

.policy {
  min-width: 0;
}

.policy section {
  scroll-margin-top: 30px;
  padding: 0 0 45px;
}

.policy h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.policy p,
.policy li {
  color: #465c6a;
}

.policy a,
.support-section a {
  color: #1f6896;
  font-weight: 750;
}

.callout {
  border: 1px solid rgba(75, 159, 211, 0.28);
  border-radius: var(--radius-sm);
  background: var(--blue-100);
  color: var(--navy-800);
  padding: 20px 22px;
}

.data-table-wrap {
  overflow-x: auto;
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.data-table th,
.data-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.data-table th {
  background: rgba(229, 243, 250, 0.55);
  color: var(--navy-950);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.data-table tr:last-child td {
  border-bottom: 0;
}

.support-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  padding: 92px 0 70px;
}

.support-hero h1 {
  max-width: 780px;
  font-size: clamp(3.2rem, 7vw, 5.6rem);
}

.support-hero .lead {
  margin-bottom: 0;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 70px;
}

.support-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 30px;
}

.support-card .number {
  display: grid;
  width: 36px;
  height: 36px;
  margin-bottom: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--navy-800);
  font-size: 0.84rem;
  font-weight: 900;
}

.support-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.support-section {
  max-width: 820px;
  padding: 54px 0;
}

.support-section ol,
.support-section ul {
  padding-left: 22px;
  color: #465c6a;
}

.support-section li + li {
  margin-top: 11px;
}

.faq {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.faq summary {
  color: var(--navy-950);
  cursor: pointer;
  font-weight: 800;
}

.faq details p {
  max-width: 700px;
  margin: 12px 0 0;
  color: var(--muted);
}

.not-found {
  display: grid;
  min-height: calc(100vh - 110px);
  place-items: center;
  padding: 60px 0;
  text-align: center;
}

.not-found h1 {
  margin-bottom: 12px;
  font-size: clamp(4rem, 12vw, 8rem);
}

.not-found .lead {
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 900px) {
  .hero,
  .support-hero {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }

  .brand-card {
    min-height: 380px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: 0;
  }

  .card-icon {
    margin-bottom: 30px;
  }

  .promise-list,
  .summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-layout {
    grid-template-columns: 1fr;
  }

  .contents {
    position: static;
    display: none;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 28px, 1160px);
  }

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

  .brand-copy span {
    display: none;
  }

  .nav a {
    padding: 9px 8px;
    font-size: 0.82rem;
  }

  .nav a.email-link {
    display: none;
  }

  h1 {
    font-size: clamp(3.2rem, 17vw, 4.5rem);
  }

  .hero {
    min-height: auto;
    padding: 54px 0 72px;
  }

  .brand-card-content {
    padding: 36px 22px;
  }

  .section {
    padding: 72px 0;
  }

  .promise-list,
  .summary-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .cta,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero,
  .support-hero {
    padding-top: 62px;
  }

  .content-layout {
    padding-top: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
