:root {
  --red: #d30000;
  --red-dark: #b00000;
  --red-soft: #fff0f0;
  --ink: #090909;
  --muted: #666a73;
  --line: #eceff3;
  --paper: #ffffff;
  --cream: #fffaf7;
  --green: #58b86b;
  --blue: #426fd9;
  --shadow-soft: 0 24px 70px rgba(27, 31, 40, 0.12);
  --shadow-red: 0 20px 42px rgba(211, 0, 0, 0.13);
  --radius: 24px;
  --max: 1180px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 12%, rgba(211, 0, 0, 0.11), transparent 30rem),
    radial-gradient(circle at 88% 16%, rgba(255, 192, 150, 0.28), transparent 27rem),
    linear-gradient(180deg, #fff 0%, #fff 44%, #fff7f7 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

main {
  flex: 1 0 auto;
}

.shell {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.section-pad {
  padding: 110px 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(236, 239, 243, 0.7);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: clamp(150px, 17vw, 220px);
  height: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
  color: #222;
  font-size: 0.96rem;
  font-weight: 700;
}

.nav-menu a {
  position: relative;
  white-space: nowrap;
}

.nav-menu a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 12px 18px;
  color: #fff;
  background: var(--red);
  border-radius: 999px;
  box-shadow: var(--shadow-red);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: var(--ink);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg::before,
.hero-bg::after {
  position: absolute;
  border-radius: 999px;
  content: "";
  filter: blur(8px);
}

.hero-bg::before {
  top: 18%;
  right: 9%;
  width: 28vw;
  min-width: 260px;
  height: 28vw;
  min-height: 260px;
  background: radial-gradient(circle, rgba(211, 0, 0, 0.16), rgba(211, 0, 0, 0));
}

.hero-bg::after {
  bottom: 1%;
  left: 5%;
  width: 36vw;
  min-width: 280px;
  height: 36vw;
  min-height: 280px;
  background: radial-gradient(circle, rgba(255, 210, 110, 0.26), rgba(255, 210, 110, 0));
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(340px, 1.07fr);
  align-items: center;
  gap: clamp(28px, 6vw, 84px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(3rem, 7vw, 6.35rem);
}

h2 {
  font-size: clamp(2.3rem, 5vw, 5rem);
}

h3 {
  font-size: clamp(2rem, 3.8vw, 4rem);
}

.hero-text {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.65vw, 1.34rem);
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.store-button {
  display: inline-flex;
  min-width: 196px;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  color: #fff;
  text-align: left;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 14px;
  box-shadow: 0 18px 38px rgba(9, 9, 9, 0.14);
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms ease;
}

.store-button:hover,
.store-button:focus-visible {
  background: #2d2d2d;
  box-shadow: 0 22px 46px rgba(9, 9, 9, 0.18);
  transform: translateY(-2px);
}

.store-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  fill: currentColor;
}

.store-button small,
.store-button strong {
  display: block;
  line-height: 1.05;
}

.store-button small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.75rem;
  font-weight: 750;
}

.store-button strong {
  margin-top: 2px;
  font-size: 1.12rem;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: clamp(420px, 48vw, 620px);
  place-items: center;
}

.hero-logo-glow {
  position: absolute;
  width: min(44vw, 560px);
  height: min(44vw, 560px);
  background: radial-gradient(circle, rgba(211, 0, 0, 0.12), rgba(211, 0, 0, 0) 68%);
  border-radius: 999px;
  filter: blur(4px);
}

.hero-big-mascot {
  position: relative;
  z-index: 1;
  width: min(70%, 390px);
  height: auto;
  filter: drop-shadow(0 24px 44px rgba(211, 0, 0, 0.16));
  animation: logoFloat 4s ease-in-out infinite;
}

.quick-points {
  padding: 0 0 76px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(27, 31, 40, 0.06);
}

.quick-item {
  min-height: 150px;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.92);
}

.quick-item strong {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 1.12rem;
}

.quick-item span {
  display: block;
  max-width: 28ch;
  color: var(--muted);
  font-size: 1rem;
}

.feature-showcase {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 245, 245, 0.72)),
    radial-gradient(circle at 82% 28%, rgba(211, 0, 0, 0.08), transparent 28rem);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 56px;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(260px, 0.62fr);
  align-items: center;
  gap: clamp(28px, 6vw, 84px);
  padding: clamp(26px, 5vw, 64px) 0;
  border-top: 1px solid rgba(9, 9, 9, 0.08);
}

.feature-row-reverse {
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 0.88fr);
}

.feature-row-reverse .feature-copy {
  order: 2;
}

.feature-row-reverse .feature-media {
  order: 1;
}

.feature-copy {
  max-width: 690px;
}

.feature-number {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 24px;
  color: #fff;
  background: var(--red);
  border-radius: 16px;
  box-shadow: var(--shadow-red);
  font-weight: 900;
}

.feature-copy p {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.45vw, 1.22rem);
}

.feature-media {
  position: relative;
  justify-self: center;
}

.feature-media::before {
  position: absolute;
  inset: 9% -8% 4%;
  z-index: -1;
  background: radial-gradient(circle, rgba(211, 0, 0, 0.13), transparent 64%);
  content: "";
  filter: blur(2px);
}

