@font-face { font-family: "Fredoka"; src: url("/assets/fonts/Fredoka-Medium.ttf") format("truetype"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Fredoka"; src: url("/assets/fonts/Fredoka-SemiBold.ttf") format("truetype"); font-weight: 600; font-display: swap; }
@font-face { font-family: "Fredoka"; src: url("/assets/fonts/Fredoka-Bold.ttf") format("truetype"); font-weight: 700; font-display: swap; }
@font-face { font-family: "Jakarta"; src: url("/assets/fonts/PlusJakartaSans-Regular.ttf") format("truetype"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Jakarta"; src: url("/assets/fonts/PlusJakartaSans-Medium.ttf") format("truetype"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Jakarta"; src: url("/assets/fonts/PlusJakartaSans-Bold.ttf") format("truetype"); font-weight: 700; font-display: swap; }

:root {
  color-scheme: light;
  --ink: #2d251d;
  --ink-soft: #675d54;
  --cream: #f8f4ea;
  --paper: #fffdf8;
  --teal: #2f9d91;
  --teal-dark: #16695f;
  --mint: #dff2e7;
  --blue: #5a91da;
  --blue-soft: #e6effc;
  --coral: #ee927e;
  --orange: #f2a35f;
  --yellow: #f1cd70;
  --green: #9bcf83;
  --line: rgba(64, 47, 32, .12);
  --shadow: 0 28px 90px rgba(62, 48, 31, .14);
  --radius: 30px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--cream); }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--cream); font-family: "Jakarta", system-ui, sans-serif; line-height: 1.55; -webkit-font-smoothing: antialiased; }
img, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; transform: translateY(-150%); padding: 10px 14px; border-radius: 10px; background: var(--ink); color: white; }
.skip-link:focus { transform: none; }

.site-header { position: sticky; z-index: 100; top: 0; padding: 10px 0; background: rgba(248, 244, 234, .86); backdrop-filter: blur(16px); border-bottom: 1px solid transparent; transition: border-color .2s ease, box-shadow .2s ease; }
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 28px rgba(58, 42, 24, .05); }
.header-inner { width: min(100% - 40px, 1180px); min-height: 58px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); text-decoration: none; font: 600 27px/1 "Fredoka", sans-serif; }
.brand img { border-radius: 14px; box-shadow: 0 5px 16px rgba(47, 157, 145, .17); }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a { color: var(--ink-soft); text-decoration: none; font-size: 14px; font-weight: 700; }
.site-nav a:hover { color: var(--teal-dark); }
.header-tools { display: flex; align-items: center; gap: 10px; }
.language-switcher { display: inline-flex; align-items: center; gap: 2px; padding: 3px; border: 1px solid var(--line); border-radius: 999px; background: var(--paper); box-shadow: 0 5px 16px rgba(63, 49, 32, .05); }
.language-switcher a { min-width: 38px; padding: 6px 9px; border-radius: 999px; color: var(--ink-soft); text-align: center; text-decoration: none; font-size: 12px; font-weight: 700; line-height: 1.2; }
.language-switcher a:hover { color: var(--teal-dark); }
.language-switcher a[aria-current="page"] { background: var(--teal-dark); color: white; }
.menu-button { min-width: 63px; display: none; padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; background: var(--paper); color: var(--ink); text-align: center; font: 700 13px "Jakarta", sans-serif; }

