:root {
  --night: #081a2d;
  --night-soft: #102941;
  --ink: #12253b;
  --muted: #6b7b8d;
  --paper: #f6f1e8;
  --paper-deep: #ebe5d9;
  --mist: #dfecef;
  --mint: #bfe8dc;
  --aqua: #67dadd;
  --aqua-soft: #c0f1ed;
  --coral: #ff9271;
  --sun: #ffd186;
  --white: #fffdf8;
  --line: rgba(18, 37, 59, 0.14);
  --shadow: 0 24px 60px rgba(8, 26, 45, 0.13);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --max-width: 1180px;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--aqua);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 48px), var(--max-width));
  margin-inline: auto;
}

.hero-shell {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 74% 22%, rgba(58, 122, 141, 0.45), transparent 25%),
    radial-gradient(circle at 22% 106%, rgba(51, 111, 128, 0.26), transparent 34%),
    var(--night);
}

.hero-shell::after {
  position: absolute;
  right: -12%;
  bottom: -35%;
  width: 70%;
  height: 70%;
  border: 1px solid rgba(103, 218, 221, 0.18);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.site-nav {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 15px;
  font-weight: 750;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.09);
}

.brand-mark svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-links a,
.footer-links a {
  color: rgba(255, 253, 248, 0.74);
  font-size: 13px;
  text-decoration: none;
  transition: color 160ms ease;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--white);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 99px;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease;
}

.nav-cta:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
  align-items: center;
  gap: 40px;
  min-height: 700px;
  padding-top: 82px;
  padding-bottom: 106px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  color: var(--aqua);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid rgba(103, 218, 221, 0.25);
  border-radius: 99px;
  background: rgba(103, 218, 221, 0.08);
  letter-spacing: 0.09em;
}

.eyebrow-dot,
.pulse-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 4px rgba(103, 218, 221, 0.12);
}

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

h1,
h2,
h3 {
  font-weight: 780;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 680px;
  margin-bottom: 27px;
  font-size: clamp(3.7rem, 7vw, 6.9rem);
  line-height: 0.93;
}

.hero-lede {
  max-width: 560px;
  margin-bottom: 34px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 17px;
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 14px 19px;
  border: 1px solid transparent;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 780;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--bright {
  color: var(--night);
  background: var(--aqua);
  box-shadow: 0 10px 30px rgba(103, 218, 221, 0.16);
}

.button--bright:hover {
  background: #8be6e7;
  box-shadow: 0 14px 35px rgba(103, 218, 221, 0.23);
}

.quiet-link,
.underlined-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.quiet-link {
  color: rgba(255, 253, 248, 0.72);
}

.quiet-link:hover,
.underlined-link:hover {
  color: var(--aqua);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 24px;
  margin-top: 50px;
  color: rgba(255, 253, 248, 0.47);
  font-size: 11px;
}

.hero-proof span {
  position: relative;
}

.hero-proof span + span::before {
  position: absolute;
  top: 50%;
  left: -14px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.42);
  content: "";
  transform: translateY(-50%);
}

.hero-proof strong {
  color: rgba(255, 253, 248, 0.83);
  font-weight: 700;
}

.hero-art {
  position: relative;
  min-height: 540px;
}

.sun-orb {
  position: absolute;
  top: 15%;
  right: 8%;
  width: 144px;
  height: 144px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffe5ab, #fda87c);
  box-shadow: 0 0 0 18px rgba(255, 209, 134, 0.04), 0 0 80px rgba(255, 183, 107, 0.25);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(103, 218, 221, 0.24);
  border-radius: 50%;
  transform: rotate(-24deg);
}

.orbit--one {
  top: 7%;
  right: -3%;
  width: 390px;
  height: 235px;
}

.orbit--two {
  top: 17%;
  right: 0;
  width: 430px;
  height: 310px;
  border-color: rgba(255, 209, 134, 0.16);
  transform: rotate(15deg);
}

.finder-card {
  position: absolute;
  z-index: 2;
  top: 16%;
  left: 4%;
  width: min(100%, 438px);
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.97);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.32), 0 0 0 9px rgba(255, 255, 255, 0.025);
  color: var(--ink);
  transform: rotate(-4deg);
}

