:root {
  color-scheme: light;
  --bg: #f4fbfc;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: #ffffff;
  --surface-soft: #eef9fb;
  --line: rgba(89, 198, 216, 0.16);
  --text: #17324d;
  --muted: #58728a;
  --muted2: #6d8498;
  --brand: #59c6d8;
  --brand-soft: #d7f7fb;
  --accent-yellow: #f0d56d;
  --accent-mint: #d6f8f2;
  --accent-sky: #cff4ff;
  --accent-peach: #fff4c6;
  --shadow-soft: 0 18px 40px rgba(14, 46, 73, 0.08);
  --shadow-card: 0 12px 26px rgba(14, 46, 73, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(900px 520px at 10% 8%, rgba(89, 198, 216, 0.18), transparent 55%),
    radial-gradient(680px 420px at 88% 12%, rgba(240, 213, 109, 0.22), transparent 55%),
    radial-gradient(620px 380px at 50% 30%, rgba(214, 248, 242, 0.42), transparent 60%),
    var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial;
}

.page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 18px 56px;
}

.top {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 14px 16px;
  margin: -14px -14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(89, 198, 216, 0.14);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.brand {
  display: grid;
  gap: 2px;
}

.brand-name {
  font-weight: 900;
  letter-spacing: 0.2px;
}

.brand-sub {
  font-size: 12px;
  color: var(--muted2);
}

.nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.link {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
}

.link:hover {
  color: #17324d;
}

.cta {
  text-decoration: none;
  color: #0f3d49;
  border: 1px solid rgba(89, 198, 216, 0.42);
  background: rgba(89, 198, 216, 0.20);
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 800;
}

.cta:hover {
  border-color: rgba(89, 198, 216, 0.62);
  background: rgba(89, 198, 216, 0.28);
}

.hero {
  margin-top: 22px;
}

.hero.hero-fullscreen {
  width: calc(100% + 36px);
  margin-left: -18px;
  margin-right: -18px;
}

.hero-stage {
  position: relative;
  min-height: calc(100vh - 104px);
  border-radius: 36px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
  box-shadow: 0 30px 70px rgba(14, 46, 73, 0.16);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
}

.h1 {
  margin: 0;
  font-size: 36px;
  line-height: 1.12;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(89, 198, 216, 0.18);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  text-decoration: none;
  font-weight: 900;
}

.btn.primary {
  border-color: rgba(89, 198, 216, 0.36);
  background: rgba(89, 198, 216, 0.22);
  color: #0f3d49;
}

.fineprint {
  margin-top: 14px;
  color: var(--muted2);
  font-size: 12px;
  line-height: 1.5;
}

.hero-illustration {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 46% center;
  filter: saturate(1.03);
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 148px;
  height: 26px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(23, 50, 77, 0.10);
  border: 1px solid rgba(23, 50, 77, 0.08);
  z-index: 2;
}

.top.top-float {
  background: rgba(255, 255, 255, 0.52);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 14px 28px rgba(14, 46, 73, 0.08);
  backdrop-filter: blur(14px);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(9, 23, 36, 0.26), rgba(9, 23, 36, 0.08) 28%, rgba(9, 23, 36, 0) 56%),
    linear-gradient(180deg, rgba(9, 23, 36, 0.08), rgba(9, 23, 36, 0.02) 36%, rgba(9, 23, 36, 0.16) 100%);
}

.hero-bottom-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 28%;
  z-index: 1;
  background: linear-gradient(180deg, rgba(244, 251, 252, 0), rgba(244, 251, 252, 0.42) 56%, rgba(244, 251, 252, 0.94));
}

.hero-copy {
  position: absolute;
  left: clamp(20px, 4vw, 48px);
  bottom: clamp(26px, 7vh, 62px);
  z-index: 2;
  display: grid;
  gap: 16px;
  justify-items: start;
  max-width: min(420px, 52vw);
}

.hero-title {
  color: #ffffff;
  font-size: clamp(38px, 5.4vw, 68px);
  line-height: 0.98;
  letter-spacing: 0.2px;
  text-wrap: balance;
  text-shadow: 0 16px 36px rgba(11, 28, 42, 0.38);
}

.hero-primary {
  min-height: 54px;
  padding: 14px 22px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 0.46);
  color: #0f3d49;
  box-shadow: 0 18px 34px rgba(14, 46, 73, 0.18);
}

.hero-device {
  position: absolute;
  right: clamp(18px, 4.5vw, 54px);
  top: 50%;
  z-index: 2;
  transform: translateY(-48%);
}

.hero-device-shell {
  width: clamp(292px, 26vw, 388px);
  height: clamp(610px, 72vh, 800px);
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.90), rgba(226, 247, 250, 0.74));
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0 34px 68px rgba(9, 26, 40, 0.28);
  position: relative;
  overflow: hidden;
}

.phone-screen {
  position: absolute;
  inset: 0;
  padding: 44px 14px 14px;
}

.phone-iframe {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(89, 198, 216, 0.16);
  border-radius: 26px;
  background: #ffffff;
}

#features.section {
  margin-top: -8px;
  position: relative;
  z-index: 3;
}

