:root {
  --bg: #fcfbf7;
  --bg-soft: #f3efe7;
  --paper: #ffffff;
  --text: #151515;
  --text-soft: #5a5a58;
  --line: rgba(21, 21, 21, 0.12);
  --line-strong: rgba(21, 21, 21, 0.2);
  --accent: #f4c51e;
  --accent-deep: #f0ab1a;
  --shadow-xl: 0 40px 90px rgba(14, 14, 14, 0.11);
  --shadow-lg: 0 26px 60px rgba(14, 14, 14, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(244, 197, 30, 0.12), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 54%, #f8f5ee 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-shell {
  width: 100%;
}

.site-header,
.hero-inner,
.download-band,
.support-section,
.detail-section,
.final-cta {
  width: min(1240px, calc(100% - 3rem));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 0;
  animation: fade-up 700ms ease both;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.9rem;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.95rem;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.1);
}

.brand-copy {
  font-size: 1.06rem;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.site-nav a {
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 0.7;
  transform: translateY(-1px);
}

.hero {
  min-height: calc(100svh - 4.5rem);
  display: grid;
  align-content: start;
  padding: 0.8rem 0 2.6rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(320px, 440px) minmax(420px, 1fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: center;
  padding: clamp(1.2rem, 4vh, 2.8rem) 0 0.25rem;
}

.hero-copy > * {
  animation: fade-up 800ms ease both;
}

.hero-copy > :nth-child(1) {
  animation-delay: 80ms;
}

.hero-copy > :nth-child(2) {
  animation-delay: 160ms;
}

.hero-copy > :nth-child(3) {
  animation-delay: 240ms;
}

.eyebrow,
.section-kicker,
.download-kicker {
  margin: 0;
  color: #8a867c;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1,
.support-intro h2,
.detail-copy h2,
.final-cta h2,
.support-item h3 {
  font-family: "Outfit", sans-serif;
}

.hero h1 {
  margin: 0.8rem 0 0;
  max-width: 8ch;
  font-size: clamp(3.4rem, 7vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.hero-lede,
.detail-lede,
.support-item p,
.download-note,
.detail-list,
.detail-links,
.site-nav,
.support-intro p {
  color: var(--text-soft);
}

.hero-lede {
  margin: 1.5rem 0 0;
  max-width: 32rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-visual {
  position: relative;
  min-height: 410px;
  animation: fade-up 900ms ease 120ms both;
}

.hero-accent {
  position: absolute;
  right: 6%;
  bottom: 8%;
  width: 48%;
  height: 48%;
  border-radius: 2.8rem;
  background: linear-gradient(180deg, rgba(255, 230, 105, 0.82) 0%, rgba(244, 197, 30, 0.72) 54%, rgba(240, 171, 26, 0.56) 100%);
  transform: rotate(12deg);
  filter: blur(0.2px);
}

.hero-outline {
  position: absolute;
  left: 14%;
  bottom: 11%;
  width: 38%;
  aspect-ratio: 0.74;
  border: 1px solid rgba(21, 21, 21, 0.08);
  transform: rotate(-8deg);
}

.hero-outline::before,
.hero-outline::after {
  content: "";
  position: absolute;
  background: rgba(21, 21, 21, 0.08);
}

.hero-outline::before {
  top: 0;
  bottom: 0;
  left: 38%;
  width: 1px;
}

.hero-outline::after {
  left: 0;
  right: 0;
  top: 46%;
  height: 1px;
}

.screen {
  position: absolute;
  overflow: hidden;
  border-radius: 1.3rem;
  border: 6px solid #151515;
  background: var(--paper);
  box-shadow: var(--shadow-xl);
}

.screen img {
  width: 100%;
  height: auto;
}

.screen-main {
  top: 2%;
  left: 12%;
  width: 58%;
  animation: float-screen 6.4s ease-in-out infinite;
}

.screen-secondary {
  right: 4%;
  bottom: 8%;
  width: 34%;
  border-width: 5px;
  animation: float-screen 7.4s ease-in-out infinite reverse;
}

.download-band {
  padding-top: 0.2rem;
  animation: fade-up 900ms ease 280ms both;
}

.download-band-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.download-rule {
  display: block;
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(21, 21, 21, 0.14), transparent);
}

.download-kicker {
  flex: 0 0 auto;
  color: #6e6b64;
  letter-spacing: 0.14em;
}

.download-actions,
.final-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.4rem;
}

.download-button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 184px;
  min-height: 78px;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(15, 15, 15, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.download-button:hover,
.download-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(15, 15, 15, 0.1);
}

.download-button-primary {
  background: #0d0d0d;
  border-color: #0d0d0d;
  color: #fff;
}

.download-button-dark {
  background: #151515;
  border-color: #151515;
  color: #fff;
}

.download-button-label {
  font-family: "Outfit", sans-serif;
  font-size: 1.24rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.download-button-meta {
  margin-top: 0.16rem;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.7;
}

.download-note {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.94rem;
}

.support-section,
.detail-section,
.final-cta {
  padding: 6.2rem 0;
}

.support-section {
  display: grid;
  grid-template-columns: minmax(260px, 330px) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  border-top: 1px solid rgba(21, 21, 21, 0.08);
}

.support-intro h2,
.detail-copy h2,
.final-cta h2 {
  margin: 0.8rem 0 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

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

.support-item {
  padding-left: 1.5rem;
  border-left: 1px solid rgba(21, 21, 21, 0.12);
}

.support-item h3 {
  margin: 0 0 0.75rem;
  font-size: 1.14rem;
  letter-spacing: -0.03em;
}

.support-item p,
.detail-lede,
.detail-list li {
  margin: 0;
  line-height: 1.75;
}

.detail-section {
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: center;
  border-top: 1px solid rgba(21, 21, 21, 0.08);
}

.detail-lede {
  margin: 1.35rem 0 0;
}

.detail-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  position: relative;
  padding-left: 1.15rem;
}

.detail-list li + li {
  margin-top: 0.8rem;
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #141414;
}

.detail-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 1.8rem;
  font-size: 0.94rem;
  font-weight: 700;
}

.detail-links a {
  padding-bottom: 0.12rem;
  border-bottom: 1px solid rgba(21, 21, 21, 0.2);
}

.detail-media {
  position: relative;
  min-height: 620px;
}

.detail-shot {
  position: absolute;
  overflow: hidden;
  background: #fff;
  border-radius: 1.4rem;
  box-shadow: var(--shadow-lg);
}

.detail-shot-main {
  top: 0;
  left: 0;
  width: 84%;
  border: 1px solid rgba(21, 21, 21, 0.1);
}

.detail-shot-alt {
  right: 0;
  bottom: 3%;
  width: 53%;
  border: 1px solid rgba(21, 21, 21, 0.12);
}

.final-cta {
  border-top: 1px solid rgba(21, 21, 21, 0.08);
  text-align: center;
}

.final-cta h2 {
  max-width: 10ch;
  margin-left: auto;
  margin-right: auto;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-screen {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1120px) {
  .hero-inner,
  .support-section,
  .detail-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    align-items: start;
    padding-top: 3rem;
  }

  .hero h1 {
    max-width: 9ch;
  }

  .hero-visual,
  .detail-media {
    min-height: 540px;
  }

  .support-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

@media (max-width: 760px) {
  .site-header,
  .hero-inner,
  .download-band,
  .support-section,
  .detail-section,
  .final-cta {
    width: min(100% - 1.4rem, 100%);
  }

  .site-header {
    padding-top: 1rem;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    gap: 0.9rem;
    font-size: 0.9rem;
  }

  .hero {
    min-height: auto;
    padding-bottom: 2.2rem;
  }

  .hero-inner {
    padding-top: 2rem;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 16vw, 4.6rem);
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-accent {
    width: 56%;
    height: 58%;
  }

  .screen-main {
    left: 0;
    width: 84%;
  }

  .screen-secondary {
    width: 52%;
  }

  .download-actions,
  .final-actions {
    flex-direction: column;
  }

  .download-button {
    width: 100%;
  }

  .support-section,
  .detail-section,
  .final-cta {
    padding: 4.2rem 0;
  }

  .support-item {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(21, 21, 21, 0.12);
    padding-top: 1.2rem;
  }

  .detail-media {
    min-height: 320px;
  }

  .detail-shot-main {
    width: 100%;
  }

  .detail-shot-alt {
    display: none;
  }
}
