:root {
  color-scheme: light;
  --ink: #282724;
  --muted: #78756e;
  --orange: #e46e2b;
  --paper: #fff;
  --header: rgba(24, 23, 20, .94);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }
a { color: var(--orange); }

.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;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 16px;
  color: #111;
  background: #fff;
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 12px clamp(20px, 5vw, 76px);
  color: #fff;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .58), transparent);
  transition: background .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  background: var(--header);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .1);
}

.brand {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .02em;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
}

.site-nav {
  display: flex;
  gap: clamp(16px, 2.2vw, 34px);
  align-items: center;
}

.site-nav a {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a:focus-visible { color: #ffd7c0; }

.nav-download {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, .7);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  color: #fff;
  background: transparent;
  border: 0;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transform-origin: center;
  transition: transform .2s ease, opacity .2s ease;
}

.site-header.menu-open .menu-toggle > span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .menu-toggle > span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle > span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.banner {
  position: relative;
  display: grid;
  min-height: clamp(360px, 58vw, 650px);
  place-items: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background-image: var(--banner-image);
  background-position: var(--banner-position, center);
  background-size: cover;
}

.hero { min-height: 100svh; }

.banner-shade {
  position: absolute;
  inset: 0;
  background: rgba(15, 14, 12, .38);
}

.hero .banner-shade {
  background: linear-gradient(rgba(10, 10, 9, .28), rgba(10, 10, 9, .42));
}

.banner-copy {
  position: relative;
  z-index: 1;
  max-width: 940px;
  padding: 90px 24px 50px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .45);
}

.banner-copy h1,
.banner-copy h2 {
  margin: 0;
  font-size: clamp(38px, 6vw, 76px);
  font-weight: 300;
  letter-spacing: -.025em;
  line-height: 1.08;
}

.banner-copy h2 { font-size: clamp(34px, 5vw, 65px); }

.eyebrow {
  margin: 0 0 8px;
  font-size: clamp(19px, 2vw, 27px);
  letter-spacing: .08em;
}

.app-store-link {
  display: inline-block;
  margin-top: 34px;
}

.app-store-link img {
  display: block;
  width: 162px;
  height: auto;
}

.content-section {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(70px, 10vw, 135px) 0;
}

.content-section h2 {
  margin: 0 0 36px;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.24;
}

.content-section h3 {
  margin: 36px 0 8px;
  font-size: 18px;
  letter-spacing: .01em;
}

.content-section p { color: #5f5c56; }

.feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
  gap: clamp(45px, 8vw, 110px);
  align-items: center;
}

.feature-copy {
  max-width: 760px;
  text-align: center;
}

.phone {
  position: relative;
  width: min(255px, 100%);
  margin: 0 auto;
  padding: 14px;
  border: 5px solid #d8d8d8;
  border-radius: 36px;
  background: #111;
  box-shadow: 0 30px 55px rgba(0, 0, 0, .18);
}

.phone::before {
  content: "";
  display: block;
  width: 50px;
  height: 5px;
  margin: -4px auto 9px;
  border-radius: 5px;
  background: #555;
}

.phone img {
  display: block;
  width: 100%;
  border-radius: 4px 4px 19px 19px;
}

.weather-details {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: clamp(55px, 9vw, 120px);
  align-items: start;
}

.gallery { position: sticky; top: 105px; }

.gallery-stage {
  position: relative;
  width: min(310px, 100%);
  margin: 0 auto;
  padding: 16px;
  border-radius: 34px;
  background: #171717;
  box-shadow: 0 28px 55px rgba(0, 0, 0, .2);
}

.gallery-stage > img {
  display: block;
  width: 100%;
  border-radius: 20px;
}

.gallery-button {
  position: absolute;
  top: 50%;
  width: 42px;
  height: 54px;
  color: #fff;
  font-size: 34px;
  line-height: 1;
  background: rgba(0, 0, 0, .45);
  border: 0;
  transform: translateY(-50%);
  cursor: pointer;
}

.gallery-button:hover,
.gallery-button:focus-visible { background: var(--orange); }
.gallery-button.previous { left: 16px; }
.gallery-button.next { right: 16px; }

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 7px;
  margin-top: 16px;
}

.gallery-thumbs button {
  padding: 0;
  overflow: hidden;
  background: #eee;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  opacity: .58;
}

.gallery-thumbs button[aria-current="true"] {
  border-color: var(--orange);
  opacity: 1;
}

.gallery-thumbs img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top;
}

.details-copy { text-align: center; }

.support-copy {
  max-width: 850px;
  text-align: center;
}

.press-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  align-items: center;
  margin: 0 0 70px;
}

.press-logos img {
  width: 100%;
  height: 55px;
  object-fit: contain;
  filter: grayscale(1);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 60px;
}

blockquote {
  margin: 0;
  padding: 26px 0 30px;
  border-top: 1px solid #dedbd5;
}

blockquote p {
  margin: 0 0 13px;
  color: #363430 !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-style: italic;
  line-height: 1.55;
}

blockquote cite {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.review-heading {
  margin-top: 105px !important;
  text-align: center;
}

.site-footer {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 38px 22px;
  background: #1b1a18;
}

.site-footer a {
  color: #ddd;
  font-size: 12px;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}

.legal-page {
  color: #3d3b37;
  background: #f7f5f1;
}

.legal-page .site-header { background: var(--header); }

.legal-main {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 140px 0 100px;
}

.legal-card {
  padding: clamp(28px, 6vw, 75px);
  background: #fff;
  box-shadow: 0 18px 50px rgba(31, 28, 24, .08);
}

.legal-card h1 {
  margin: 0 0 8px;
  font-size: clamp(35px, 6vw, 58px);
  font-weight: 300;
  line-height: 1.1;
}

.legal-card h2 {
  margin: 42px 0 8px;
  font-size: 21px;
}

.legal-card .updated {
  margin: 0 0 45px;
  color: var(--muted);
}

.legal-card li { margin-bottom: 12px; }

.privacy-promise {
  margin: 0 0 44px;
  padding: clamp(24px, 4vw, 38px);
  border-left: 4px solid var(--orange);
  background: #fff7f1;
}

.privacy-promise h2 {
  margin-top: 0;
}

.privacy-promise p {
  margin-bottom: 0;
  font-size: 19px;
}

@media (max-width: 900px) {
  .menu-toggle { display: block; }

  .site-nav {
    position: absolute;
    inset: 76px 0 auto;
    display: none;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding: 8px 22px 24px;
    background: var(--header);
  }

  .site-header.menu-open .site-nav { display: flex; }

  .site-nav a {
    padding: 14px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .nav-download { margin-top: 10px; }

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

  .feature-copy { margin: 0 auto; }
  .feature .phone { grid-row: 1; }
  .gallery { position: static; }
  .details-copy { max-width: 650px; margin: 0 auto; }
}

@media (max-width: 650px) {
  body { font-size: 16px; }
  .brand span { display: none; }
  .banner { min-height: 430px; }
  .hero { min-height: 100svh; }
  .content-section { width: min(100% - 32px, 1180px); }
  .press-logos { grid-template-columns: repeat(2, 1fr); }
  .quote-grid { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