.section {
  margin-top: 22px;
  padding: 18px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
}

.section-head {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.h2 {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.2px;
}

.sub {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.h3 {
  margin: 0;
  font-size: 16px;
  letter-spacing: 0.15px;
}

.p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--text);
  line-height: 1.8;
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.overview-grid {
  margin-top: 10px;
}

.cap-jelly {
  text-align: center;
  padding: 18px 16px 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(239, 250, 253, 0.88));
}

.jelly-icon {
  width: 92px;
  height: 92px;
  margin: 0 auto 14px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 10px 18px rgba(89, 198, 216, 0.14);
}

.jelly-icon svg {
  width: 100%;
  height: 100%;
}

.short-copy {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

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

.scene-banner-list {
  display: grid;
  gap: 18px;
}

.scene-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.95fr);
  gap: 14px;
  padding: 14px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(238, 249, 251, 0.92));
  border: 1px solid rgba(89, 198, 216, 0.14);
  box-shadow: var(--shadow-card);
}

.scene-banner-main {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  padding: 18px;
  min-height: 256px;
}

.scene-banner-main::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.46) 42%, rgba(255, 255, 255, 0.82) 100%);
  pointer-events: none;
}

.scene-banner-copy {
  position: relative;
  z-index: 1;
  margin-left: auto;
  max-width: 248px;
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 24px rgba(14, 46, 73, 0.08);
}

.scene-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
  color: #2a6f81;
}

.scene-title {
  margin: 0;
  font-size: 24px;
  line-height: 1.16;
}

.scene-summary {
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.scene-hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.scene-illustration {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  filter: saturate(1.02);
}

.scene-banner-side {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.scene-panel {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(89, 198, 216, 0.14);
  padding: 14px 14px;
  min-height: 108px;
  display: grid;
  align-content: start;
}

.scene-label {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.3px;
  color: #2a6f81;
  background: rgba(89, 198, 216, 0.12);
}

.scene-line {
  margin-top: 10px;
  font-weight: 900;
  line-height: 1.35;
  font-size: 16px;
}

.scene-note {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.scene-awake .scene-panel {
  background: linear-gradient(135deg, rgba(207, 244, 255, 0.55), rgba(255, 255, 255, 0.82));
}

.scene-awake .scene-banner-main {
  background: radial-gradient(260px 140px at 18% 16%, rgba(207, 244, 255, 0.78), transparent 62%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(223, 248, 251, 0.92));
}

.scene-taunt .scene-panel {
  background: linear-gradient(135deg, rgba(255, 244, 198, 0.55), rgba(255, 255, 255, 0.82));
}

.scene-taunt .scene-banner-main {
  background: radial-gradient(260px 140px at 18% 16%, rgba(255, 244, 198, 0.76), transparent 62%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 236, 186, 0.88));
}

.scene-food .scene-panel {
  background: linear-gradient(135deg, rgba(255, 244, 198, 0.40), rgba(255, 207, 168, 0.30), rgba(255, 255, 255, 0.86));
}

.scene-food .scene-banner-main {
  background: radial-gradient(260px 140px at 18% 16%, rgba(255, 216, 180, 0.62), transparent 62%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 243, 197, 0.88));
}

.scene-transit .scene-panel {
  background: linear-gradient(135deg, rgba(214, 248, 242, 0.60), rgba(255, 255, 255, 0.84));
}

.scene-transit .scene-banner-main {
  background: radial-gradient(260px 140px at 18% 16%, rgba(214, 248, 242, 0.82), transparent 62%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(230, 251, 246, 0.90));
}

.mode-card {
  padding: 16px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.90), rgba(238, 249, 251, 0.92));
  border: 1px solid rgba(89, 198, 216, 0.14);
  box-shadow: var(--shadow-card);
}

.mode-art {
  position: relative;
  height: 130px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  overflow: hidden;
  display: grid;
  place-items: center;
}

.mode-art svg {
  width: 88px;
  height: 88px;
  position: relative;
  z-index: 1;
}

.blob {
  position: absolute;
  width: 84px;
  height: 84px;
  border-radius: 28px;
  opacity: 0.95;
}