.feature-media img {
  width: min(100%, 360px);
  max-height: 640px;
  object-fit: contain;
  border-radius: 34px;
  box-shadow: var(--shadow-soft);
}

.download {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, rgba(211, 0, 0, 0.14), transparent 22rem),
    radial-gradient(circle at 12% 92%, rgba(255, 210, 110, 0.2), transparent 24rem),
    linear-gradient(135deg, #fff 0%, #fff7f7 54%, #fff0f0 100%);
  color: var(--ink);
  border-top: 1px solid rgba(211, 0, 0, 0.08);
  border-bottom: 1px solid rgba(211, 0, 0, 0.08);
}

.download .eyebrow {
  color: var(--red);
}

.download-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
}

.download h2 {
  max-width: 760px;
}

.download p:not(.eyebrow) {
  max-width: 610px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.5vw, 1.22rem);
}

.download-buttons {
  justify-content: flex-end;
  margin-top: 0;
}

.site-footer {
  margin-top: auto;
  padding: 58px 0 28px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.footer-logo {
  width: 180px;
}

.site-footer p {
  max-width: 380px;
  margin: 18px 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 28px;
  font-weight: 800;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--red);
}

.footer-links a {
  overflow-wrap: anywhere;
}

.footer-bottom {
  margin-top: 46px;
  padding-top: 22px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.94rem;
}

.placeholder-main {
  min-height: 58vh;
  padding: 120px 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(211, 0, 0, 0.1), transparent 24rem),
    #fff;
}

.placeholder-main h1 {
  font-size: clamp(3rem, 8vw, 6rem);
}

.legal-main {
  padding: clamp(72px, 9vw, 118px) 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(211, 0, 0, 0.08), transparent 26rem),
    #fff;
}

.legal-document {
  max-width: 900px;
  color: #1d1d1f;
  line-height: 1.75;
}

.legal-document h1,
.legal-document h2,
.legal-document h3 {
  line-height: 1.12;
}

.legal-document h1 {
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.legal-document h2 {
  margin-top: 44px;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.legal-document h3 {
  margin-top: 30px;
  font-size: clamp(1.16rem, 2vw, 1.42rem);
}

.legal-document p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1rem;
  overflow-wrap: anywhere;
}

.legal-document ul {
  margin: 16px 0 0;
  padding-left: 1.35rem;
  color: var(--muted);
}

.legal-document li {
  margin: 8px 0;
  padding-left: 0.2rem;
}

.legal-document strong {
  color: var(--ink);
}

.legal-document a {
  color: var(--red);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.legal-document hr {
  margin: 34px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.contact-panel {
  max-width: 760px;
}

.contact-text {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.24rem);
}

.contact-email {
  display: inline-flex;
  margin-top: 30px;
  padding: 15px 24px;
  color: #fff;
  background: var(--red);
  border-radius: 999px;
  box-shadow: var(--shadow-red);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-email:hover,
.contact-email:focus-visible {
  background: #ec1717;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }

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

@media (max-width: 980px) {
  .section-pad {
    padding: 88px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .feature-row,
  .feature-row-reverse,
  .download-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-text,
  .section-heading,
  .download h2,
  .download p:not(.eyebrow) {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-copy .store-row,
  .download-buttons {
    justify-content: center;
  }

  .hero-visual {
    min-height: clamp(300px, 48vw, 430px);
  }

  .feature-row-reverse .feature-copy,
  .feature-row-reverse .feature-media {
    order: initial;
  }

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

  .feature-copy p {
    margin-right: auto;
    margin-left: auto;
  }

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

@media (max-width: 760px) {
  .shell {
    width: min(100% - 28px, var(--max));
  }

  .nav {
    min-height: 68px;
  }

  .brand img {
    width: 142px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 68px;
    right: 14px;
    left: 14px;
    display: grid;
    gap: 0;
    padding: 10px;
    visibility: hidden;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .nav-menu.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-menu a {
    padding: 14px;
  }

  .nav-menu a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 6px;
    text-align: center;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 3.8rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.35rem);
  }

  h3 {
    font-size: clamp(1.9rem, 9vw, 3rem);
  }

  .hero {
    padding-top: 52px;
  }

  .hero-bg::before {
    right: -32px;
    width: 220px;
    min-width: 0;
    height: 220px;
    min-height: 0;
  }

  .hero-bg::after {
    left: -44px;
    width: 230px;
    min-width: 0;
    height: 230px;
    min-height: 0;
  }

  .hero-grid {
    gap: 22px;
  }

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

  .hero-big-mascot {
    width: min(70vw, 280px);
  }

  .store-row,
  .download-buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .store-button {
    justify-content: center;
    width: 100%;
    min-width: min(100%, 220px);
  }

  .quick-points {
    padding-bottom: 46px;
  }

  .quick-item {
    min-height: auto;
  }

  .feature-row {
    gap: 30px;
    padding: 46px 0;
  }

  .feature-number {
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    border-radius: 14px;
  }

  .feature-media img {
    width: min(92vw, 330px);
    border-radius: 26px;
  }

  .footer-grid {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .section-pad {
    padding: 70px 0;
  }

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

  .footer-links {
    display: grid;
    gap: 14px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
