@font-face {
  font-family: "Alegreya Sans";
  src: url("/assets/fonts/alegreya_sans/AlegreyaSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Alegreya Sans";
  src: url("/assets/fonts/alegreya_sans/AlegreyaSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Alegreya Sans";
  src: url("/assets/fonts/alegreya_sans/AlegreyaSans-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Literata";
  src: url("/assets/fonts/literata/Literata-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

:root {
  --paper: #f7f3ea;
  --paper-light: #fbf7ee;
  --paper-deep: #e6ddce;
  --ink: #20251f;
  --muted: #686d66;
  --line: #cfd6cc;
  --leaf: #173f2d;
  --leaf-soft: #cfe1d3;
  --sage: #6f8fa5;
  --sun: #c8923f;
  --white-wash: rgba(255, 255, 255, 0.52);
  --shadow: 0 24px 70px rgba(23, 63, 45, 0.16);
  --radius: 6px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  font-family: "Alegreya Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.45;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(247, 243, 234, 0) 36%),
    radial-gradient(circle at 100% 0%, rgba(23, 63, 45, 0.05), transparent 35%),
    var(--paper);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(32, 37, 31, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 37, 31, 0.025) 1px, transparent 1px);
  background-size: 42px 42px, 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: 100%;
  margin: 0;
  padding: 12px max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(32, 37, 31, 0.08);
  background:
    linear-gradient(180deg, rgba(251, 247, 238, 0.94), rgba(247, 243, 234, 0.82)),
    radial-gradient(circle at 8% 0%, rgba(207, 225, 211, 0.28), transparent 34%);
  box-shadow: 0 12px 34px rgba(23, 63, 45, 0.055);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand {
  padding: 8px 12px 8px 8px;
  border: 1px solid rgba(23, 63, 45, 0.09);
  border-radius: 18px;
  color: var(--leaf);
  background: rgba(255, 255, 255, 0.32);
  font-family: "Alegreya Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  box-shadow: 0 12px 28px rgba(23, 63, 45, 0.08);
  text-decoration: none;
}

.brand__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(23, 63, 45, 0.14);
}

.nav-links {
  display: flex;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(32, 37, 31, 0.08);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
  font-size: 16px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 8px 15px;
  border-radius: 999px;
  text-decoration: none;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.nav-links a:first-child {
  color: var(--leaf);
  background: rgba(207, 225, 211, 0.62);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--leaf);
  background: rgba(207, 225, 211, 0.48);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: clamp(40px, 8vw, 104px);
  align-items: start;
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 78px);
  margin: 0 auto;
  padding: clamp(42px, 7vw, 96px) 0 76px;
}

.hero::before {
  position: absolute;
  bottom: 22px;
  left: -78px;
  width: 190px;
  height: 320px;
  content: "";
  opacity: 0.34;
  background:
    radial-gradient(ellipse at 45% 78%, rgba(23, 63, 45, 0.16) 0 6px, transparent 7px),
    linear-gradient(115deg, transparent 48%, rgba(23, 63, 45, 0.44) 49% 51%, transparent 52%),
    linear-gradient(155deg, transparent 54%, rgba(23, 63, 45, 0.3) 55% 56%, transparent 57%);
  border-radius: 50%;
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  color: var(--leaf);
  font-family: "Literata", Georgia, serif;
  font-size: clamp(58px, 8vw, 98px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 520px;
  margin: 34px 0 0;
  color: #333932;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.35;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border: 1.5px solid var(--leaf);
  border-radius: var(--radius);
  font-size: 19px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

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

.button--primary {
  color: var(--paper-light);
  background: var(--leaf);
  box-shadow: 0 14px 28px rgba(23, 63, 45, 0.19);
}

.button--secondary {
  color: var(--leaf);
  background: rgba(255, 255, 255, 0.24);
}

.button__icon {
  margin-right: 10px;
  font-size: 19px;
  line-height: 1;
}

.button--secondary .button__icon {
  margin-right: 0;
  margin-left: 10px;
}

.app-store-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  border-radius: var(--radius);
  text-decoration: none;
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.app-store-link:hover,
.app-store-link:focus-visible {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.app-store-link:focus-visible {
  outline: 3px solid rgba(23, 63, 45, 0.42);
  outline-offset: 4px;
}

.app-store-link--hero {
  min-height: 58px;
}

.review-status {
  display: grid;
  gap: 14px;
  margin-top: 34px;
  color: #252b25;
}

.review-status__row {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 20px;
}

.store-badge {
  display: block;
  flex: 0 0 auto;
  height: auto;
}

.store-badge--apple {
  width: 150px;
}

.store-badge--google {
  width: 130px;
}

.badge-status {
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
}

.hero__device {
  position: relative;
  align-self: center;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 680px;
}

.orbit {
  position: absolute;
  border: 1.25px solid rgba(23, 63, 45, 0.28);
  border-left-color: transparent;
  border-radius: 50%;
}

.orbit--one {
  width: 520px;
  height: 520px;
  transform: translate(38px, 4px) rotate(-18deg);
}

.orbit--two {
  width: 440px;
  height: 440px;
  transform: translate(36px, 8px) rotate(12deg);
}

.phone {
  position: relative;
  z-index: 2;
  width: min(360px, 100%);
  border: 10px solid #0b0c0b;
  border-radius: 44px;
  overflow: hidden;
  background: var(--paper-light);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.34);
}

.phone--screenshot {
  background: #f7f3ea;
}

.phone__screenshot {
  display: block;
  width: 100%;
  height: auto;
}

.phone__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  padding: 14px 28px 0;
  font-size: 14px;
  font-weight: 800;
}

.phone__camera {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 112px;
  height: 28px;
  border-radius: 999px;
  background: #020202;
  transform: translateX(-50%);
}

.phone__content {
  padding: 20px 30px 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.6), transparent 45%),
    radial-gradient(circle at 0 80%, rgba(23, 63, 45, 0.055), transparent 36%),
    var(--paper-light);
}

.phone__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone__bar strong {
  color: var(--leaf);
  font-family: "Literata", serif;
  font-size: 34px;
  font-weight: 400;
}

.location {
  margin: 18px 0 10px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.weather {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 12px 0 20px;
}

.weather__icon {
  position: relative;
  width: 58px;
  height: 42px;
}

.weather__icon::before,
.weather__icon::after {
  position: absolute;
  content: "";
}

.weather__icon::before {
  top: -6px;
  left: 5px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f4c544;
}

.weather__icon::after {
  right: 2px;
  bottom: 0;
  width: 48px;
  height: 24px;
  border: 4px solid #283028;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom: 0;
  background: var(--paper-light);
}

.weather__temp {
  margin: 0;
  color: var(--leaf);
  font-family: "Literata", serif;
  font-size: 74px;
  line-height: 0.9;
}

.weather p {
  margin: 0;
  text-align: center;
}

.mini-forecast {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 8px 0 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

blockquote {
  margin: 0;
  padding: 28px 0 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: "Literata", Georgia, serif;
  font-size: 20px;
  line-height: 1.35;
  text-align: center;
}

.goal-ring {
  position: relative;
  display: grid;
  place-items: center;
  width: 168px;
  height: 168px;
  margin: 30px auto 20px;
}

.goal-ring svg,
.goal-ring > div {
  grid-area: 1 / 1;
}

.goal-ring svg {
  width: 168px;
  height: 168px;
  transform: rotate(-90deg);
}

.goal-ring circle {
  fill: none;
  stroke-width: 9;
}

.goal-ring__track {
  stroke: var(--paper-deep);
}

.goal-ring__value {
  stroke: var(--leaf);
  stroke-linecap: round;
  stroke-dasharray: 314;
  stroke-dashoffset: 112;
}

.goal-ring div {
  display: grid;
  gap: 2px;
  text-align: center;
}

.goal-ring span,
.goal-ring small {
  color: var(--muted);
  font-size: 13px;
}

.goal-ring strong {
  color: var(--leaf);
  font-family: "Literata", serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}

.phone-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  margin: 26px -16px -4px;
  padding-top: 18px;
  border-top: 1px solid rgba(207, 214, 204, 0.7);
  color: #344239;
  font-size: 12px;
  text-align: center;
}

.name-story {
  display: grid;
  grid-template-columns: 260px minmax(0, 760px);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 68px 0 72px;
  border-top: 1px solid rgba(32, 37, 31, 0.1);
}

.name-story__mark {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 22px;
}

.name-story__mark::before {
  position: absolute;
  top: -28px;
  left: 50%;
  z-index: -1;
  width: 238px;
  height: 238px;
  border: 1px solid rgba(23, 63, 45, 0.25);
  border-right-color: transparent;
  border-radius: 50%;
  content: "";
  transform: translateX(-50%) rotate(-18deg);
}

.name-story__mark img {
  width: 112px;
  height: 112px;
  border-radius: 25px;
  box-shadow: 0 22px 48px rgba(23, 63, 45, 0.16);
}

.name-story__word {
  display: flex;
  gap: 8px;
  color: var(--leaf);
  font-family: "Literata", Georgia, serif;
  font-size: 44px;
  line-height: 1;
}

.name-story__word span:nth-child(2) {
  color: var(--sun);
}

.name-story__copy h2 {
  margin: 0;
  color: var(--leaf);
  font-family: "Literata", Georgia, serif;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 400;
  line-height: 1.06;
}

.name-story__copy p {
  max-width: 720px;
  margin: 22px 0 0;
  color: #3a4139;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.36;
}

.origin-word {
  white-space: nowrap;
}

.origin-highlight {
  color: var(--leaf);
  font-weight: 800;
}

.feature-rail {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(18px, 3vw, 36px);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 60px 0 72px;
  border-top: 1px solid rgba(32, 37, 31, 0.1);
}

.feature {
  min-width: 0;
  text-align: center;
}

.feature__icon {
  display: inline-grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin-bottom: 18px;
  color: var(--leaf);
  border-radius: 50%;
  background: rgba(207, 225, 211, 0.54);
  font-size: 34px;
  line-height: 1;
}

.feature h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
}

.feature p {
  max-width: 150px;
  margin: 10px auto 0;
  color: #4d534c;
  font-size: 17px;
  line-height: 1.35;
}

.privacy-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  min-height: 520px;
  border-top: 1px solid rgba(32, 37, 31, 0.12);
  border-bottom: 1px solid rgba(32, 37, 31, 0.12);
  background: rgba(255, 255, 255, 0.24);
}

.privacy-band > div:first-child {
  width: min(590px, calc(100% - 40px));
  margin-left: auto;
  padding: 110px 80px 90px 0;
}

.privacy-band h2,
.availability h2 {
  margin: 0;
  font-family: "Literata", Georgia, serif;
  font-size: clamp(44px, 5vw, 66px);
  font-weight: 400;
  line-height: 1.08;
}

.privacy-band p,
.availability p {
  max-width: 470px;
  margin: 24px 0 0;
  color: #3e443d;
  font-size: 20px;
}

.quiet-list {
  display: grid;
  gap: 13px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.quiet-list li {
  position: relative;
  padding-left: 34px;
  color: #263026;
  font-size: 20px;
}

.quiet-list li::before {
  position: absolute;
  left: 0;
  color: var(--leaf);
  content: "\2301";
}

.privacy-illustration {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-left: 1px solid rgba(32, 37, 31, 0.12);
  background:
    radial-gradient(circle at 70% 50%, rgba(207, 225, 211, 0.65), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), transparent);
}

.privacy-illustration::before,
.privacy-illustration::after {
  position: absolute;
  inset: auto;
  border: 1.5px solid rgba(23, 63, 45, 0.45);
  border-radius: 50%;
  content: "";
}

.privacy-illustration::before {
  top: 88px;
  left: 50%;
  width: 320px;
  height: 320px;
  transform: translateX(-50%);
}

.privacy-illustration::after {
  top: 124px;
  left: 50%;
  width: 250px;
  height: 250px;
  border-left-color: transparent;
  transform: translateX(-50%) rotate(-16deg);
}

.line-phone {
  position: absolute;
  top: 164px;
  left: 50%;
  z-index: 1;
  width: 126px;
  height: 220px;
  border: 4px solid var(--leaf);
  border-radius: 24px;
  transform: translateX(-50%);
}

.line-phone::before {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 44px;
  height: 5px;
  border-radius: 999px;
  background: var(--leaf);
  content: "";
  transform: translateX(-50%);
}

.leaf {
  position: absolute;
  z-index: 2;
  width: 30px;
  height: 96px;
  border-radius: 100% 0;
  background: rgba(23, 63, 45, 0.36);
}

.leaf--one {
  top: 256px;
  left: calc(50% - 104px);
  transform: rotate(-32deg);
}

.leaf--two {
  top: 300px;
  left: calc(50% - 66px);
  transform: rotate(26deg);
}

.privacy-mark {
  position: absolute;
  top: 294px;
  left: calc(50% + 118px);
  z-index: 3;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  color: var(--leaf);
  border: 1.5px solid rgba(23, 63, 45, 0.42);
  border-radius: 50%;
  background: rgba(247, 243, 234, 0.9);
  font-size: 38px;
}

.availability {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 430px);
  gap: 56px;
  align-items: center;
  padding: 78px max(40px, calc((100vw - 1180px) / 2)) 84px;
  color: var(--paper-light);
  background:
    radial-gradient(circle at 0 100%, rgba(207, 225, 211, 0.16), transparent 28%),
    linear-gradient(135deg, #173f2d, #0f3022);
}

.availability h2,
.availability p {
  color: inherit;
}

.availability__actions {
  display: grid;
  gap: 16px;
}

.app-store-link--availability {
  justify-self: center;
}

.store-button,
.notify-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  gap: 14px;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 20px;
  text-decoration: none;
}

