:root {
  --bg: #050505;
  --bg-soft: #111111;
  --panel: rgba(18, 18, 18, 0.86);
  --panel-strong: #181818;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f5f5f5;
  --muted: #a9a9a9;
  --accent: #ffffff;
  --white: #ffffff;
  --accent-muted: #8c8c8c;
  --dark: #050505;
  --display: "Sora", sans-serif;
  --body: "DM Sans", sans-serif;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  overflow-anchor: none;
}

html.booting-top {
  scroll-behavior: auto;
  overflow-anchor: none;
}

html.booting-top,
html.booting-top body {
  overscroll-behavior: none;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 4%, rgba(255, 255, 255, 0.11), transparent 28rem),
    radial-gradient(circle at 90% 40%, rgba(255, 255, 255, 0.06), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

a {
  color: inherit;
}

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

.ambient {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

.ambient-glow {
  position: absolute;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .12;
}

.ambient-glow-one {
  top: -16rem;
  left: -12rem;
  background: var(--accent);
}

.ambient-glow-two {
  right: -15rem;
  top: 38%;
  background: var(--accent-muted);
}

.star-field {
  position: absolute;
  inset: 0;
}

.star {
  position: absolute;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: rgba(245, 245, 245, .9);
  box-shadow: 0 0 8px rgba(255, 255, 255, .75);
  animation: twinkle var(--twinkle) ease-in-out var(--delay) infinite, drift var(--drift-time) ease-in-out var(--delay) infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: .18; }
  50% { opacity: .95; }
}

@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(var(--dx), var(--dy), 0); }
}

.section-shell,
.nav-shell,
.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 5, 5, .82);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -.03em;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.brand-mark {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 11px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 0 28px rgba(255, 255, 255, .12);
}

.brand-mark img {
  width: 22px;
  height: 22px;
}

.desktop-nav {
  display: flex;
  gap: 30px;
}

.desktop-nav a,
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: .9rem;
  transition: color .2s ease;
}

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

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s ease;
}

.nav-cta {
  padding: 10px 17px;
  background: var(--white);
  color: var(--dark);
  font-size: .86rem;
}

.nav-cta:hover,
.button:hover,
.store-button:hover {
  transform: translateY(-3px);
}

.hero {
  min-height: calc(100svh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  gap: clamp(42px, 7vw, 100px);
  align-items: center;
  padding-block: clamp(70px, 10vw, 130px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 20px;
  color: var(--accent);
  font-family: var(--display);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
}

.eyebrow span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
}

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(3.35rem, 6.6vw, 6.7rem);
  line-height: .96;
  letter-spacing: -.075em;
}

h1 em {
  color: var(--accent);
  font-style: normal;
}

.hero-lead {
  max-width: 670px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.5vw, 1.25rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.button {
  min-height: 52px;
  padding: 0 23px;
}

.button-primary {
  background: var(--white);
  color: var(--dark);
  box-shadow: 0 14px 40px rgba(255, 255, 255, .16);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .025);
  color: var(--text);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, .34);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #b8b8b8;
  font-size: .82rem;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(255, 255, 255, .7);
}

.hero-visual {
  position: relative;
  min-height: 660px;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .12), transparent 66%);
  filter: blur(8px);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
}

.orbit-one {
  width: 480px;
  height: 480px;
  animation: orbit-spin 28s linear infinite;
}

.orbit-two {
  width: 350px;
  height: 350px;
  border-style: dashed;
  animation: orbit-spin 22s linear infinite reverse;
}

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

.phone-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 34px;
  background: #050505;
  box-shadow: 0 38px 90px rgba(0, 0, 0, .52);
}

.phone-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-card-front {
  width: 275px;
  aspect-ratio: 1179 / 2556;
  z-index: 3;
  transform: translateX(-38px) rotate(-3deg);
  animation: phone-float 7s ease-in-out infinite;
}

.phone-card-back {
  width: 225px;
  aspect-ratio: 1179 / 2556;
  z-index: 2;
  opacity: .72;
  transform: translate(125px, 30px) rotate(7deg);
}

