:root {
  color-scheme: light;
  --ink: #082f3a;
  --muted: #54717a;
  --paper: #eef8fb;
  --surface: #ffffff;
  --seafoam: #e3f7fb;
  --foam: #f8fdff;
  --navy: #073241;
  --harbor: #087fa1;
  --kelp: #0f6f5e;
  --buoy: #f26b2f;
  --sun: #f4b64a;
  --line: rgba(8, 47, 58, 0.14);
  --shadow: 0 24px 68px rgba(6, 55, 72, 0.14);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}

a {
  color: inherit;
}

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

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 16px clamp(20px, 5vw, 72px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  min-width: 210px;
  text-decoration: none;
}

.brand img {
  background: var(--seafoam);
  border-radius: 8px;
  flex: 0 0 42px;
  height: 42px;
  padding: 6px;
  width: 42px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.15;
}

.brand small {
  color: var(--buoy);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

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

.nav a,
.site-footer a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 750;
  text-decoration: none;
}

.nav a:hover,
.nav a[aria-current="page"],
.site-footer a:hover {
  color: var(--harbor);
}

.hero {
  background:
    radial-gradient(circle at 78% 48%, rgba(36, 157, 209, 0.16), transparent 20rem),
    radial-gradient(circle at 76% 42%, rgba(244, 182, 74, 0.16), transparent 18rem),
    linear-gradient(180deg, #ffffff 0%, #ffffff 42%, var(--seafoam) 42%, var(--seafoam) 100%);
  padding: clamp(20px, 3vw, 32px) clamp(20px, 5vw, 72px) clamp(58px, 8vw, 96px);
}

.hero-logo {
  background: #ffffff;
  margin: 0 auto clamp(26px, 4vw, 40px);
  max-width: min(920px, 100%);
}

.hero-logo img {
  width: 100%;
}

.hero-content {
  align-items: center;
  display: grid;
  gap: clamp(34px, 6vw, 76px);
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.62fr);
  margin: 0 auto;
  max-width: 1180px;
}

.hero-copy {
  max-width: 820px;
}

.eyebrow {
  color: var(--buoy);
  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(--navy);
  font-size: clamp(2.85rem, 6vw, 5.35rem);
  line-height: 0.96;
  margin-bottom: 24px;
  max-width: 820px;
}

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

h3 {
  color: var(--navy);
  font-size: 1.12rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero-copy p {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.34rem);
  max-width: 670px;
}

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

.product-visual {
  justify-self: center;
  max-width: 430px;
  width: min(100%, 430px);
}

.phone-shot {
  background: transparent;
  filter: drop-shadow(0 30px 48px rgba(6, 55, 72, 0.2));
  position: relative;
}

.phone-shot img {
  width: 100%;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 850;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  text-decoration: none;
}

.button.primary {
  background: var(--buoy);
  color: #ffffff;
}

.button.primary:hover {
  background: #d85d29;
}

.button.secondary {
  background: #ffffff;
  border-color: var(--line);
  color: var(--harbor);
}

.button.secondary:hover {
  background: var(--foam);
}

.section,
.workflow,
.community,
.notify,
.page-main {
  padding: clamp(58px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.section {
  background: #f6fbfd;
}

.section-heading {
  max-width: 800px;
}

.feature-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
}

.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.feature p,
.workflow p,
.steps span,
.community p,
.notify p,
.page-hero p,
.content-panel p,
.content-panel li {
  color: var(--muted);
}

.triangulation {
  align-items: center;
  background: #ffffff;
  display: grid;
  gap: clamp(30px, 6vw, 70px);
  grid-template-columns: minmax(280px, 0.7fr) minmax(320px, 1fr);
  padding: clamp(58px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.triangulation-copy {
  max-width: 590px;
}

.triangulation-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
}

.triangulation-art {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.triangulation-art img {
  width: 100%;
}

.community {
  background:
    radial-gradient(circle at 82% 22%, rgba(36, 157, 209, 0.18), transparent 18rem),
    linear-gradient(180deg, #f8fcff 0%, #eef8fb 100%);
}

.community-copy {
  max-width: 900px;
}

.community-copy p {
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  max-width: 800px;
}

.community-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.community-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(8, 127, 161, 0.18);
  border-radius: var(--radius);
  padding: 22px;
}

.community-card h3 {
  color: var(--harbor);
}

.workflow {
  background:
    radial-gradient(circle at 82% 18%, rgba(36, 157, 209, 0.2), transparent 18rem),
    linear-gradient(180deg, #eef8fb 0%, #dff4fb 100%);
  color: var(--ink);
  display: grid;
  gap: clamp(28px, 6vw, 74px);
  grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 1fr);
}

.workflow h2 {
  color: var(--navy);
}

.steps {
  counter-reset: steps;
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.steps li {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(8, 127, 161, 0.18);
  border-radius: var(--radius);
  counter-increment: steps;
  padding: 20px 20px 20px 68px;
  position: relative;
}

.steps li::before {
  align-items: center;
  background: var(--buoy);
  border-radius: 999px;
  color: #ffffff;
  content: counter(steps);
  display: flex;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  left: 20px;
  position: absolute;
  top: 20px;
  width: 34px;
}

.steps strong,
.steps span {
  display: block;
}

.steps span {
  margin-top: 4px;
}

.notify {
  align-items: center;
  background: #f8fcff;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.notify div {
  max-width: 760px;
}

.page-main {
  min-height: calc(100vh - 200px);
}

.page-hero {
  max-width: 840px;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.98;
}

.content-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-top: 34px;
  max-width: 900px;
  padding: clamp(24px, 5vw, 46px);
}

.content-panel h2 {
  color: var(--navy);
  font-size: 1.16rem;
  line-height: 1.2;
  margin: 30px 0 8px;
}

.content-panel h2:first-child {
  margin-top: 0;
}

.content-panel a {
  color: var(--harbor);
  font-weight: 850;
}

.legal p {
  max-width: 760px;
}

.site-footer {
  align-items: center;
  background: #ffffff;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 24px clamp(20px, 5vw, 72px);
}

.site-footer p {
  color: var(--muted);
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

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

  .product-visual {
    justify-self: start;
    max-width: 360px;
  }

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

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

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

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

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

@media (max-width: 560px) {
  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .nav {
    gap: 8px 14px;
  }

  h1 {
    font-size: 3rem;
  }

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

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

  .product-visual {
    max-width: 310px;
  }

  .button {
    width: 100%;
  }
}