.finder-card__topline,
.finder-card__caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.finder-card__topline {
  margin: 2px 3px 13px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.finder-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.pulse-dot {
  width: 5px;
  height: 5px;
  background: var(--coral);
  box-shadow: none;
}

.finder-count {
  color: #9aa5ae;
}

.finder-image {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.finder-image--main {
  height: 255px;
  background: linear-gradient(155deg, #8fdadd 0%, #cfede4 43%, #f4bd84 100%);
}

.landscape-sun {
  position: absolute;
  top: 19%;
  left: 26%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffe6b1;
  box-shadow: 0 0 40px rgba(255, 230, 177, 0.7);
}

.landscape-hill {
  position: absolute;
  right: -10%;
  left: -8%;
  border-radius: 50% 50% 0 0;
  transform: rotate(-6deg);
}

.landscape-hill--back {
  bottom: 24%;
  height: 125px;
  background: #477e79;
}

.landscape-hill--front {
  right: -12%;
  bottom: 12%;
  height: 100px;
  background: #245a60;
  transform: rotate(8deg);
}

.landscape-water {
  position: absolute;
  right: -5%;
  bottom: -6%;
  left: -5%;
  height: 38%;
  background: linear-gradient(180deg, #317c86, #194b61);
  clip-path: ellipse(74% 57% at 50% 100%);
}

.tiny-boat {
  position: absolute;
  z-index: 2;
  bottom: 29%;
  left: 46%;
  width: 36px;
  height: 9px;
  border-radius: 0 0 20px 20px;
  background: #f4c17f;
  transform: rotate(-3deg);
}

.tiny-boat::before {
  position: absolute;
  bottom: 7px;
  left: 15px;
  width: 2px;
  height: 21px;
  background: #f4c17f;
  content: "";
  transform: rotate(12deg);
  transform-origin: bottom;
}

.tiny-boat::after {
  position: absolute;
  bottom: 16px;
  left: 17px;
  border-right: 13px solid transparent;
  border-bottom: 9px solid rgba(255, 234, 182, 0.9);
  content: "";
}

.image-spark {
  position: absolute;
  z-index: 3;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 250, 222, 0.88);
  box-shadow: 0 0 0 4px rgba(255, 250, 222, 0.08);
}

.image-spark--one {
  top: 24%;
  right: 25%;
}

.image-spark--two {
  top: 42%;
  right: 13%;
}

.finder-card__caption {
  padding: 14px 2px 13px;
}

.finder-card__caption strong,
.finder-card__caption span {
  display: block;
}

.finder-card__caption strong {
  margin-bottom: 3px;
  font-size: 12px;
  letter-spacing: -0.01em;
}

.finder-card__caption div > span {
  color: var(--muted);
  font-size: 10px;
}

.match-pill {
  padding: 6px 8px;
  border-radius: 99px;
  color: #2e6e68;
  background: #d9f2e7;
  font-size: 9px;
  font-weight: 750;
}

.finder-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}

.strip-thumb {
  height: 39px;
  border-radius: 7px;
}

.strip-thumb--warm { background: linear-gradient(135deg, #f6c381, #e87e75); }
.strip-thumb--cool { background: linear-gradient(135deg, #b6e8e0, #5199a5); }
.strip-thumb--green { background: linear-gradient(135deg, #b6cda4, #547d68); }
.strip-thumb--rose { background: linear-gradient(135deg, #f9d3be, #ba7f89); }
.strip-thumb--night { background: linear-gradient(135deg, #557993, #1d3853); }

.float-note {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
  font-size: 10px;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.float-note--top {
  top: 7%;
  right: 1%;
  transform: rotate(5deg);
}

.float-note--bottom {
  right: 0;
  bottom: 9%;
  color: var(--night);
  background: var(--sun);
  border-color: transparent;
  transform: rotate(4deg);
}

.float-note__icon {
  color: var(--aqua);
  font-size: 15px;
}

.float-note__fish {
  font-size: 20px;
  line-height: 0.7;
}

.fishing-line {
  position: absolute;
  z-index: 1;
  top: 0;
  right: -4%;
  width: 108%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: rgba(103, 218, 221, 0.45);
  stroke-linecap: round;
  stroke-width: 1.3;
}

.fishing-line__hook {
  stroke: var(--sun);
  stroke-width: 2;
}

.signal-bar {
  color: var(--night);
  background: var(--aqua);
}

.signal-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
}

.signal-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 750;
}

.signal-number {
  color: rgba(8, 26, 45, 0.5);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.signal-wave {
  margin-left: auto;
  color: rgba(8, 26, 45, 0.44);
  font-size: 32px;
  line-height: 0;
  transform: rotate(-15deg);
}

.section {
  padding: 132px 0;
}

.section--paper {
  background: var(--paper);
}

.section--mist {
  background: var(--mist);
}

.section--coral {
  background: var(--coral);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.65fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 72px;
}

.section-kicker {
  color: #2c7f82;
}

.section-kicker--light {
  color: var(--aqua);
}

.section-kicker--dark {
  color: var(--night);
}

h2 {
  max-width: 700px;
  margin-bottom: 0;
  font-size: clamp(2.5rem, 4vw, 4.55rem);
  line-height: 0.99;
}

.section-intro {
  max-width: 390px;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.feature-card {
  position: relative;
  min-height: 390px;
  padding: 28px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.feature-card--dark {
  color: var(--white);
  background: var(--night);
}

.feature-card--mint {
  color: var(--ink);
  background: var(--mint);
}

.feature-card--coral {
  color: var(--night);
  background: var(--coral);
}

.feature-card::after {
  position: absolute;
  right: -15%;
  bottom: -24%;
  width: 230px;
  height: 230px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.11;
}

.feature-number {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.feature-card--mint .feature-number,
.feature-card--coral .feature-number {
  color: rgba(18, 37, 59, 0.45);
}

.feature-icon {
  position: absolute;
  top: 25px;
  right: 28px;
  display: grid;
  width: 69px;
  height: 69px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 32px;
}

.feature-icon--radar span {
  position: absolute;
  display: block;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.feature-icon--radar span:nth-child(1) { width: 16px; height: 16px; }
.feature-icon--radar span:nth-child(2) { width: 32px; height: 32px; opacity: 0.55; }
.feature-icon--radar span:nth-child(3) { width: 49px; height: 49px; opacity: 0.28; }

.feature-icon--spark {
  color: var(--night);
}

.feature-icon--hook {
  color: var(--night);
  font-size: 42px;
  transform: rotate(-14deg);
}

.feature-card h3 {
  position: relative;
  z-index: 1;
  max-width: 210px;
  margin-top: 158px;
  margin-bottom: 14px;
  font-size: 25px;
  line-height: 1.03;
}

.feature-card p {
  position: relative;
  z-index: 1;
  max-width: 270px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.6;
}

.feature-card--mint p,
.feature-card--coral p {
  color: rgba(18, 37, 59, 0.67);
}

.feature-arrow {
  position: absolute;
  right: 28px;
  bottom: 27px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 14px;
}

.how-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1fr);
  gap: 15%;
}

.how-intro h2 {
  margin-bottom: 25px;
}

.how-intro > p:not(.section-kicker) {
  max-width: 330px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.underlined-link {
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 12px;
}

.steps-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 20px;
  padding: 0 0 35px;
}

.step-item + .step-item {
  padding-top: 35px;
  border-top: 1px solid rgba(18, 37, 59, 0.13);
}

.step-number {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(18, 37, 59, 0.23);
  border-radius: 50%;
  color: #2c7f82;
  font-size: 11px;
  font-weight: 800;
}

.step-item h3 {
  margin-bottom: 8px;
  font-size: 23px;
  line-height: 1.1;
}

.step-item p {
  max-width: 430px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.privacy-panel {
  overflow: hidden;
  color: var(--white);
  background: var(--night);
}

.privacy-panel__inner {
  position: relative;
  display: grid;
  grid-template-columns: 150px minmax(0, 600px) 1fr;
  align-items: center;
  gap: 56px;
  min-height: 555px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.privacy-panel__inner::before {
  position: absolute;
  top: -25%;
  right: 3%;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(103, 218, 221, 0.23);
  border-radius: 50%;
  content: "";
}

.privacy-badge {
  position: relative;
  z-index: 1;
  display: grid;
  width: 135px;
  height: 135px;
  place-items: center;
  border: 1px solid rgba(103, 218, 221, 0.42);
  border-radius: 50%;
  background: rgba(103, 218, 221, 0.08);
}

.privacy-badge svg {
  width: 83px;
  height: 83px;
  fill: none;
  stroke: var(--aqua);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.privacy-panel__copy {
  position: relative;
  z-index: 1;
}

.privacy-panel__copy h2 {
  max-width: 550px;
  margin-bottom: 22px;
}

.privacy-panel__copy > p:not(.section-kicker) {
  max-width: 570px;
  margin-bottom: 28px;
  color: rgba(255, 253, 248, 0.69);
  font-size: 16px;
  line-height: 1.7;
}

.privacy-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 31px;
}

.privacy-facts span {
  padding: 8px 11px;
  border: 1px solid rgba(103, 218, 221, 0.25);
  border-radius: 99px;
  color: rgba(255, 253, 248, 0.77);
  font-size: 11px;
}

.button--outline-light {
  min-height: 47px;
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.button--outline-light:hover {
  border-color: var(--aqua);
  background: rgba(103, 218, 221, 0.1);
}

.privacy-panel__mark {
  position: relative;
  z-index: 1;
  align-self: end;
  justify-self: end;
  color: rgba(103, 218, 221, 0.5);
  font-size: 150px;
  line-height: 0.6;
  transform: rotate(-20deg);
}

.download-layout {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  align-items: center;
  gap: 13%;
}

.download-layout h2 {
  margin-bottom: 20px;
}

.store-grid {
  display: grid;
  gap: 12px;
}

.store-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 86px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.56);
}

.store-card__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: var(--night);
  font-size: 17px;
}

.store-card__icon--apple {
  font-size: 21px;
}

.store-card__copy {
  display: grid;
  gap: 2px;
}

.store-card__copy strong {
  font-size: 14px;
}

.store-card__copy small {
  color: var(--muted);
  font-size: 11px;
}

.store-card__status {
  margin-left: auto;
  padding: 6px 9px;
  border-radius: 99px;
  color: #7b5e35;
  background: #ffe7b7;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-card {
  display: grid;
  grid-template-columns: 98px minmax(0, 1fr) auto;
  align-items: center;
  gap: 44px;
  padding: 55px 0;
}

.support-card__stamp {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border: 1px solid rgba(8, 26, 45, 0.35);
  border-radius: 50%;
  color: var(--night);
  font-size: 35px;
  transform: rotate(12deg);
}

.support-card h2 {
  margin-bottom: 13px;
  font-size: clamp(2.2rem, 3.8vw, 4rem);
}

.support-card p:not(.section-kicker) {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(8, 26, 45, 0.68);
  font-size: 14px;
  line-height: 1.7;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--night);
  color: var(--night);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.contact-link:hover {
  color: var(--white);
  border-color: var(--white);
}

.site-footer {
  color: rgba(255, 253, 248, 0.68);
  background: var(--night);
}

.site-footer__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 43px;
  padding-bottom: 43px;
}

.site-footer__inner > p {
  margin: 0;
  color: rgba(255, 253, 248, 0.43);
  font-size: 12px;
}

.brand--footer {
  flex-shrink: 0;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 21px;
  margin-left: auto;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 253, 248, 0.35);
  font-size: 10px;
}

/* Privacy policy */
.policy-header {
  color: var(--white);
  background: var(--night);
}

.policy-header .site-nav {
  padding-bottom: 28px;
}

.policy-main {
  padding-top: 105px;
  padding-bottom: 130px;
}

.policy-heading {
  max-width: 750px;
  padding-bottom: 57px;
}

.policy-heading h1 {
  margin-bottom: 18px;
  font-size: clamp(3.3rem, 7vw, 6rem);
  line-height: 0.94;
}

.policy-meta {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.policy-notice {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 80px;
  padding: 20px 22px;
  border: 1px solid rgba(44, 127, 130, 0.22);
  border-radius: var(--radius-sm);
  background: rgba(191, 232, 220, 0.36);
}

.policy-notice__mark {
  color: #2c7f82;
  font-size: 20px;
}

.policy-notice p {
  max-width: 770px;
  margin: 0;
  color: #315d62;
  font-size: 13px;
  line-height: 1.7;
}

.policy-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 670px);
  gap: 12%;
  justify-content: center;
}

.policy-sidebar {
  align-self: start;
  position: sticky;
  top: 24px;
  display: grid;
  gap: 11px;
}

.policy-sidebar p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.policy-sidebar a {
  color: #577080;
  font-size: 12px;
  text-decoration: none;
}

.policy-sidebar a:hover {
  color: #2c7f82;
}

.policy-content section {
  padding-bottom: 46px;
}

.policy-content section + section {
  padding-top: 46px;
  border-top: 1px solid var(--line);
}

.policy-content h2 {
  margin-bottom: 17px;
  font-size: 27px;
  line-height: 1.05;
}

.policy-content p {
  margin-bottom: 16px;
  color: #536a7b;
  font-size: 15px;
  line-height: 1.8;
}

.policy-content p:last-child {
  margin-bottom: 0;
}

.policy-content a {
  color: #247b7e;
  font-weight: 700;
}

.policy-list {
  display: grid;
  gap: 13px;
  margin-top: 24px;
}

.policy-list > div {
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.policy-list p {
  margin: 0;
}

.policy-check {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  color: #2c7f82;
  background: var(--mint);
  font-size: 12px;
  font-weight: 800;
}

.placeholder-copy {
  margin-top: 22px;
  padding: 15px 17px;
  border-left: 3px solid var(--coral);
  background: rgba(255, 146, 113, 0.13);
}

.site-footer--policy {
  margin-top: 0;
}

/* 404 */
.not-found-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 28%, rgba(58, 122, 141, 0.42), transparent 26%),
    var(--night);
}

.not-found-card {
  width: min(100%, 530px);
  padding: 45px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  text-align: center;
}

.not-found-card .brand {
  justify-content: center;
  margin-bottom: 90px;
}

.eyebrow--dark {
  color: var(--aqua);
  background: rgba(103, 218, 221, 0.1);
}

.not-found-card h1 {
  margin-inline: auto;
  margin-bottom: 18px;
  font-size: clamp(3rem, 8vw, 5.4rem);
}

.not-found-card > p:not(.eyebrow) {
  max-width: 330px;
  margin: 0 auto 30px;
  color: rgba(255, 253, 248, 0.64);
}

.button--dark {
  color: var(--night);
  background: var(--aqua);
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 72px;
  }

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

  .hero-art {
    width: min(100%, 570px);
    min-height: 500px;
    margin-inline: auto;
  }

  .split-heading,
  .download-layout {
    gap: 35px;
  }

  .privacy-panel__inner {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .privacy-panel__mark {
    display: none;
  }

  .support-card {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .contact-link {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 36px), var(--max-width));
  }

  .site-nav {
    padding-top: 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    padding: 9px 11px;
  }

  .hero {
    min-height: 0;
    padding-top: 74px;
    padding-bottom: 70px;
  }

  h1 {
    font-size: clamp(3.5rem, 16vw, 5.2rem);
  }

  .hero-lede {
    font-size: 15px;
  }

  .hero-art {
    min-height: 420px;
    transform: scale(0.92);
    transform-origin: center top;
  }

  .finder-card {
    left: 0;
    width: min(100%, 400px);
  }

  .float-note--top {
    right: -5%;
  }

  .float-note--bottom {
    right: -2%;
  }

  .signal-bar__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    min-height: 86px;
  }

  .signal-item {
    display: grid;
    gap: 2px;
    font-size: 10px;
  }

  .signal-wave {
    display: none;
  }

  .section {
    padding: 82px 0;
  }

  .split-heading,
  .feature-grid,
  .how-layout,
  .download-layout,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 28px;
    margin-bottom: 45px;
  }

  .feature-grid {
    gap: 12px;
  }

  .feature-card {
    min-height: 310px;
  }

  .feature-card h3 {
    margin-top: 105px;
  }

  .how-layout {
    gap: 60px;
  }

  .privacy-panel__inner {
    grid-template-columns: 1fr;
    gap: 35px;
    min-height: 0;
    padding-top: 78px;
    padding-bottom: 82px;
  }

  .privacy-badge {
    width: 100px;
    height: 100px;
  }

  .privacy-badge svg {
    width: 63px;
    height: 63px;
  }

  .support-card {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 15px 0;
  }

  .contact-link {
    grid-column: auto;
  }

  .site-footer__inner,
  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .footer-links {
    margin-left: 0;
  }

  .footer-legal {
    gap: 5px;
  }

  .policy-main {
    padding-top: 75px;
    padding-bottom: 85px;
  }

  .policy-notice {
    margin-bottom: 52px;
  }

  .policy-sidebar {
    position: static;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 15px;
    padding-bottom: 35px;
    border-bottom: 1px solid var(--line);
  }

  .policy-sidebar p {
    grid-column: 1 / -1;
    margin-bottom: 3px;
  }

  .policy-content section + section {
    padding-top: 34px;
  }

  .not-found-card {
    padding: 30px 22px;
  }

  .not-found-card .brand {
    margin-bottom: 70px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