@keyframes phone-float {
  0%, 100% { transform: translateX(-38px) translateY(0) rotate(-3deg); }
  50% { transform: translateX(-38px) translateY(-12px) rotate(-2deg); }
}

.signal-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  max-width: 210px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 15px;
  background: rgba(18, 18, 18, .86);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .28);
  backdrop-filter: blur(14px);
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.35;
}

.signal-card strong {
  display: block;
  color: var(--text);
}

.signal-card-top {
  top: 17%;
  left: 0;
}

.signal-card-bottom {
  right: -8px;
  bottom: 20%;
}

.signal-icon,
.signal-pulse {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: var(--accent);
}

.signal-pulse {
  width: 10px;
  height: 10px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, .09), 0 0 18px var(--accent);
}

.statement {
  padding-block: clamp(100px, 13vw, 180px);
  border-top: 1px solid var(--line);
  text-align: center;
}

.statement h2 {
  max-width: 950px;
  margin: 0 auto 28px;
  font-size: clamp(2.35rem, 5.3vw, 5.4rem);
  line-height: 1.05;
  letter-spacing: -.06em;
}

.statement h2 span {
  color: var(--accent);
}

.statement > p:last-child {
  max-width: 820px;
  margin: auto;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  line-height: 1.8;
}

.difference,
.mission,
.product {
  padding-block: clamp(90px, 11vw, 150px);
}

.section-heading {
  max-width: 660px;
  margin-bottom: 54px;
}

.section-heading.center {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.mission-copy h2,
.download h2 {
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 4.5vw, 4.7rem);
  line-height: 1.04;
  letter-spacing: -.06em;
}

.section-heading > p:last-child,
.mission-copy > p,
.download > div > p:last-child {
  color: var(--muted);
  line-height: 1.75;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.feature-card {
  position: relative;
  min-height: 330px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(24, 24, 24, .88), rgba(10, 10, 10, .68));
  transition: transform .35s var(--ease), border-color .35s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, .32);
}

.feature-card.featured {
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, .12), transparent 45%),
    linear-gradient(145deg, rgba(28, 28, 28, .96), rgba(10, 10, 10, .8));
}

.card-number {
  position: absolute;
  right: 28px;
  top: 26px;
  color: rgba(255, 255, 255, .25);
  font-family: var(--display);
  font-size: .75rem;
  letter-spacing: .12em;
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 54px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 15px;
  background: rgba(255, 255, 255, .08);
  position: relative;
}

.shield-icon::before {
  content: "";
  position: absolute;
  inset: 10px 13px 9px;
  border: 2px solid var(--accent);
  border-radius: 10px 10px 13px 13px;
  clip-path: polygon(50% 0, 100% 18%, 90% 75%, 50% 100%, 10% 75%, 0 18%);
}

.identity-icon::before,
.identity-icon::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border: 2px solid var(--accent);
  border-radius: 50%;
}

.identity-icon::before { top: 9px; left: 8px; }
.identity-icon::after { right: 8px; bottom: 9px; }

.filter-icon::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 16px;
  top: 13px;
  left: 11px;
  border-top: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: skewY(-22deg);
}

.focus-icon::before {
  content: "";
  position: absolute;
  inset: 11px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, .09);
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  letter-spacing: -.04em;
}

.feature-card p {
  max-width: 480px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.mission {
  display: grid;
  grid-template-columns: minmax(340px, .9fr) minmax(0, 1.1fr);
  gap: clamp(60px, 9vw, 130px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.mission-visual {
  min-height: 620px;
  position: relative;
  display: grid;
  place-items: center;
}

.mission-visual::before {
  content: "";
  position: absolute;
  width: 410px;
  height: 410px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  box-shadow: inset 0 0 80px rgba(255, 255, 255, .05);
}

.mission-device {
  width: 255px;
  aspect-ratio: 1179 / 2556;
  overflow: hidden;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 32px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .48);
}

.mission-device img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.identity-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(18, 18, 18, .9);
  color: #e5e5e5;
  font-size: .78rem;
  box-shadow: 0 14px 35px rgba(0, 0, 0, .25);
}

.identity-chip span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: var(--accent);
  font-weight: 700;
}