.blob-cyan {
  background: linear-gradient(135deg, #cff4ff, #59c6d8);
  left: 14px;
  top: 18px;
}

.blob-yellow {
  background: linear-gradient(135deg, #fff4c6, #f0d56d);
  right: 14px;
  top: 18px;
}

.blob-peach {
  background: linear-gradient(135deg, #fff4c6, #ffcfa8);
  left: 22px;
  bottom: 12px;
}

.blob-mint {
  background: linear-gradient(135deg, #d6f8f2, #7bd3b6);
  right: 18px;
  bottom: 14px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(89, 198, 216, 0.12);
  color: #2a6f81;
  font-size: 12px;
  font-weight: 700;
}

.cap {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(89, 198, 216, 0.14);
  border-radius: 16px;
  padding: 14px 14px;
  min-height: 168px;
}

.cap-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(89, 198, 216, 0.18);
  border: 1px solid rgba(89, 198, 216, 0.32);
  margin-bottom: 10px;
}

.feature2 {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(89, 198, 216, 0.14);
  background: rgba(255, 255, 255, 0.72);
}

.feature-left {
  min-width: 0;
}

.feature-right {
  display: grid;
  align-content: start;
}

.tagline {
  margin-top: 10px;
  color: var(--muted2);
  font-size: 12px;
  line-height: 1.5;
}

.mini-card {
  border-radius: 16px;
  border: 1px solid rgba(89, 198, 216, 0.14);
  background: rgba(255, 255, 255, 0.82);
  padding: 14px 14px;
}

.mini-title {
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.6px;
  color: var(--muted2);
  text-transform: uppercase;
}

.mini-text {
  margin-top: 8px;
  color: var(--text);
  line-height: 1.65;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.gallery-visual {
  height: 112px;
  border-radius: 18px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}

.gallery-home::before,
.gallery-awake::before,
.gallery-taunt::before,
.gallery-food::before,
.gallery-transit::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 18px;
}

.gallery-home::before {
  background: linear-gradient(135deg, #d7f7fb, #fff5c9);
}

.gallery-awake::before {
  background: linear-gradient(135deg, #cff4ff, #f3fbff);
}

.gallery-taunt::before {
  background: linear-gradient(135deg, #fff4c6, #ffe0ad);
}

.gallery-food::before {
  background: linear-gradient(135deg, #fff5c9, #fffdf0);
}

.gallery-transit::before {
  background: linear-gradient(135deg, #d6f8f2, #eafff7);
}

.gallery-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(242, 250, 252, 0.92));
  border: 1px solid rgba(89, 198, 216, 0.14);
  border-radius: 16px;
  padding: 14px 14px;
  min-height: 164px;
}

.gallery-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(89, 198, 216, 0.16);
  border: 1px solid rgba(89, 198, 216, 0.22);
  margin-bottom: 10px;
}

.gallery-title {
  font-weight: 900;
  letter-spacing: 0.15px;
}

.gallery-text {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 13px;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.privacy-item {
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 250, 253, 0.9));
  border: 1px solid rgba(89, 198, 216, 0.14);
  border-radius: 16px;
  padding: 14px 14px;
}

.privacy-title {
  font-weight: 900;
  letter-spacing: 0.15px;
}

.privacy-text {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.65;
}

.privacy-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--brand-soft);
  font-size: 22px;
}

.privacy-text {
  margin-top: 6px;
}

.cta2 {
  margin-top: 18px;
  background: radial-gradient(900px 520px at 20% 20%, rgba(89, 198, 216, 0.26), transparent 60%),
    radial-gradient(800px 520px at 80% 0%, rgba(240, 213, 109, 0.28), transparent 62%),
    rgba(255, 255, 255, 0.78);
  border-color: rgba(89, 198, 216, 0.20);
}

.cta2-inner {
  display: grid;
  gap: 8px;
  text-align: center;
  padding: 8px 0;
}

.cta2-title {
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.2px;
}

.cta2-sub {
  color: var(--muted);
  line-height: 1.6;
}

.cta2-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.footer {
  margin-top: 22px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero.hero-fullscreen {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-stage {
    min-height: auto;
    padding: 24px 18px 26px;
    display: grid;
    gap: 20px;
    align-content: end;
  }

  .hero-backdrop,
  .hero-overlay,
  .hero-bottom-fade {
    inset: 0;
  }

  .hero-copy,
  .hero-device {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
  }

  .hero-copy {
    margin-top: min(48vw, 260px);
    max-width: min(460px, 100%);
  }

  .hero-device {
    justify-self: end;
  }

  .hero-device-shell {
    width: min(340px, 58vw);
    height: min(700px, 78vh);
  }

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

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

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

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

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

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

  .scene-banner {
    grid-template-columns: 1fr;
  }

  .scene-banner-main {
    min-height: 220px;
  }

  .scene-hero-art {
    width: 100%;
    height: 100%;
  }

  .scene-panels {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .top {
    align-items: start;
    gap: 10px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero-stage {
    border-radius: 26px;
    padding: 16px;
  }

  .hero-illustration {
    object-position: 60% center;
  }

  .hero-copy {
    margin-top: min(62vw, 280px);
    gap: 14px;
    max-width: min(280px, 100%);
  }

  .hero-title {
    font-size: clamp(30px, 10vw, 42px);
  }

  .hero-device {
    justify-self: center;
  }

  .hero-device-shell {
    width: min(82vw, 340px);
    height: min(160vw, 680px);
  }

  #features.section {
    margin-top: -4px;
  }

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

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

  .scene-banner {
    padding: 12px;
  }

  .scene-banner-main {
    padding: 14px;
    min-height: 204px;
  }

  .scene-title {
    font-size: 20px;
  }

  .scene-summary {
    font-size: 13px;
  }

  .scene-hero-art {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    margin-top: 8px;
    border-radius: 18px;
    overflow: hidden;
  }

  .scene-illustration {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .scene-banner-copy {
    margin-left: 0;
    max-width: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .scene-banner {
    transition: transform 180ms ease, box-shadow 180ms ease;
  }

  .scene-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(14, 46, 73, 0.10);
  }
}
