:root {
  color-scheme: light;
  --ink: #17120a;
  --muted: #6f5d24;
  --gold: #ffd52f;
  --gold-deep: #f5a800;
  --cream: #fff8d8;
  --brown: #793b00;
  --line: rgba(121, 59, 0, 0.16);
  --shadow: 0 24px 70px rgba(100, 64, 0, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.86), transparent 24rem),
    linear-gradient(180deg, #ffcf28 0%, #fff7c8 38%, #ffffff 76%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 213, 47, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.22rem;
  font-weight: 900;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  box-shadow: 0 10px 24px rgba(90, 60, 0, 0.16);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  color: #3d2d00;
  font-weight: 800;
}

nav a {
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 76px));
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid rgba(121, 59, 0, 0.12);
  background: #ffc600;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 213, 47, 0.98) 0%, rgba(255, 213, 47, 0.88) 40%, rgba(255, 213, 47, 0.18) 74%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 52%, rgba(0, 0, 0, 0.18) 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(690px, calc(100% - 36px));
  margin: 0 0 clamp(42px, 8vw, 96px) clamp(18px, 6vw, 84px);
}

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

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

h1 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: clamp(3.3rem, 10vw, 8.6rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 28px;
  color: #332600;
  font-size: clamp(1.05rem, 2vw, 1.42rem);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 900;
}

.button-dark {
  background: #111111;
  color: var(--gold);
}

.button-light {
  border: 1px solid rgba(17, 17, 17, 0.18);
  background: rgba(255, 255, 255, 0.84);
  color: #17120a;
}

.intro {
  display: grid;
  width: min(1180px, calc(100% - 36px));
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(22px, 6vw, 90px);
  align-items: end;
  margin: 0 auto;
  padding: clamp(54px, 9vw, 108px) 0 28px;
}

.intro h2,
.section-heading h2,
.download-band h2 {
  margin-bottom: 0;
  font-size: clamp(2.3rem, 5vw, 5.1rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.intro > p,
.download-band p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.18rem;
  font-weight: 700;
}

.feature-grid,
.showcase,
.download-band {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 32px 0 76px;
}

.feature-card {
  display: grid;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 252, 226, 0.96), rgba(255, 255, 255, 0.86));
  box-shadow: var(--shadow);
}

.feature-card-wide {
  grid-column: 1 / -1;
  grid-template-columns: 0.82fr 1fr;
  min-height: 660px;
}

.feature-text {
  align-self: center;
  padding: clamp(28px, 5vw, 58px);
}

.feature-text span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--brown);
  font-size: 0.9rem;
  font-weight: 900;
}

.feature-text h2,
.showcase h3 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.feature-text p,
.showcase p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 700;
}

.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.feature-card:not(.feature-card-wide) img {
  height: 720px;
}

.showcase {
  padding: 14px 0 82px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

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

.showcase article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 42px rgba(100, 64, 0, 0.14);
}

.showcase article img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top center;
}

.showcase article h3 {
  padding: 22px 22px 0;
  font-size: 1.45rem;
  line-height: 1.08;
}

.showcase article p {
  padding: 0 22px 24px;
  font-size: 0.98rem;
}

.download-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.65fr);
  gap: clamp(18px, 6vw, 86px);
  align-items: center;
  margin-bottom: 80px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 255, 255, 0.9), transparent 20rem),
    linear-gradient(135deg, #ffd52f, #fff5ab);
  box-shadow: var(--shadow);
}

.download-band > div {
  padding: clamp(28px, 6vw, 64px);
}

.download-band img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: top center;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px);
  border-top: 1px solid rgba(121, 59, 0, 0.12);
  background: #15120b;
  color: #fff6bd;
}

.download-page {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(34px, 7vw, 84px) 0 80px;
}

.download-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 32px;
  align-items: center;
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 15% 12%, rgba(255, 255, 255, 0.88), transparent 20rem),
    linear-gradient(135deg, #ffd52f, #fff2a8);
  box-shadow: var(--shadow);
}

.download-hero h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 8vw, 6.2rem);
  line-height: 0.92;
}

.download-hero p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  color: #3d2d00;
  font-size: 1.16rem;
  font-weight: 750;
}

.download-hero img {
  width: 190px;
  height: 190px;
  border-radius: 42px;
  box-shadow: 0 22px 46px rgba(95, 61, 0, 0.22);
}

.download-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.download-card,
.download-note {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 42px rgba(100, 64, 0, 0.12);
}

.download-card h2,
.download-note h2 {
  margin-bottom: 12px;
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  line-height: 1;
}

.download-card p,
.download-note p {
  margin-bottom: 24px;
  color: var(--muted);
  font-weight: 700;
}

.download-card small {
  display: block;
  margin-top: 16px;
  color: #786c48;
  overflow-wrap: anywhere;
}

.platform {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--brown);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.download-note {
  margin-top: 20px;
}

.download-note p {
  margin-bottom: 0;
}

.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 246, 189, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-weight: 800;
}

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

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

  .hero {
    min-height: 680px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(255, 213, 47, 0.86) 0%, rgba(255, 213, 47, 0.7) 42%, rgba(255, 213, 47, 0.5) 100%),
      linear-gradient(90deg, rgba(255, 213, 47, 0.92) 0%, rgba(255, 213, 47, 0.28) 100%);
  }

  .hero-copy {
    width: min(620px, calc(100% - 28px));
    margin: 0 auto 32px;
  }

  .intro,
  .feature-card-wide,
  .download-band,
  .download-hero {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .showcase-grid,
  .download-options {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card-wide {
    min-height: auto;
  }

  .feature-card img,
  .feature-card:not(.feature-card-wide) img,
  .showcase article img,
  .download-band img {
    height: auto;
    max-height: none;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px;
  }

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

  .hero {
    min-height: 600px;
  }

  .hero-image {
    object-position: 64% center;
  }

  h1 {
    font-size: 2.78rem;
    line-height: 0.96;
    max-width: 8ch;
  }

  .hero-copy p:not(.eyebrow) {
    max-width: 34ch;
    font-size: 1rem;
    line-height: 1.42;
  }

  .button {
    width: 100%;
  }

  .intro,
  .feature-grid,
  .showcase,
  .download-band,
  .download-page {
    width: min(100% - 24px, 1180px);
  }

  .download-hero img {
    width: 112px;
    height: 112px;
    border-radius: 28px;
  }

  .feature-text {
    padding: 24px;
  }

  .site-footer {
    flex-direction: column;
    padding: 28px 18px;
  }
}