.chip-personal { left: 2%; top: 25%; }
.chip-creator { right: 0; top: 36%; }
.chip-business { left: 8%; bottom: 22%; }

.mission-copy > p {
  margin-bottom: 18px;
  font-size: 1.02rem;
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.audience-list span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #c8c8c8;
  font-size: .76rem;
}

.vision {
  position: relative;
  padding: clamp(70px, 10vw, 120px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(28, 28, 28, .86), rgba(8, 8, 8, .92)),
    var(--panel);
  text-align: center;
}

.vision-grid {
  position: absolute;
  inset: 0;
  opacity: .09;
  background-image:
    linear-gradient(rgba(255, 255, 255, .4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .4) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at center, black, transparent 73%);
}

.vision > *:not(.vision-grid) {
  position: relative;
}

.vision blockquote {
  max-width: 920px;
  margin: 0 auto 30px;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5.4vw, 5.8rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -.065em;
}

.vision > p:not(.section-kicker) {
  max-width: 810px;
  margin: 0 auto 16px;
  color: #bdbdbd;
  line-height: 1.8;
}

.product-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.product-item {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .012);
  transition: background .3s ease;
}

.product-item:hover {
  background: rgba(255, 255, 255, .045);
}

.product-item > span {
  margin-bottom: auto;
  color: rgba(255, 255, 255, .3);
  font-family: var(--display);
  font-size: .7rem;
}

.product-item strong {
  margin-bottom: 4px;
  font-family: var(--display);
  font-size: 1.35rem;
}

.product-item small {
  color: var(--muted);
}

.download {
  margin-bottom: clamp(80px, 10vw, 130px);
  padding: clamp(38px, 6vw, 70px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 30px;
  background: linear-gradient(120deg, rgba(28, 28, 28, .95), rgba(10, 10, 10, .9));
}

.download > div:first-child {
  max-width: 650px;
}

.download h2 {
  margin-bottom: 16px;
}

.download > div > p:last-child {
  margin-bottom: 0;
}

.store-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 0 0 205px;
}

.store-button {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--dark);
  text-decoration: none;
  transition: transform .25s var(--ease);
}

.store-button-outline {
  border: 1px solid rgba(255, 255, 255, .24);
  background: transparent;
  color: var(--text);
}

.store-symbol,
.play-symbol {
  width: 28px;
  text-align: center;
  font-size: 1.25rem;
}

.store-button span:last-child {
  display: flex;
  flex-direction: column;
}

.store-button small {
  font-size: .62rem;
  line-height: 1.1;
}

.store-button strong {
  font-family: var(--display);
  font-size: 1rem;
  line-height: 1.3;
}

footer {
  border-top: 1px solid var(--line);
}

.footer-inner {
  min-height: 140px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 30px;
}

.footer-inner > p {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.copyright {
  white-space: nowrap;
}

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

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

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 800px;
  }

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

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

  .mission-copy {
    max-width: 800px;
  }

  .download {
    align-items: flex-start;
    flex-direction: column;
  }

  .store-actions {
    width: 100%;
    flex: auto;
    flex-direction: row;
  }

  .store-button {
    flex: 1;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    padding-block: 32px;
  }

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

