:root {
  --ink: #0c1931;
  --panel: #122443;
  --cream: #fffdf4;
  --muted: #b8c7de;
  --pink: #ff3d7a;
  --pink-deep: #a90d45;
  --lime: #c9f652;
  --green: #13bb78;
  --blue: #42a7ff;
  --purple: #8e55ee;
  --orange: #ff992b;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--cream);
  font-family: ui-rounded, "Arial Rounded MT Bold", "Trebuchet MS", system-ui, sans-serif;
  background:
    radial-gradient(circle at 5% 2%, rgba(41, 219, 212, .2), transparent 26rem),
    radial-gradient(circle at 90% 26%, rgba(255, 62, 123, .19), transparent 32rem),
    linear-gradient(180deg, #07162c 0%, #0b2541 42%, #08172c 100%);
}
button, a { font: inherit; }
a { color: inherit; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 20; padding: .75rem 1rem; border-radius: .8rem; background: var(--cream); color: var(--ink); }
.skip-link:focus { top: 1rem; }

.site-header { width: min(1180px, calc(100% - 2rem)); margin: 0 auto; height: 82px; display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 5; }
.brand { display: inline-flex; align-items: center; gap: .65rem; font-weight: 900; text-decoration: none; letter-spacing: -.035em; }
.brand img { width: 42px; height: 42px; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,.25); }
.brand span { font-size: 1.25rem; }
.header-cta { padding: .6rem 1rem; border: 1px solid rgba(255,255,255,.35); border-radius: 99px; background: rgba(255,255,255,.08); text-decoration: none; font-size: .9rem; font-weight: 800; }

