:root {
  color-scheme: light;
  --bay-teal: #20b0c0;
  --bay-teal-dark: #0090b0;
  --bay-teal-light: #20a8b8;
  --bay-sand: #f8d0a0;
  --bay-off-white: #f8f8f8;
  --bg: #f8f8f8;
  --ink: #0a1a1f;
  --muted: #42565c;
  --accent: #20b0c0;
  --accent-dark: #0090b0;
  --panel: rgba(248, 248, 248, 0.85);
  --stroke: rgba(10, 26, 31, 0.12);
  --shadow: 0 28px 60px rgba(0, 90, 112, 0.18);
  font-size: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Newsreader", "Times New Roman", serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(32, 176, 192, 0.2), transparent 52%),
    radial-gradient(circle at 75% 20%, rgba(248, 208, 160, 0.35), transparent 46%),
    radial-gradient(circle at 20% 70%, rgba(32, 168, 184, 0.2), transparent 62%),
    var(--bg);
  min-height: 100vh;
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  height: 72px;
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  background:
    radial-gradient(900px 500px at 75% 50%, rgba(248, 208, 160, 0.55) 0%, rgba(255, 255, 255, 0) 60%),
    radial-gradient(900px 500px at 20% 50%, rgba(180, 230, 235, 0.55) 0%, rgba(255, 255, 255, 0) 60%),
    linear-gradient(90deg, #e6f6f7 0%, #f8f8f8 55%, #f8d0a0 100%);
  border-bottom: 1px solid var(--stroke);
  overflow: visible;
  z-index: 10;
}

.header-logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.header-logo img {
  height: 100%;
  max-height: none;
  width: auto;
  display: block;
  transform: scale(1.35);
  transform-origin: left center;
}

.nav {
  display: flex;
  gap: 1.5rem;
  font-family: "Space Grotesk", "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.cta {
  font-family: "Space Grotesk", "Helvetica Neue", sans-serif;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  background: var(--accent-dark);
  color: #fff;
  font-size: 0.95rem;
}

main {
  padding: 4rem 7vw 6rem;
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 3.5rem;
  align-items: center;
}

.eyebrow {
  font-family: "Space Grotesk", "Helvetica Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.1rem);
  line-height: 1.05;
  margin-bottom: 1.4rem;
}

.lede {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--muted);
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.button,
.ghost {
  font-family: "Space Grotesk", "Helvetica Neue", sans-serif;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 16px 30px rgba(32, 176, 192, 0.3);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(32, 176, 192, 0.45);
}

.ghost {
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.55);
}

.hero-card {
  background: var(--panel);
  border-radius: 24px;
  padding: 2.4rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--stroke);
}

.card-label {
  font-family: "Space Grotesk", "Helvetica Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.hero-card ul {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  font-size: 1.05rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
}

.panel {
  background: var(--panel);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--stroke);
  box-shadow: 0 20px 45px rgba(11, 14, 19, 0.08);
}

.panel h2 {
  font-size: 1.8rem;
  margin-bottom: 0.85rem;
}

.panel h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.panel p {
  color: var(--muted);
  line-height: 1.6;
}

.feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
}

.feature h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature p {
  color: var(--muted);
  line-height: 1.7;
}

.feature-list {
  display: grid;
  gap: 1.4rem;
}

.feature-list h4 {
  font-family: "Space Grotesk", "Helvetica Neue", sans-serif;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.6rem;
  background: linear-gradient(135deg, rgba(0, 144, 176, 0.92), rgba(32, 176, 192, 0.85));
  color: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.contact p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.8rem;
  line-height: 1.6;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  padding: 2.5rem 7vw 3rem;
  font-family: "Space Grotesk", "Helvetica Neue", sans-serif;
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero,
  .feature {
    grid-template-columns: 1fr;
  }

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

  .site-footer {
    flex-direction: column;
    gap: 0.6rem;
  }
}

@media (max-width: 768px) {
  .site-header {
    height: 56px;
  }

  .header-logo img {
    transform: scale(1.25);
  }
}