.store-button {
  flex-direction: column;
  min-height: 94px;
  gap: 8px;
  color: rgba(247, 243, 234, 0.82);
  border: 1px solid rgba(247, 243, 234, 0.34);
  background: rgba(255, 255, 255, 0.13);
  cursor: not-allowed;
}

.store-button .badge-status {
  color: rgba(247, 243, 234, 0.84);
  font-size: 15px;
}

.notify-link {
  color: var(--paper-light);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 50px 0 58px;
}

.footer-brand strong {
  display: block;
  color: var(--leaf);
  font-family: "Literata", Georgia, serif;
  font-size: 32px;
  font-weight: 400;
}

.footer-brand span {
  color: var(--muted);
  font-size: 16px;
}

.site-footer nav {
  display: flex;
  gap: clamp(24px, 5vw, 70px);
}

.site-footer a {
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

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

  .nav-links {
    gap: 4px;
    font-size: 16px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 54px;
  }

  .hero__device {
    min-height: 590px;
  }

  .phone {
    width: min(350px, calc(100vw - 54px));
  }

  .feature-rail {
    grid-template-columns: repeat(3, 1fr);
  }

  .name-story {
    grid-template-columns: 1fr;
    justify-items: start;
    width: min(760px, calc(100% - 40px));
  }

  .name-story__mark {
    grid-template-columns: auto 1fr;
    justify-items: start;
    align-items: center;
  }

  .name-story__mark::before {
    left: 56px;
    width: 180px;
    height: 180px;
  }

  .privacy-band {
    grid-template-columns: 1fr;
  }

  .privacy-band > div:first-child {
    width: min(760px, calc(100% - 40px));
    margin: 0 auto;
    padding: 74px 0 64px;
  }

  .privacy-illustration {
    min-height: 430px;
    border-top: 1px solid rgba(32, 37, 31, 0.12);
    border-left: 0;
  }

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

@media (max-width: 700px) {
  body {
    font-size: 17px;
  }

  .site-header {
    position: relative;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 12px 14px;
  }

  .brand {
    align-self: flex-start;
    font-size: 28px;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    gap: 4px;
    overflow-x: auto;
    padding: 5px;
    font-size: 13px;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    padding: 7px 7px;
  }

  .hero {
    width: min(100% - 28px, 1180px);
    padding-top: 34px;
    padding-bottom: 52px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 66px);
  }

  .hero__lead {
    margin-top: 24px;
    font-size: 22px;
  }

  .button {
    width: 100%;
  }

  .review-status__row {
    font-size: 18px;
  }

  .hero__device {
    min-height: 560px;
  }

  .orbit--one {
    width: 360px;
    height: 360px;
  }

  .orbit--two {
    width: 300px;
    height: 300px;
  }

  .phone {
    border-width: 8px;
    border-radius: 38px;
  }

  .phone__content {
    padding: 18px 22px 22px;
  }

  .phone__bar strong {
    font-size: 30px;
  }

  .weather__temp {
    font-size: 62px;
  }

  .mini-forecast {
    font-size: 12px;
  }

  .feature-rail {
    grid-template-columns: repeat(2, 1fr);
    width: min(100% - 28px, 1180px);
    padding: 42px 0 56px;
  }

  .name-story {
    width: min(100% - 28px, 760px);
    padding: 52px 0 56px;
  }

  .name-story__mark img {
    width: 82px;
    height: 82px;
    border-radius: 19px;
  }

  .name-story__word {
    font-size: 36px;
  }

  .name-story__copy p {
    font-size: 22px;
  }

  .feature p {
    font-size: 16px;
  }

  .privacy-band h2,
  .availability h2 {
    font-size: 42px;
  }

  .availability {
    padding: 62px 20px 66px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    width: min(100% - 28px, 1180px);
    padding: 40px 0 46px;
  }

  .site-footer nav {
    width: 100%;
    justify-content: space-between;
    gap: 18px;
  }
}

@media (max-width: 430px) {
  .nav-links {
    font-size: 13px;
  }

  .hero h1 {
    font-size: 46px;
  }

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

  .feature {
    display: grid;
    grid-template-columns: 64px 1fr;
    column-gap: 16px;
    align-items: center;
    text-align: left;
  }

  .feature__icon {
    grid-row: span 2;
    width: 58px;
    height: 58px;
    margin: 0;
    font-size: 28px;
  }

  .feature p {
    max-width: none;
    margin: 4px 0 0;
  }
}