.hero { width: min(1180px, calc(100% - 2rem)); min-height: min(780px, calc(100vh - 82px)); margin: 0 auto; padding: 4rem 0 5rem; display: grid; grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr); align-items: center; gap: 2rem; position: relative; overflow: hidden; }
.hero-copy, .hero-art { position: relative; z-index: 1; }
.eyebrow { margin: 0 0 .8rem; color: var(--lime); font-size: .78rem; letter-spacing: .14em; font-weight: 900; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 8ch; margin-bottom: 1rem; color: var(--cream); font-size: clamp(3rem, 5.6vw, 5.8rem); line-height: .88; letter-spacing: -.07em; text-shadow: 0 4px 0 rgba(4, 21, 41, .32); }
.hero-lede { max-width: 38rem; margin-bottom: 1.6rem; color: #d7e2f5; font-size: clamp(1.05rem, 1.6vw, 1.22rem); line-height: 1.55; }
.hero-actions, .store-actions { display: flex; flex-wrap: wrap; gap: .85rem; align-items: center; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; padding: .8rem 1.25rem; border: 2px solid rgba(255,255,255,.48); border-radius: 999px; box-shadow: inset 0 3px rgba(255,255,255,.32), 0 7px 0 rgba(4, 18, 38, .42), 0 12px 26px rgba(0,0,0,.23); font-weight: 900; text-decoration: none; transition: transform .16s ease, filter .16s ease, box-shadow .16s ease; }
.button:hover, .button:focus-visible, .store-badge:hover, .store-badge:focus-visible { transform: translateY(-3px); filter: brightness(1.08); }
.button:active, .store-badge:active { transform: translateY(3px); box-shadow: inset 0 3px rgba(255,255,255,.32), 0 3px 0 rgba(4,18,38,.4); }
.button-primary { background: linear-gradient(#ff6b97, var(--pink)); }
.button-app-store { gap: .5rem; background: #090909; color: #fff; }
.button-app-store img { width: 20px; height: 24px; object-fit: contain; }
.button-ghost { background: rgba(255,255,255,.09); }
.availability { margin: 1.35rem 0 0; color: #bdcae0; font-size: .9rem; font-weight: 700; }
.availability > span:first-child { color: #ffd235; }.dot-separator { padding: 0 .25rem; color: #8396b7; }
.ios-spotlight { display: inline-flex; align-items: center; gap: .45rem; margin: .72rem 0 0; padding: .42rem .72rem; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; background: linear-gradient(90deg, rgba(255,255,255,.14), rgba(159,115,255,.18)); box-shadow: inset 0 1px rgba(255,255,255,.2); color: #f7f3ff; font-size: .74rem; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }.ios-spotlight img { width: 13px; height: 16px; }

.hero-art { min-height: 520px; display: grid; place-items: center; }
.hero-mascot { width: min(470px, 88%); height: auto; object-fit: contain; transform: rotate(3deg); filter: drop-shadow(0 24px 24px rgba(0, 6, 18, .38)); animation: bob 4.5s ease-in-out infinite; }
.hero-arc { position: absolute; border: 2px solid rgba(213, 253, 109, .4); border-radius: 50%; pointer-events: none; }
.arc-a { width: 88%; height: 68%; transform: rotate(-19deg); }.arc-b { width: 66%; height: 93%; border-color: rgba(58, 178, 255, .3); transform: rotate(27deg); }
.floating-pill { position: absolute; padding: .65rem .85rem; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; background: rgba(13, 31, 58, .75); box-shadow: 0 12px 22px rgba(0,0,0,.24); font-weight: 900; backdrop-filter: blur(8px); }
.pill-pink { top: 13%; right: 2%; color: #ffbed1; }.pill-lime { bottom: 14%; left: -2%; color: var(--lime); }
.hero-glow { position: absolute; width: 460px; height: 460px; border-radius: 50%; filter: blur(8px); opacity: .7; pointer-events: none; }.glow-left { left: -330px; bottom: 10%; background: rgba(255, 51, 123, .24); }.glow-right { right: -250px; top: -130px; background: rgba(63, 208, 233, .24); }
.melon-dot { position: absolute; width: 17px; height: 17px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 0 5px rgba(255, 69, 127, .13); }.dot-one { top: 21%; right: 51%; }.dot-two { bottom: 14%; left: 46%; width: 10px; height: 10px; background: var(--lime); }.dot-three { top: 36%; right: 5%; width: 8px; height: 8px; background: #61d5ff; }

.section { width: min(1080px, calc(100% - 2rem)); margin: 0 auto; padding: 6.5rem 0; }.section-heading { max-width: 690px; margin: 0 auto 2.4rem; text-align: center; }.section-heading h2, .proof h2, .store-card h2 { margin-bottom: .8rem; font-size: clamp(2.15rem, 4vw, 4rem); line-height: .98; letter-spacing: -.055em; }.section-heading > p:last-child, .proof-copy > p:not(.eyebrow), .store-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.1rem; line-height: 1.55; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }.feature-card { min-height: 242px; padding: 1.7rem; border: 1px solid rgba(255,255,255,.12); border-radius: 28px; background: #122443; box-shadow: inset 0 1px rgba(255,255,255,.11), 0 14px 30px rgba(0,0,0,.18); }.feature-card-pink { background: linear-gradient(145deg, #552141, #1a2946 75%); }.feature-card-blue { background: linear-gradient(145deg, #173f66, #172344 75%); }.feature-card-lime { background: linear-gradient(145deg, #36502a, #192a42 75%); }.feature-icon { display: grid; width: 54px; height: 54px; place-items: center; margin-bottom: 1.2rem; border-radius: 18px; background: rgba(255,255,255,.13); font-size: 1.8rem; }.feature-card h3 { margin-bottom: .7rem; font-size: 1.3rem; }.feature-card p { margin-bottom: 0; color: #d2dced; line-height: 1.5; }

.proof { display: grid; grid-template-columns: .84fr 1.16fr; align-items: center; gap: clamp(2rem, 6vw, 6rem); padding-top: 4rem; }.text-link { display: inline-block; margin-top: .55rem; color: var(--lime); font-weight: 900; text-decoration: none; }.text-link:hover { text-decoration: underline; }.screenshot-stack { height: 520px; position: relative; }.shot { position: absolute; overflow: hidden; margin: 0; border: 6px solid #dcedfa; border-radius: 28px; box-shadow: 0 23px 45px rgba(0,0,0,.35); background: #112440; }.shot img { display: block; width: 100%; height: 100%; object-fit: cover; }.shot figcaption { position: absolute; right: .55rem; bottom: .55rem; z-index: 1; padding: .28rem .5rem; border: 1px solid rgba(255,255,255,.38); border-radius: 999px; background: rgba(7,15,35,.78); color: #fff; font-size: .58rem; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }.shot-front { width: 46%; height: 94%; left: 28%; top: 2%; z-index: 2; transform: rotate(2deg); }.shot-back { width: 39%; height: 73%; top: 4%; left: 0; transform: rotate(-11deg); opacity: .9; }.shot-side { width: 38%; height: 70%; right: 0; bottom: 0; transform: rotate(11deg); opacity: .93; }

.modes { padding-top: 2.5rem; }.compact { margin-bottom: 1.8rem; }.mode-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; }.mode-chip { min-height: 106px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem; border: 1px solid rgba(255,255,255,.18); border-radius: 22px; font-weight: 900; text-align: center; }.mode-chip span { font-size: 1.65rem; }.chip-green { background: linear-gradient(145deg, #178f5f, #16404b); }.chip-purple { background: linear-gradient(145deg, #8052df, #293066); }.chip-orange { background: linear-gradient(145deg, #df7625, #5b2c32); }.chip-pink { background: linear-gradient(145deg, #de3c73, #542b5c); }

.store-section { padding: 5rem 1rem 6rem; background: linear-gradient(180deg, transparent, rgba(27, 46, 92, .47)); }.store-card { width: min(1020px, 100%); display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 2rem; margin: 0 auto; padding: clamp(1.5rem, 5vw, 4rem); overflow: hidden; border: 1px solid rgba(146,255,230,.36); border-radius: 38px; background: linear-gradient(135deg, rgba(15, 114, 89, .94), rgba(24, 43, 86, .94)); box-shadow: 0 25px 65px rgba(0,0,0,.35), inset 0 1px rgba(255,255,255,.2); }.store-copy h2 { font-size: clamp(2.5rem, 5vw, 4.7rem); }.platform-proof { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1rem 0 1.2rem; }.platform-proof span { display: inline-flex; align-items: center; gap: .35rem; padding: .36rem .58rem; border: 1px solid rgba(255,255,255,.24); border-radius: 999px; background: rgba(2,15,31,.24); color: #eff6ff; font-size: .76rem; font-weight: 800; }.platform-proof b { color: #7fe97f; font-size: .7rem; }.platform-proof img { width: 12px; height: 15px; }.store-badge { display: inline-flex; width: 166px; min-height: 52px; align-items: center; justify-content: center; padding: .34rem .7rem; border: 1px solid rgba(255,255,255,.55); border-radius: 10px; background: #090909; box-shadow: 0 6px 0 rgba(0,0,0,.25); transition: transform .16s ease, filter .16s ease; }.store-badge > img { display: block; width: 100%; height: auto; }.app-store-badge { gap: .48rem; color: #fff; text-decoration: none; }.app-store-badge > img { width: 25px; height: 29px; object-fit: contain; }.app-store-badge span { display: flex; flex-direction: column; align-items: flex-start; line-height: 1; }.app-store-badge small { font-size: .56rem; letter-spacing: .02em; }.app-store-badge strong { margin-top: .12rem; font-size: 1.15rem; font-weight: 500; letter-spacing: -.03em; }.store-note { margin: 1rem 0 0; color: #c3d4e7; font-size: .85rem; line-height: 1.4; }.qr-panel { justify-self: center; display: flex; max-width: 250px; flex-direction: column; align-items: center; gap: .55rem; padding: 1rem; border-radius: 22px; background: #f8fffd; color: #123e43; text-align: center; box-shadow: 0 14px 28px rgba(0,0,0,.22); }.qr { display: block; width: min(210px, 100%); height: auto; image-rendering: auto; }.qr-panel strong { font-size: .94rem; }.qr-panel span { font-size: .78rem; line-height: 1.35; }

.site-footer { display: flex; width: min(1080px, calc(100% - 2rem)); justify-content: space-between; gap: 1rem; margin: 0 auto; padding: 1.5rem 0 2rem; color: #9cadc8; font-size: .83rem; }.site-footer a { color: #cbd8ea; font-weight: 800; text-decoration: none; }.site-footer a:hover { color: var(--lime); }

@keyframes bob { 50% { transform: translateY(-12px) rotate(1deg); } }
@media (max-width: 820px) { .hero { min-height: auto; padding-top: 2.6rem; grid-template-columns: 1fr; text-align: center; }.hero-copy { display: flex; flex-direction: column; align-items: center; }.hero-art { min-height: 370px; order: -1; }.hero-mascot { width: min(420px, 86%); }.pill-pink { top: 7%; right: 6%; }.pill-lime { bottom: 7%; left: 7%; }.proof { grid-template-columns: 1fr; }.proof-copy { max-width: 600px; text-align: center; margin: 0 auto; }.screenshot-stack { width: min(540px, 100%); margin: 0 auto; }.feature-grid { grid-template-columns: 1fr; }.feature-card { min-height: 0; }.mode-row { grid-template-columns: repeat(2, 1fr); }.store-card { grid-template-columns: 1fr; text-align: center; }.store-actions { justify-content: center; }.qr-panel { order: -1; }.store-copy .eyebrow { margin-top: 0; }.site-footer { align-items: center; flex-direction: column; text-align: center; } }
@media (max-width: 480px) { .site-header { height: 68px; }.brand img { width: 36px; height: 36px; }.brand span { font-size: 1.08rem; }.header-cta { font-size: .78rem; }.hero { width: min(100% - 1.5rem, 1180px); padding-bottom: 3.5rem; }.hero-art { min-height: 295px; }.floating-pill { padding: .48rem .6rem; font-size: .74rem; }.pill-pink { right: 0; }.pill-lime { left: 0; }.section { width: min(100% - 1.5rem, 1080px); padding: 4rem 0; }.screenshot-stack { height: 390px; }.shot { border-width: 4px; border-radius: 20px; }.mode-chip { min-height: 88px; font-size: .84rem; }.store-section { padding: 3.5rem .75rem 4rem; }.store-card { padding: 1.35rem; border-radius: 28px; }.store-badge { width: 158px; }.site-footer { width: calc(100% - 1.5rem); } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; }.hero-mascot { animation: none; }.button, .store-badge { transition: none; } }

/* Melon Pop polish: keep the top airy and juicy without a clipped hero corner. */
body {
  position: relative;
  overflow-x: hidden;
  background:
    radial-gradient(ellipse 8px 15px at 7% 13%, rgba(8, 47, 70, .24) 0 42%, transparent 46%),
    radial-gradient(ellipse 7px 13px at 22% 24%, rgba(8, 47, 70, .2) 0 42%, transparent 46%),
    radial-gradient(ellipse 8px 15px at 37% 10%, rgba(8, 47, 70, .2) 0 42%, transparent 46%),
    radial-gradient(ellipse 7px 13px at 61% 19%, rgba(8, 47, 70, .18) 0 42%, transparent 46%),
    radial-gradient(ellipse 8px 15px at 81% 10%, rgba(8, 47, 70, .2) 0 42%, transparent 46%),
    radial-gradient(ellipse 7px 13px at 94% 27%, rgba(8, 47, 70, .16) 0 42%, transparent 46%),
    radial-gradient(circle at 10% 6%, rgba(145, 255, 247, .17), transparent 26rem),
    radial-gradient(circle at 90% 22%, rgba(46, 194, 229, .18), transparent 30rem),
    radial-gradient(circle at 50% 44%, rgba(19, 138, 194, .12), transparent 42rem),
    linear-gradient(180deg, #168fa3 0%, #0a567a 19%, #0a3156 52%, #08182f 100%);
  background-attachment: fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .55;
  background:
    linear-gradient(116deg, transparent 0 47%, rgba(187, 255, 252, .035) 48% 49%, transparent 50% 100%),
    linear-gradient(64deg, transparent 0 47%, rgba(7, 30, 60, .09) 48% 49%, transparent 50% 100%);
  background-size: 118px 118px;
}

.site-header {
  width: min(1220px, calc(100% - 2rem));
  border-bottom: 1px solid rgba(191, 255, 251, .17);
}

.site-header::after {
  content: "";
  position: absolute;
  right: -10rem;
  top: 0;
  width: 29rem;
  height: 8.2rem;
  pointer-events: none;
  background: radial-gradient(ellipse at 40% 0%, rgba(111, 247, 242, .22), transparent 67%);
  filter: blur(11px);
  z-index: -1;
}

.header-juice { position: absolute; inset: 0; z-index: -1; overflow: visible; pointer-events: none; }
.juice-drip, .juice-drop { position: absolute; display: block; background: linear-gradient(180deg, rgba(255, 91, 145, .95), rgba(232, 28, 97, .67)); box-shadow: 0 5px 10px rgba(92, 8, 50, .24); }
.juice-drip { top: 100%; width: 10px; border-radius: 0 0 12px 12px; opacity: .72; }
.juice-drop { top: calc(100% + 28px); width: 8px; height: 12px; border-radius: 60% 40% 60% 40%; transform: rotate(45deg); opacity: .72; }
.drip-one { left: 18%; height: 22px; }.drip-two { left: 61%; height: 34px; width: 7px; }.drip-three { right: 17%; height: 17px; width: 8px; }.drop-one { left: 38%; }.drop-two { right: 30%; top: calc(100% + 42px); width: 6px; height: 9px; }

.hero {
  width: min(1220px, calc(100% - 2rem));
  isolation: isolate;
  overflow: visible;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -4rem -12rem -4rem;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 40%, rgba(66, 231, 238, .13), transparent 29rem),
    radial-gradient(circle at 23% 70%, rgba(255, 69, 128, .12), transparent 20rem),
    linear-gradient(118deg, transparent 0 48%, rgba(191, 255, 249, .05) 49% 50%, transparent 51% 100%);
}

.hero-seeds {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  opacity: .36;
  background:
    radial-gradient(ellipse 6px 13px at 8% 26%, rgba(2, 39, 59, .52) 0 42%, rgba(175, 255, 248, .17) 45%, transparent 52%),
    radial-gradient(ellipse 5px 11px at 31% 17%, rgba(2, 39, 59, .46) 0 42%, rgba(175, 255, 248, .14) 45%, transparent 52%),
    radial-gradient(ellipse 6px 13px at 45% 75%, rgba(2, 39, 59, .48) 0 42%, rgba(175, 255, 248, .15) 45%, transparent 52%),
    radial-gradient(ellipse 5px 11px at 77% 15%, rgba(2, 39, 59, .47) 0 42%, rgba(175, 255, 248, .15) 45%, transparent 52%),
    radial-gradient(ellipse 6px 13px at 94% 71%, rgba(2, 39, 59, .44) 0 42%, rgba(175, 255, 248, .14) 45%, transparent 52%);
}

/* The old off-canvas glow was the square-looking edge on wide screens. */
.glow-right { right: auto; left: 72%; top: 5%; width: 360px; height: 360px; background: radial-gradient(circle, rgba(83, 229, 238, .2), transparent 68%); filter: none; }
.glow-left { left: -220px; bottom: 1%; background: radial-gradient(circle, rgba(255, 51, 123, .19), transparent 68%); filter: none; }

.hero-art { min-height: 535px; }
.hero-mascot { position: relative; z-index: 1; }
.hero-arc { z-index: 0; }
.floating-pill { z-index: 2; border-color: rgba(160, 255, 250, .34); background: rgba(7, 34, 63, .76); }

@media (max-width: 820px) {
  body { background-attachment: scroll; }
  .site-header { width: min(100% - 1.5rem, 1220px); }
  .hero { width: min(100% - 1.5rem, 1220px); overflow: hidden; }
  .header-juice { display: none; }
}
