:root {
  --ink: #0f172a;
  --muted: #526173;
  --paper: #ffffff;
  --cloud: #f6f8fb;
  --line: #d8e0ea;
  --navy: #2e3944;
  --orange: #e65616;
  --orange-dark: #be3e0b;
  --blue: #1179a9;
  --green: #1d7a57;
  --shadow: 0 18px 48px rgba(15, 23, 42, 0.16);
  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;
  color: var(--ink);
  background: var(--cloud);
}

a {
  color: inherit;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--orange);
}

.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 84px clamp(22px, 6vw, 88px) 120px;
  background: var(--navy);
  color: #ffffff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(46, 57, 68, 0.96), rgba(46, 57, 68, 0.82) 48%, rgba(46, 57, 68, 0.42)),
    url("assets/daily-hoots-icon.png") right 8vw center / min(48vw, 520px) no-repeat,
    #2e3944;
}

.hero-content {
  position: relative;
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffb17a;
}

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

h1 {
  margin-bottom: 16px;
  font-size: clamp(56px, 9vw, 118px);
  line-height: 0.92;
  font-weight: 950;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 30px;
  color: #edf3f8;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.45;
}

.hero-actions,
.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  padding: 0 20px;
  font-weight: 900;
  text-decoration: none;
}

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

.button.primary:hover {
  background: var(--orange-dark);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: #ffffff;
}

.video-band {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  gap: 28px;
  align-items: center;
  max-width: 1120px;
  margin: -70px auto 0;
  padding: 0 clamp(20px, 4vw, 56px) 76px;
}

.protected-media {
  user-select: none;
  -webkit-user-drag: none;
}

.video-copy,
.video-frame {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.video-copy {
  padding: 30px;
}

.video-copy h2,
.screenshot-heading h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
}

.video-copy p,
.screenshot-card figcaption {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.video-frame {
  overflow: hidden;
  background: #0d1722;
}

.video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0d1722;
}

.intro-band {
  position: relative;
  z-index: 2;
  padding: 0 clamp(20px, 4vw, 56px) 76px;
}

.screenshot-heading {
  max-width: 1120px;
  margin: 0 auto 24px;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.screenshot-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
}

.screenshot-card.large {
  grid-column: span 1;
}

.screenshot-card img {
  display: block;
  width: 100%;
  height: clamp(480px, 52vw, 620px);
  padding: 10px;
  background: #f8fafc;
  object-fit: contain;
  object-position: center;
}

.screenshot-card.large img {
  height: clamp(480px, 52vw, 620px);
}

.screenshot-card figcaption {
  margin: 0;
  padding: 14px 16px 18px;
  font-weight: 800;
}

.store-panel span {
  display: block;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.store-panel strong {
  display: block;
  margin-top: 6px;
  font-size: 24px;
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 76px clamp(20px, 4vw, 56px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 32px;
}

.section h2,
.trust-band h2,
.download h2,
.page-hero h1 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

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

.feature-grid article,
.support-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 22px;
}

.feature-icon {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 950;
}

.feature-grid h3,
.support-grid h2 {
  margin-bottom: 12px;
  font-size: 22px;
}

.feature-grid p,
.trust-list p,
.download p,
.policy-content p,
.policy-content li,
.support-grid p,
.page-hero p,
.store-panel small {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.trust-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: start;
  margin: 0 auto;
  padding: 76px clamp(20px, 6vw, 88px);
  background: #ffffff;
}

.trust-list {
  display: grid;
  gap: 12px;
}

.trust-list p {
  margin: 0;
  border-left: 4px solid var(--green);
  background: var(--cloud);
  border-radius: 8px;
  padding: 16px 18px;
  font-weight: 800;
}

.download {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: center;
}

.store-panel {
  border-radius: 8px;
  background: var(--navy);
  color: #ffffff;
  padding: 28px;
}

.store-panel strong {
  color: #ffffff;
}

.store-panel small {
  display: block;
  margin-top: 14px;
  color: #dce6ef;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 4vw, 56px);
  color: #dce6ef;
  background: var(--navy);
}

.site-footer p {
  margin: 0;
  font-weight: 900;
}

.site-footer a {
  color: #dce6ef;
  font-weight: 800;
  text-decoration: none;
}

.policy-page {
  background: #ffffff;
}

.page-hero {
  max-width: 920px;
  margin: 0 auto;
  padding: 76px clamp(20px, 4vw, 56px) 28px;
}

.page-hero p {
  max-width: 720px;
}

.policy-content,
.support-grid {
  max-width: 920px;
  margin: 0 auto;
  padding: 28px clamp(20px, 4vw, 56px) 86px;
}

.policy-content h2 {
  margin: 34px 0 10px;
  font-size: 26px;
}

.policy-content ul {
  padding-left: 24px;
}

.policy-content a,
.support-grid a {
  color: var(--orange-dark);
  font-weight: 900;
}

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

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

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: 76vh;
    padding-top: 64px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(46, 57, 68, 0.95), rgba(46, 57, 68, 0.72)),
      url("assets/daily-hoots-icon.png") center bottom 24px / min(78vw, 360px) no-repeat,
      #2e3944;
  }

  .video-band,
  .screenshot-grid,
  .feature-grid,
  .trust-band,
  .download,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .video-band {
    margin-top: -46px;
    padding-bottom: 56px;
  }

  .intro-band {
    padding-bottom: 56px;
  }

  .screenshot-card.large {
    grid-column: span 1;
  }

  .screenshot-card img,
  .screenshot-card.large img {
    height: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
    gap: 10px;
    padding: 12px 16px;
  }

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

  nav {
    gap: 16px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    align-items: flex-start;
    padding: 52px 18px 98px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(46, 57, 68, 0.95), rgba(46, 57, 68, 0.82)),
      url("assets/daily-hoots-icon.png") right 18px bottom 18px / min(54vw, 220px) no-repeat,
      #2e3944;
  }

  h1 {
    font-size: clamp(46px, 16vw, 68px);
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .video-band {
    gap: 16px;
    margin-top: -54px;
    padding: 0 14px 44px;
  }

  .video-copy {
    padding: 22px;
  }

  .video-copy h2,
  .screenshot-heading h2 {
    font-size: 30px;
  }

  .video-frame {
    width: min(100%, 330px);
    margin: 0 auto;
  }

  .video-frame video {
    aspect-ratio: 9 / 16;
    object-fit: contain;
  }

  .intro-band {
    padding: 0 14px 48px;
  }

  .screenshot-heading {
    margin-bottom: 18px;
  }

  .screenshot-grid {
    display: flex;
    gap: 14px;
    margin-right: -14px;
    margin-left: -14px;
    overflow-x: auto;
    padding: 0 14px 12px;
    scroll-snap-type: x mandatory;
  }

  .screenshot-card,
  .screenshot-card.large {
    flex: 0 0 min(82vw, 320px);
    scroll-snap-align: start;
  }

  .screenshot-card img,
  .screenshot-card.large img {
    height: clamp(430px, 124vw, 560px);
  }

  .section,
  .trust-band {
    padding: 52px 18px;
  }

  .section h2,
  .trust-band h2,
  .download h2,
  .page-hero h1 {
    font-size: clamp(30px, 11vw, 42px);
  }

  .feature-grid article,
  .support-grid article,
  .store-panel {
    padding: 20px;
  }

  .download {
    gap: 18px;
  }

  .site-footer {
    flex-direction: column;
  }
}
