:root {
  --bg: #0d1a2b;
  --bg-deep: #112238;
  --bg-soft: #1b2d45;
  --panel: rgba(35, 50, 73, 0.82);
  --panel-soft: rgba(47, 66, 96, 0.8);
  --line: rgba(46, 123, 226, 0.55);
  --line-soft: rgba(170, 197, 236, 0.14);
  --text: #eef6ff;
  --muted: rgba(219, 229, 246, 0.78);
  --blue: #2694f2;
  --cyan: #29c9ea;
  --glow: rgba(41, 201, 234, 0.22);
  --shadow: 0 28px 70px rgba(1, 8, 18, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: clip;
  background: #12253b !important;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  position: relative;
  isolation: isolate;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: #12253b !important;
  min-height: 100vh;
  overflow: hidden;
  overscroll-behavior-y: none;
}

body::before {
  content: "";
  position: fixed;
  inset: -2px;
  z-index: -3;
  pointer-events: none;
  background: #12253b;
}

.app-shell {
  position: fixed;
  inset: 0;
  min-height: 100svh;
  min-height: 100dvh;
  height: 100svh;
  height: 100dvh;
  width: 100%;
  background-color: #12253b;
  background:
    radial-gradient(circle at 75% 12%, rgba(41, 201, 234, 0.16), transparent 24%),
    radial-gradient(circle at 18% 78%, rgba(38, 148, 242, 0.12), transparent 22%),
    linear-gradient(180deg, #101d30 0%, #12253b 42%, #13253a 100%);
  background-repeat: no-repeat;
  background-size: cover;
  overflow-x: clip;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.page-gradient {
  display: none;
}

body > *:not(.page-gradient):not(.splash-screen) {
  position: relative;
  z-index: 2;
}

body.is-loading {
  overflow: hidden;
}

.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 30%, rgba(41, 201, 234, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(11, 23, 38, 0.98), rgba(16, 37, 59, 0.98));
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.splash-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.splash-center {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 1rem;
  text-align: center;
  animation: splashRise 1s ease both;
}

.splash-icon-wrap {
  width: 6.2rem;
  height: 6.2rem;
  padding: 0.45rem;
  border-radius: 1.8rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(41, 201, 234, 0.12));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.splash-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.45rem;
}

.splash-wordmark {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.05em;
}

.splash-tag {
  max-width: 28rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.splash-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.55;
  animation: orbDrift 7s ease-in-out infinite alternate;
}

.orb-left {
  width: 18rem;
  height: 18rem;
  left: -4rem;
  top: 10%;
  background: rgba(38, 148, 242, 0.28);
}

.orb-right {
  width: 16rem;
  height: 16rem;
  right: -3rem;
  bottom: 12%;
  background: rgba(41, 201, 234, 0.26);
  animation-delay: 0.5s;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

.reveal-scale {
  transform: scale(0.95);
}

.reveal-scale.in-view {
  transform: scale(1);
}

.delay-1 {
  --reveal-delay: 90ms;
}

.delay-2 {
  --reveal-delay: 180ms;
}

main,
.site-header,
.site-footer,
.section,
.hero {
  background-color: transparent;
}

@supports (-webkit-touch-callout: none) {
  html,
  body {
    height: 100%;
    min-height: 100dvh;
  }

  body::before {
    inset: -8px;
  }

  .app-shell {
    min-height: 100dvh;
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
    padding-bottom: env(safe-area-inset-bottom);
  }

  .site-header {
    padding-top: env(safe-area-inset-top);
  }
}

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

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

button {
  font: inherit;
}

.container {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(16, 29, 48, 0.72);
  border-bottom: 1px solid rgba(200, 225, 255, 0.06);
}

.header-shell,
.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 2.15rem;
  height: 2.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.8rem;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 12px 28px rgba(41, 201, 234, 0.28);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  font-size: 1.05rem;
}

.main-nav,
.header-actions,
.footer-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.main-nav a,
.footer-links a {
  color: var(--muted);
  transition: color 0.25s ease;
}

.main-nav a:hover,
.footer-links a:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.88rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 16px 36px rgba(41, 201, 234, 0.18);
}

.app-store-button {
  gap: 0.8rem;
  min-height: 3.4rem;
  padding: 0.72rem 1.2rem;
  background: #0a0f16;
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.app-store-icon {
  width: 1.2rem;
  height: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

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

.app-store-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.app-store-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.05;
}

.app-store-text small {
  font-size: 0.66rem;
  font-weight: 600;
  opacity: 0.82;
}

.app-store-text strong {
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.button.secondary,
.button.ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(102, 171, 255, 0.32);
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(102, 171, 255, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto 4px;
  background: currentColor;
  border-radius: 999px;
}

.menu-toggle span:last-child {
  margin-bottom: 0;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4.2rem 0 3rem;
}

.hero-grid,
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-grid {
  grid-template-areas:
    "heading visual"
    "copy visual";
}

.hero-heading {
  grid-area: heading;
}

.hero-copy {
  grid-area: copy;
}

.eyebrow,
.mini-label {
  display: inline-flex;
  margin: 0 0 1rem;
  color: #76d7ff;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 800;
}

.hero h1,
.section-heading h2,
.showcase-copy h3,
.big-panel h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 9ch;
  font-size: clamp(3rem, 6vw, 5.2rem);
}

.hero h1 span {
  background: linear-gradient(90deg, #94e7ff, #2bbcf3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text,
.section-heading p,
.showcase-copy p,
.panel p,
.faq-content p,
.site-footer p,
.feature-card p,
.step-card p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 38rem;
  margin: 1.4rem 0 0;
  font-size: 1rem;
}

.hero-actions,
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-actions {
  margin-top: 2rem;
}

.hero-actions-top {
  margin-top: 1.5rem;
}

.hero-stats {
  margin-top: 1.5rem;
}

.stat-card,
.feature-card,
.step-card,
.panel,
.showcase-card,
.faq-card {
  background:
    linear-gradient(180deg, rgba(38, 53, 78, 0.86), rgba(28, 42, 64, 0.86));
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow);
}

.stat-card {
  min-width: 220px;
  padding: 1rem 1.15rem;
  border-radius: 1.3rem;
  flex: 1 1 220px;
}

.stat-card strong {
  display: block;
  margin-bottom: 0.35rem;
}

.hero-visual {
  grid-area: visual;
  position: relative;
  aspect-ratio: 1320 / 2668;
  min-height: auto;
  max-width: 380px;
  width: 100%;
  margin: 0 auto;
}

.phone-frame {
  position: absolute;
  overflow: hidden;
  border-radius: 2.3rem;
  background: linear-gradient(180deg, rgba(30, 45, 68, 0.95), rgba(20, 31, 48, 0.98));
  border: 1px solid rgba(92, 165, 245, 0.28);
  box-shadow: var(--shadow);
}

.screenshot-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
}

.phone-main {
  inset: 0;
  transform: none;
}

.floating-note {
  position: absolute;
  padding: 0.82rem 1rem;
  border-radius: 999px;
  background: rgba(63, 84, 114, 0.66);
  border: 1px solid rgba(101, 174, 255, 0.32);
  backdrop-filter: blur(14px);
  font-weight: 700;
  color: var(--text);
  animation: badgeFloat 4.5s ease-in-out infinite;
}

.note-a {
  left: -7.4rem;
  top: 14rem;
}

.note-b {
  right: -9rem;
  top: 3.2rem;
  animation-delay: 0.5s;
}

.note-c {
  right: -10.5rem;
  bottom: 10rem;
  animation-delay: 1s;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.55;
  animation: glowPulse 6s ease-in-out infinite;
}

.glow-a {
  width: 18rem;
  height: 18rem;
  left: -4rem;
  top: 3rem;
  background: rgba(44, 173, 251, 0.16);
}

.glow-b {
  width: 15rem;
  height: 15rem;
  right: 6rem;
  top: 6rem;
  background: rgba(41, 201, 234, 0.2);
}

.section {
  padding: 5rem 0;
}

.section-dark {
  background: linear-gradient(180deg, rgba(16, 29, 48, 0.35), rgba(15, 27, 44, 0.72));
}

.section-deep {
  background: linear-gradient(180deg, rgba(19, 37, 58, 0.94), rgba(15, 27, 44, 0.98));
}

.section-warm {
  background:
    radial-gradient(circle at 80% 14%, rgba(41, 201, 234, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(18, 34, 55, 0.98), rgba(14, 26, 42, 1));
}

.section-heading {
  max-width: 52rem;
}

.section-heading.narrow {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
}

.section-heading h2,
.big-panel h2 {
  font-size: clamp(2.15rem, 4.7vw, 4rem);
}

.feature-grid,
.steps-grid {
  display: grid;
  gap: 1.3rem;
  margin-top: 2.2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.step-card,
.showcase-card,
.big-panel,
.mini-panel,
.faq-card {
  border-radius: 1.65rem;
}

.feature-card,
.step-card {
  padding: 1.7rem;
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  margin-bottom: 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.accent-blue .feature-icon {
  background: rgba(38, 148, 242, 0.18);
  color: #77c2ff;
}

.accent-cyan .feature-icon {
  background: rgba(41, 201, 234, 0.18);
  color: #9ceefe;
}

.accent-slate .feature-icon {
  background: rgba(185, 210, 250, 0.12);
  color: #dbe8ff;
}

.feature-card h3,
.step-card h3,
.showcase-copy h3 {
  margin: 0 0 0.8rem;
  font-size: 1.25rem;
}

.showcase-grid {
  display: grid;
  gap: 1.6rem;
  margin-top: 2.3rem;
}

.compact-showcase {
  gap: 1.15rem;
}

.showcase-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1.35rem;
  align-items: start;
  align-content: start;
  padding: 1.2rem;
}

.showcase-card.reverse {
  grid-template-columns: 320px minmax(0, 1fr);
}

.showcase-card.reverse .showcase-copy {
  order: 2;
}

.showcase-card.reverse .showcase-screen {
  order: 1;
}

.showcase-copy {
  padding: 0.35rem 0.45rem;
  align-self: start;
}

.showcase-copy .mini-label {
  margin-bottom: 0.8rem;
}

.showcase-screen {
  border-radius: 1.7rem;
  overflow: hidden;
  border: 1px solid rgba(93, 164, 241, 0.24);
  background: rgba(16, 29, 48, 0.75);
  max-height: 520px;
  align-self: start;
}

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

.step-card {
  position: relative;
  padding-top: 3.3rem;
}

.step-number {
  position: absolute;
  top: 1rem;
  left: 1.35rem;
  color: #7ad9ff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.big-panel,
.mini-panel {
  padding: 2rem;
}

.detail-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  position: relative;
  margin-bottom: 0.85rem;
  padding-left: 1.4rem;
  color: var(--muted);
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.stack-panels {
  display: grid;
  gap: 1rem;
}

.faq-list {
  max-width: 54rem;
  margin: 2rem auto 0;
  display: grid;
  gap: 1rem;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.4rem;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.faq-trigger span:first-child {
  font-weight: 700;
}

.faq-symbol {
  color: #7edfff;
  font-size: 1.3rem;
  transition: transform 0.2s ease;
}

.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.faq-content p {
  overflow: hidden;
  margin: 0;
  padding: 0 1.4rem 0;
}

.faq-card.active .faq-content {
  grid-template-rows: 1fr;
}

.faq-card.active .faq-content p {
  padding-bottom: 1.25rem;
}

.faq-card.active .faq-symbol {
  transform: rotate(45deg);
}

.site-footer {
  border-top: 1px solid rgba(200, 225, 255, 0.08);
  background: rgba(12, 22, 36, 0.94);
}

.footer-primary {
  max-width: 34rem;
}

.footer-store-link {
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(102, 171, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}

.footer-brand {
  margin-bottom: 0.5rem;
}

.footer-credit {
  margin-top: 1rem;
  color: #9fdcff;
  font-weight: 700;
}

@keyframes splashRise {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes orbDrift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(18px, -14px, 0) scale(1.08);
  }
}

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

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

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

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

  .splash-screen {
    display: none;
  }
}

@media (max-width: 1040px) {
  .main-nav {
    display: none;
  }

  .button.ghost {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-content: center;
  }

  .mobile-menu {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition:
      max-height 0.36s cubic-bezier(0.22, 1, 0.36, 1),
      border-top-color 0.28s ease,
      background 0.28s ease,
      opacity 0.28s ease,
      transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
    border-top: 1px solid transparent;
    background: rgba(14, 25, 41, 0.98);
    opacity: 0;
    transform: translateY(-10px) scale(0.985);
    transform-origin: top center;
  }

  .mobile-menu.open {
    max-height: 30rem;
    border-top-color: rgba(200, 225, 255, 0.08);
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .mobile-menu-inner {
    display: grid;
    gap: 0.75rem;
    padding: 1rem;
  }

  .mobile-menu-inner > * {
    opacity: 0;
    transform: translateY(-10px);
    transition:
      opacity 0.28s ease,
      transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .mobile-menu.open .mobile-menu-inner > * {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu.open .mobile-menu-inner > *:nth-child(1) {
    transition-delay: 40ms;
  }

  .mobile-menu.open .mobile-menu-inner > *:nth-child(2) {
    transition-delay: 80ms;
  }

  .mobile-menu.open .mobile-menu-inner > *:nth-child(3) {
    transition-delay: 120ms;
  }

  .mobile-menu.open .mobile-menu-inner > *:nth-child(4) {
    transition-delay: 160ms;
  }

  .mobile-menu.open .mobile-menu-inner > *:nth-child(5) {
    transition-delay: 200ms;
  }

  .mobile-menu-inner a:not(.button) {
    display: flex;
    align-items: center;
    min-height: 3.25rem;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(170, 197, 236, 0.08);
    color: var(--text);
    font-weight: 700;
  }

  .mobile-menu-inner .button {
    margin-top: 0.25rem;
    width: 100%;
  }

  .hero-grid,
  .split-grid,
  .feature-grid,
  .steps-grid,
  .showcase-card,
  .showcase-card.reverse {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-areas:
      "heading"
      "visual"
      "copy";
  }

  .showcase-card.reverse .showcase-copy,
  .showcase-card.reverse .showcase-screen {
    order: initial;
  }

  .hero-heading,
  .hero-copy,
  .section-heading,
  .section-heading.narrow {
    text-align: center;
    max-width: none;
  }

  .hero h1,
  .hero-text {
    max-width: none;
  }

  .hero-actions,
  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    max-width: 560px;
    margin: 0 auto;
  }

  .showcase-card,
  .showcase-card.reverse {
    padding: 1rem;
  }

  .showcase-screen {
    max-width: 360px;
    max-height: 420px;
    margin: 0 auto;
  }

  .showcase-screen img {
    height: 420px;
  }
}

@media (min-width: 721px) and (max-width: 1024px) and (orientation: portrait) {
  .hero {
    padding-top: 2.5rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "visual"
      "copy";
    gap: 2.25rem;
  }

  .hero-heading,
  .hero-copy {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
  }

  .hero h1,
  .hero-text {
    max-width: none;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 8vw, 5rem);
  }

  .hero-actions,
  .hero-stats {
    justify-content: center;
  }

  .hero-stats {
    width: 100%;
  }

  .stat-card {
    min-width: 260px;
    max-width: 320px;
    text-align: left;
  }

  .hero-visual {
    min-height: 720px;
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
  }

  .phone-main {
    inset: 0;
    transform: none;
    border-radius: 2.2rem;
  }

  .phone-side {
    display: none;
  }

  .floating-note {
    display: inline-flex;
    font-size: 0.85rem;
    padding: 0.72rem 0.9rem;
    white-space: nowrap;
  }

  .note-a {
    left: -6rem;
    top: 10rem;
  }

  .note-b {
    right: -8rem;
    top: 4.5rem;
  }

  .note-c {
    right: -9rem;
    bottom: 9rem;
  }

  .screenshot-frame img {
    object-fit: contain;
    object-position: top center;
    background: linear-gradient(180deg, rgba(16, 29, 48, 0.92), rgba(22, 38, 58, 0.96));
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 1.25rem, 100%);
  }

  .header-shell {
    gap: 0.8rem;
    padding: 0.8rem 0;
  }

  .brand {
    gap: 0.6rem;
    min-width: 0;
  }

  .brand-mark {
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 0.65rem;
    flex-shrink: 0;
  }

  .brand-text {
    font-size: 0.96rem;
  }

  .menu-toggle {
    width: 2.7rem;
    height: 2.7rem;
    flex-shrink: 0;
  }

  .mobile-menu-inner {
    gap: 0.65rem;
    padding: 0.85rem 0.6rem 1rem;
  }

  .mobile-menu-inner a:not(.button) {
    min-height: 3rem;
    padding: 0.8rem 0.95rem;
    border-radius: 0.95rem;
    font-size: 0.98rem;
  }

  .mobile-menu-inner .button {
    margin-top: 0.35rem;
  }

  .hero {
    padding-top: 2rem;
  }

  .section {
    padding: 3.4rem 0;
  }

  .hero-grid,
  .split-grid {
    gap: 2rem;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
    line-height: 0.94;
  }

  .hero-text {
    margin-top: 1rem;
    font-size: 0.98rem;
  }

  .hero-visual {
    min-height: 640px;
    width: 100%;
    max-width: 320px;
  }

  .phone-main {
    inset: 0;
    transform: none;
    border-radius: 1.8rem;
  }

  .note-a,
  .note-b,
  .note-c {
    display: inline-flex;
    font-size: 0.78rem;
    padding: 0.62rem 0.78rem;
    max-width: none;
    white-space: nowrap;
    line-height: 1.18;
    text-align: center;
    justify-content: center;
  }

  .note-a {
    left: -5.5rem;
    top: 8rem;
  }

  .note-b {
    right: -7rem;
    top: 3.5rem;
  }

  .note-c {
    right: -7.4rem;
    bottom: 7.2rem;
  }

  .screenshot-frame img {
    object-fit: contain;
    object-position: top center;
    background: linear-gradient(180deg, rgba(16, 29, 48, 0.92), rgba(22, 38, 58, 0.96));
  }

  .hero-stats {
    width: 100%;
  }

  .hero-visual {
    order: 1;
    margin-top: 1rem;
  }

  .stat-card {
    min-width: 0;
    width: 100%;
    text-align: left;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    order: 2;
  }

  .app-store-button {
    width: auto;
    flex: 1 1 0;
    justify-content: center;
  }

  .button.secondary {
    width: auto;
    flex: 1 1 0;
  }

  .feature-grid,
  .steps-grid {
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .feature-card,
  .step-card,
  .showcase-card,
  .big-panel,
  .mini-panel,
  .faq-card {
    border-radius: 1.25rem;
  }

  .feature-card,
  .step-card,
  .big-panel,
  .mini-panel {
    padding: 1.2rem;
  }

  .step-card {
    padding-top: 3.6rem;
  }

  .step-number {
    top: 1rem;
    left: 1rem;
    font-size: 0.9rem;
  }

  .showcase-grid {
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .showcase-card {
    gap: 1rem;
    padding: 0.85rem;
  }

  .showcase-copy {
    text-align: left;
    padding: 0.1rem;
  }

  .showcase-copy h3 {
    font-size: 1.12rem;
  }

  .showcase-copy p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .showcase-screen {
    max-width: 220px;
    max-height: 440px;
    border-radius: 1.2rem;
    margin: 0 auto;
    background: transparent;
    border-color: rgba(93, 164, 241, 0.18);
  }

  .showcase-screen img {
    height: 440px;
    object-fit: contain;
    object-position: top center;
    background: transparent;
  }

  .faq-trigger {
    padding: 1rem 1rem;
  }

  .faq-content p {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .footer-shell,
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-shell {
    gap: 1rem;
  }

  .footer-primary,
  .footer-links {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .header-shell {
    padding: 0.7rem 0;
  }

  .mobile-menu-inner {
    gap: 0.55rem;
    padding: 0.75rem 0.55rem 0.9rem;
  }

  .hero {
    padding-top: 1.5rem;
  }

  .eyebrow,
  .mini-label {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 13vw, 3.4rem);
  }

  .hero-text,
  .showcase-copy p,
  .panel p,
  .feature-card p,
  .step-card p,
  .faq-content p {
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .hero-visual {
    min-height: 560px;
    max-width: 280px;
  }

  .phone-main {
    border-radius: 1.5rem;
  }

  .floating-note {
    font-size: 0.68rem;
    padding: 0.52rem 0.68rem;
    max-width: none;
    white-space: nowrap;
  }

  .note-a {
    left: -4rem;
    top: 7rem;
  }

  .note-b {
    right: -4.1rem;
    top: 3.2rem;
  }

  .note-c {
    right: -4rem;
    bottom: 6rem;
  }

  .section-heading h2,
  .big-panel h2 {
    font-size: clamp(1.8rem, 10vw, 2.4rem);
    line-height: 1.02;
  }

  .feature-card h3,
  .step-card h3,
  .showcase-copy h3 {
    font-size: 1.03rem;
  }

  .step-card {
    padding-top: 3.25rem;
  }

  .step-number {
    top: 0.9rem;
    left: 0.9rem;
    font-size: 0.82rem;
  }

  .showcase-card {
    padding: 0.8rem;
  }

  .showcase-screen {
    max-width: 190px;
    max-height: 380px;
  }

  .showcase-screen img {
    height: 380px;
  }

  .footer-links {
    width: 100%;
    gap: 0.75rem;
    align-items: center;
  }

  .footer-store-link {
    width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-primary p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}