@media (max-width: 720px) {
  html {
    scroll-padding-top: 78px;
  }

  body {
    background:
      radial-gradient(circle at 50% -6rem, rgba(255, 255, 255, 0.1), transparent 22rem),
      var(--bg);
  }

  .section-shell,
  .nav-shell,
  .footer-inner {
    width: min(100% - 24px, 1180px);
  }

  .nav-shell {
    min-height: 64px;
    gap: 12px;
  }

  .desktop-nav {
    display: none;
  }

  .brand {
    flex: 0 0 auto;
    font-size: .9rem;
  }

  .brand-mark {
    width: 31px;
    height: 31px;
    border-radius: 10px;
  }

  .brand-mark img {
    width: 20px;
    height: 20px;
  }

  .nav-cta {
    min-height: 38px;
    padding: 8px 12px;
    font-size: .74rem;
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
    gap: 0;
    padding-block: 22px 36px;
  }

  .hero-copy {
    position: relative;
    z-index: 5;
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 13px;
    font-size: .62rem;
    letter-spacing: .12em;
  }

  .eyebrow {
    max-width: 100%;
    padding: 8px 10px;
    gap: 8px;
  }

  h1 {
    margin-bottom: 16px;
    font-size: clamp(2.42rem, 12.4vw, 3.75rem);
    line-height: .98;
    letter-spacing: -.07em;
  }

  .hero-lead {
    margin-bottom: 20px;
    font-size: .96rem;
    line-height: 1.55;
  }

  .hero-actions {
    flex-direction: column;
    gap: 9px;
    margin-bottom: 18px;
  }

  .button {
    width: 100%;
    min-height: 47px;
    padding-inline: 18px;
    font-size: .94rem;
  }

  .trust-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    font-size: .82rem;
  }

  .hero-visual {
    min-height: 278px;
    margin: -4px -12px -4px;
    overflow: hidden;
    transform: none;
  }

  .hero-visual::before {
    width: 230px;
    height: 230px;
  }

  .phone-card-front {
    width: min(142px, 38vw);
    border-radius: 21px;
  }

  .phone-card-back {
    width: min(114px, 31vw);
    border-radius: 19px;
    transform: translate(50px, 12px) rotate(7deg);
  }

  .orbit-one {
    width: 230px;
    height: 230px;
  }

  .orbit-two {
    width: 170px;
    height: 170px;
  }

  .signal-card {
    max-width: 128px;
    padding: 7px 8px;
    gap: 7px;
    font-size: .56rem;
  }

  .signal-card-top {
    left: 6%;
    top: 10%;
  }

  .signal-card-bottom {
    right: 5%;
    bottom: 8%;
  }

  .signal-icon,
  .signal-pulse {
    width: 21px;
    height: 21px;
  }

  .statement,
  .difference,
  .mission,
  .product {
    padding-block: 60px;
  }

  .statement {
    text-align: left;
  }

  .statement h2,
  .section-heading h2,
  .mission-copy h2,
  .download h2 {
    font-size: clamp(1.95rem, 10.5vw, 3.15rem);
    letter-spacing: -.055em;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .feature-grid,
  .product-strip {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 245px;
    padding: 24px;
    border-radius: 21px;
  }

  .feature-icon {
    margin-bottom: 34px;
  }

  .mission-visual {
    min-height: 380px;
    order: 2;
  }

  .mission-device {
    width: 170px;
    border-radius: 26px;
  }

  .mission-visual::before {
    width: 275px;
    height: 275px;
  }

  .identity-chip {
    padding: 8px 10px;
    font-size: .7rem;
  }

  .identity-chip span {
    width: 22px;
    height: 22px;
  }

  .chip-personal { left: 0; top: 20%; }
  .chip-creator { right: 0; top: 34%; }
  .chip-business { left: 3%; bottom: 19%; }

  .vision {
    width: calc(100% - 24px);
    padding: 54px 20px;
    border-radius: 24px;
  }

  .vision blockquote {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

  .product-item {
    min-height: 128px;
    padding: 22px;
  }

  .download {
    margin-bottom: 64px;
    padding: 30px 20px;
    border-radius: 24px;
    gap: 24px;
  }

  .store-actions {
    width: 100%;
    flex-direction: column;
  }

  .store-button {
    width: 100%;
    min-height: 58px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: auto;
  }

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

@media (max-width: 390px) {
  .brand {
    gap: 8px;
    font-size: .84rem;
  }

  .nav-cta {
    padding-inline: 10px;
    font-size: .7rem;
  }

  h1 {
    font-size: clamp(2.22rem, 12vw, 3.05rem);
  }

  .hero {
    padding-top: 22px;
  }

  .hero-lead {
    font-size: .92rem;
  }

  .button {
    min-height: 45px;
    font-size: .9rem;
  }

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

  .phone-card-front {
    width: min(132px, 36vw);
  }

  .phone-card-back {
    width: min(106px, 30vw);
    transform: translate(46px, 12px) rotate(7deg);
  }

  .signal-card {
    max-width: 120px;
    font-size: .54rem;
  }
}

@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;
  }
}