.hero { width: min(100% - 40px, 1180px); min-height: calc(100vh - 79px); margin: 0 auto; padding: clamp(42px, 7vw, 92px) 0 72px; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(42px, 7vw, 92px); align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { display: flex; align-items: center; gap: 9px; margin: 0 0 18px; color: var(--teal-dark); font-size: 12px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow.light { color: #def7ef; }
.eyebrow-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 5px rgba(47, 157, 145, .13); }
.eyebrow-dot.coral { background: var(--coral); box-shadow: 0 0 0 5px rgba(238, 146, 126, .14); }
.eyebrow-dot.blue { background: var(--blue); box-shadow: 0 0 0 5px rgba(90, 145, 218, .14); }
.eyebrow-dot.orange { background: var(--orange); box-shadow: 0 0 0 5px rgba(242, 163, 95, .14); }
.eyebrow-dot.yellow { background: var(--yellow); box-shadow: 0 0 0 5px rgba(241, 205, 112, .14); }
h1, h2, h3 { margin-top: 0; font-family: "Fredoka", "Jakarta", sans-serif; line-height: 1.04; }
h1 { margin-bottom: 24px; font-size: clamp(54px, 6.3vw, 90px); font-weight: 600; letter-spacing: -.045em; }
h1 em { display: block; color: var(--teal); font-style: normal; }
.hero-lead { max-width: 630px; margin: 0 0 31px; color: var(--ink-soft); font-size: clamp(17px, 1.5vw, 20px); line-height: 1.7; }
.store-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.store-button { min-width: 185px; min-height: 60px; display: inline-flex; align-items: center; gap: 12px; padding: 9px 18px; border: 1px solid rgba(255, 255, 255, .15); border-radius: 16px; background: var(--ink); color: #fff; text-decoration: none; box-shadow: 0 10px 22px rgba(45, 37, 29, .16); transition: transform .2s ease, box-shadow .2s ease; font-family: "Fredoka", sans-serif; font-size: 18px; line-height: 1.05; }
a.store-button:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(45, 37, 29, .22); }
.store-button small { display: block; margin-bottom: 3px; font: 500 10px/1 "Jakarta", sans-serif; letter-spacing: .02em; opacity: .78; }
.store-button-disabled { cursor: default; opacity: .78; }
.store-mark { width: 22px; height: 22px; display: grid; place-items: center; color: #fff; font-size: 12px; border: 2px solid currentColor; border-radius: 50%; }
.play-mark { width: 0; height: 0; border-top: 12px solid transparent; border-bottom: 12px solid transparent; border-left: 21px solid #80d5c5; filter: drop-shadow(7px 0 0 #f5ca62); }
.trust-list { display: flex; flex-wrap: wrap; gap: 9px; margin: 22px 0 0; padding: 0; list-style: none; }
.trust-list li { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255, 255, 255, .58); color: var(--ink-soft); font-size: 12px; font-weight: 700; }
.trust-list li::before { content: "✓"; margin-right: 6px; color: var(--teal); }

.hero-showcase { position: relative; width: 100%; max-width: 480px; min-width: 0; justify-self: center; }
.video-shell { position: relative; overflow: hidden; border: 12px solid #fff; border-radius: 34px; background: #dfeeed; box-shadow: var(--shadow); transform: rotate(1.2deg); }
.video-shell::after { content: ""; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 0 1px rgba(45, 37, 29, .08); border-radius: 22px; }
.video-shell video { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; background: #e9f3ef; }
.video-label { position: absolute; left: 18px; bottom: 17px; display: flex; align-items: center; gap: 7px; padding: 8px 11px; border-radius: 999px; background: rgba(255, 255, 255, .9); color: var(--ink); font-size: 11px; font-weight: 700; backdrop-filter: blur(8px); }
.video-label span { width: 7px; height: 7px; border-radius: 50%; background: #ef785f; animation: pulse 1.8s ease-in-out infinite; }
.hero-mascot { position: absolute; z-index: 3; right: -40px; bottom: -64px; width: clamp(135px, 17vw, 205px); height: auto; aspect-ratio: 1; object-fit: contain; filter: drop-shadow(0 18px 15px rgba(34, 80, 68, .19)); transform: rotate(-4deg); }
.spark { position: absolute; color: var(--coral); font-size: 28px; }
.spark-one { top: -27px; right: 11%; transform: rotate(15deg); }
.spark-two { left: -25px; bottom: 15%; color: var(--yellow); font-size: 17px; }
@keyframes pulse { 0%, 100% { transform: scale(.85); opacity: .65; } 50% { transform: scale(1.15); opacity: 1; } }

.numbers-band { width: min(100% - 40px, 1120px); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 24px; background: rgba(255, 255, 255, .62); box-shadow: 0 18px 50px rgba(54, 43, 30, .06); }
.numbers-band div { min-height: 104px; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; text-align: center; }
.numbers-band div + div::before { content: ""; position: absolute; left: 0; top: 25%; width: 1px; height: 50%; background: var(--line); }
.numbers-band strong { font: 600 clamp(31px, 4vw, 45px)/1 "Fredoka", sans-serif; color: var(--teal-dark); }
.numbers-band span { margin-top: 5px; color: var(--ink-soft); font-size: 12px; font-weight: 700; }

.section { width: min(100% - 40px, 1180px); margin: 0 auto; padding: clamp(88px, 11vw, 150px) 0; }
.section-heading { max-width: 650px; margin-bottom: 52px; }
.section-heading.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section h2, .closing-cta h2 { margin-bottom: 20px; font-size: clamp(44px, 6vw, 72px); font-weight: 600; letter-spacing: -.035em; }
.section-heading p:not(.eyebrow), .language-copy > p:not(.eyebrow), .pricing-copy > p:not(.eyebrow), .closing-cta p:not(.eyebrow) { color: var(--ink-soft); font-size: 18px; line-height: 1.7; }

.feature-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 17px; }
.feature-card { grid-column: span 2; min-height: 260px; padding: 28px; border: 1px solid rgba(45, 37, 29, .08); border-radius: 26px; box-shadow: 0 17px 50px rgba(63, 49, 32, .07); }
.feature-card:nth-child(4) { grid-column: 2 / span 2; }
.feature-card h3 { margin: 19px 0 10px; font-size: 25px; font-weight: 600; }
.feature-card p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.75; }
.feature-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 17px; background: rgba(255, 255, 255, .72); box-shadow: 0 6px 18px rgba(50, 38, 25, .07); font: 600 22px "Fredoka", sans-serif; }
.feature-teal { background: #dcf1ec; } .feature-blue { background: #e5edfb; } .feature-yellow { background: #fbefc8; } .feature-green { background: #e7f2d9; } .feature-pink { background: #f8e2e2; }

.gallery-section { width: 100%; max-width: none; padding-left: max(20px, calc((100vw - 1180px) / 2)); padding-right: 0; background: #f1ecdf; }
.gallery-section .section-heading { padding-right: 20px; }
.screenshot-track { display: flex; gap: 22px; overflow-x: auto; padding: 7px max(24px, calc((100vw - 1180px) / 2)) 33px 3px; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: rgba(45, 37, 29, .25) transparent; }
.screenshot-card { flex: 0 0 clamp(255px, 23vw, 330px); margin: 0; overflow: hidden; scroll-snap-align: start; border: 9px solid white; border-radius: 27px; background: white; box-shadow: 0 19px 48px rgba(62, 47, 30, .13); }
.screenshot-card img { width: 100%; height: auto; }
.scroll-hint { margin: 8px 24px 0 0; color: var(--ink-soft); text-align: center; font-size: 12px; font-weight: 700; }
.scroll-hint span { margin-left: 8px; color: var(--teal); font-size: 18px; }

.language-section { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(50px, 9vw, 120px); align-items: center; }
.language-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 13px; margin: 0; padding: 40px; border: 1px solid var(--line); border-radius: 34px; background: var(--paper); box-shadow: 0 20px 70px rgba(64, 49, 30, .08); list-style: none; }
.language-cloud li { min-width: 145px; display: flex; align-items: center; gap: 10px; padding: 14px 17px; border: 1px solid var(--line); border-radius: 17px; background: white; font-family: "Fredoka", "Jakarta", sans-serif; font-weight: 600; box-shadow: 0 7px 15px rgba(66, 50, 31, .05); }
.language-cloud li:nth-child(3n+1) { transform: rotate(-1deg); }
.language-cloud li:nth-child(3n) { transform: rotate(1deg); }
.language-cloud span { font-size: 24px; }

.pricing-section { width: min(100% - 40px, 1180px); margin-bottom: 110px; padding: clamp(48px, 7vw, 90px); display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(42px, 7vw, 85px); align-items: center; border-radius: 42px; background: linear-gradient(145deg, #1d756b 0%, #298d81 60%, #3aa093 100%); color: white; box-shadow: 0 30px 80px rgba(29, 117, 107, .24); }
.pricing-copy > p:not(.eyebrow) { color: rgba(255, 255, 255, .78); }
.price-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.price-card { position: relative; min-height: 310px; padding: 29px 25px; border: 1px solid rgba(255, 255, 255, .2); border-radius: 25px; background: rgba(255, 255, 255, .12); backdrop-filter: blur(7px); }
.price-card-featured { background: #fffaf0; color: var(--ink); box-shadow: 0 20px 44px rgba(17, 76, 68, .2); transform: translateY(-14px); }
.best-value { position: absolute; top: -13px; right: 17px; padding: 7px 11px; border-radius: 999px; background: var(--yellow); color: #5e4714; font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.price-label { margin: 0 0 15px; opacity: .78; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.price-value { margin: 0 0 22px; font: 600 55px/1 "Fredoka", sans-serif; }
.price-value span { font-size: 20px; }
.price-card ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; font-size: 13px; }
.price-card li::before { content: "✓"; margin-right: 8px; color: var(--yellow); font-weight: 700; }
.price-card-featured li::before { color: var(--teal); }

.closing-cta { width: min(100% - 40px, 1030px); margin: 0 auto 72px; padding: 54px 64px; display: grid; grid-template-columns: 220px 1fr; gap: 45px; align-items: center; border: 1px solid var(--line); border-radius: 35px; background: var(--paper); box-shadow: 0 24px 70px rgba(63, 48, 31, .09); }
.closing-cta img { filter: drop-shadow(0 15px 13px rgba(41, 112, 91, .15)); }
.closing-cta h2 { font-size: clamp(38px, 5vw, 60px); }
.closing-cta .store-actions { margin-top: 26px; }

.site-footer { width: min(100% - 40px, 1180px); margin: 0 auto 24px; overflow: hidden; border: 1px solid rgba(22, 105, 95, .12); border-radius: 28px; background: rgba(223, 242, 231, .58); color: var(--ink-soft); }
.footer-main { padding: 32px 38px 28px; display: grid; grid-template-columns: 1fr auto; gap: 28px 50px; align-items: center; }
.footer-brand p { margin: 8px 0 0; font-size: 13px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.footer-links a { padding: 10px 14px; border: 1px solid rgba(22, 105, 95, .12); border-radius: 999px; background: rgba(255, 253, 248, .72); color: var(--ink-soft); text-decoration: none; font-size: 13px; font-weight: 700; transition: color .2s ease, border-color .2s ease, background .2s ease; }
.footer-links a:hover { border-color: rgba(22, 105, 95, .28); background: var(--paper); color: var(--teal-dark); }
.footer-bottom { min-height: 54px; padding: 13px 38px; display: flex; align-items: center; justify-content: space-between; gap: 18px 30px; border-top: 1px solid rgba(22, 105, 95, .12); background: rgba(255, 253, 248, .42); }
.copyright { margin: 0; font-size: 11px; }
.footer-languages { display: flex; align-items: center; gap: 8px; white-space: nowrap; font-size: 12px; }
.footer-languages a { color: var(--ink-soft); text-decoration: none; font-weight: 700; }
.footer-languages a[aria-current="page"], .footer-languages a:hover { color: var(--teal-dark); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 64px; text-align: center; }
  .hero-copy { max-width: 760px; margin: 0 auto; }
  .hero-copy .eyebrow, .hero-copy .store-actions, .trust-list { justify-content: center; }
  h1 em { display: inline; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-showcase { width: min(100%, 480px); margin: 15px auto 0; }
  .hero-mascot { right: -13px; }
  .feature-card { grid-column: span 3; }
  .feature-card:nth-child(4) { grid-column: span 3; }
  .feature-card:last-child { grid-column: 2 / span 4; }
  .language-section, .pricing-section { grid-template-columns: 1fr; }
  .language-copy { max-width: 650px; }
  .pricing-copy { max-width: 650px; }
}

@media (max-width: 720px) {
  .header-inner, .hero, .section, .numbers-band, .pricing-section, .closing-cta, .site-footer { width: min(100% - 28px, 1180px); }
  .header-inner { gap: 12px; }
  .header-tools { gap: 7px; }
  .language-switcher a { min-width: 34px; padding: 6px 7px; }
  .menu-button { display: block; }
  .site-nav { position: absolute; top: 70px; left: 14px; right: 14px; display: none; flex-direction: column; align-items: stretch; gap: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #fffdf8; box-shadow: 0 18px 50px rgba(63, 49, 32, .14); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 15px 18px; }
  .site-nav a + a { border-top: 1px solid var(--line); }
  h1 { font-size: clamp(49px, 14vw, 68px); }
  .hero { gap: 50px; padding-bottom: 64px; }
  .hero-mascot { width: 125px; right: -5px; bottom: -43px; }
  .video-shell { border-width: 7px; border-radius: 24px; }
  .numbers-band { grid-template-columns: 1fr 1fr; }
  .numbers-band div:nth-child(3)::before { display: none; }
  .numbers-band div:nth-child(n+3) { border-top: 1px solid var(--line); }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card, .feature-card:nth-child(4), .feature-card:last-child { grid-column: auto; min-height: auto; }
  .gallery-section { width: 100%; padding-left: 14px; }
  .screenshot-card { flex-basis: min(74vw, 300px); }
  .language-cloud { padding: 24px 17px; }
  .language-cloud li { min-width: calc(50% - 7px); font-size: 13px; padding: 12px 10px; }
  .price-cards { grid-template-columns: 1fr; }
  .price-card { min-height: auto; }
  .price-card-featured { transform: none; }
  .pricing-section { margin-bottom: 82px; padding: 42px 22px 28px; border-radius: 30px; }
  .closing-cta { grid-template-columns: 1fr; padding: 38px 24px; text-align: center; }
  .closing-cta img { width: 170px; margin: 0 auto -5px; }
  .closing-cta .eyebrow, .closing-cta .store-actions { justify-content: center; }
  .closing-cta { margin-bottom: 50px; }
  .footer-main { grid-template-columns: 1fr; padding: 28px 24px 24px; }
  .footer-links { justify-content: flex-start; }
  .footer-bottom { padding: 15px 24px; align-items: flex-start; }
}

@media (max-width: 470px) {
  .store-actions { flex-direction: column; align-items: stretch; }
  .store-button { width: 100%; justify-content: center; }
  .trust-list li { flex: 1 1 auto; }
  .language-cloud { display: grid; grid-template-columns: 1fr 1fr; }
  .language-cloud li { min-width: 0; }
  .screenshot-card { flex-basis: 78vw; }
  .footer-links { display: grid; grid-template-columns: 1fr 1fr; }
  .footer-links a { padding: 11px 12px; text-align: center; }
  .footer-links a:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
