:root {
  color-scheme: light;
  --bg: #f3f4f4;
  --surface: #ffffff;
  --surface-soft: #f9fafb;
  --ink: #1d1d1f;
  --muted: #69707d;
  --quiet: #8b919d;
  --rose: #853953;
  --rose-2: #9b425f;
  --plum: #612d53;
  --line: #dde3ea;
  --line-soft: rgba(29, 29, 31, 0.08);
  --pink-soft: #f8edf2;
  --blue: #28bff0;
  --green: #24c26a;
  --yellow: #f7c95d;
  --shadow: 0 26px 80px rgba(29, 29, 31, 0.12);
  --shadow-soft: 0 14px 42px rgba(29, 29, 31, 0.07);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(243, 244, 244, 0.92) 48%, #eef1f4),
    var(--bg);
  color: var(--ink);
  font-family: ui-rounded, "SF Pro Rounded", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: geometricPrecision;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(29, 29, 31, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 29, 31, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 76%, transparent);
}

a {
  color: inherit;
}

.site-glow {
  position: fixed;
  z-index: -2;
  width: 44vw;
  max-width: 620px;
  aspect-ratio: 1;
  border-radius: 999px;
  filter: blur(28px);
  pointer-events: none;
}

.glow-one {
  top: -12vw;
  left: -14vw;
  background: radial-gradient(circle, rgba(133, 57, 83, 0.18), transparent 66%);
}

.glow-two {
  top: 2vw;
  right: -18vw;
  background: radial-gradient(circle, rgba(40, 191, 240, 0.18), transparent 64%);
}

.shell {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 950;
  letter-spacing: -0.05em;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--plum), var(--rose));
  box-shadow: 0 12px 28px rgba(133, 57, 83, 0.24);
}

.brand-mark span {
  position: absolute;
  width: 17px;
  height: 22px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.14);
}

.brand-mark span:nth-child(1) {
  transform: translate(-5px, 4px);
}

.brand-mark span:nth-child(2) {
  transform: translate(0, 0);
}

.brand-mark span:nth-child(3) {
  transform: translate(5px, -4px);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 30px rgba(29, 29, 31, 0.05);
}

.nav-links a,
.nav-cta {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.nav-links a:hover,
.nav-cta:hover {
  color: var(--rose);
  background: var(--pink-soft);
}

.nav-cta {
  color: white;
  background: var(--rose);
  box-shadow: 0 12px 30px rgba(133, 57, 83, 0.18);
}

.nav-cta:hover {
  color: white;
  background: var(--plum);
}

.hero {
  display: grid;
  min-height: calc(100vh - 78px);
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
  padding: 46px 0 86px;
}

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

.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--rose);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: -0.01em;
  box-shadow: 0 10px 30px rgba(29, 29, 31, 0.04);
}

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

h1 {
  max-width: 780px;
  margin: 20px 0 20px;
  font-size: clamp(52px, 8vw, 96px);
  line-height: 0.91;
  letter-spacing: -0.082em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

h3 {
  margin-bottom: 9px;
  font-size: 23px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.lead {
  max-width: 650px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.42;
  font-weight: 720;
  letter-spacing: -0.02em;
}

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

.button,
.app-store-button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-weight: 920;
  text-decoration: none;
}

.button {
  padding: 0 20px;
}

.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 32px rgba(29, 29, 31, 0.06);
}

.app-store-button {
  gap: 12px;
  min-width: 206px;
  padding: 8px 18px;
  color: white;
  background: linear-gradient(135deg, #101014, #2b2530 46%, var(--plum));
  box-shadow: 0 18px 42px rgba(29, 29, 31, 0.22);
}

.app-store-button small,
.app-store-button strong {
  display: block;
  line-height: 1;
}

.app-store-button small {
  margin-bottom: 4px;
  font-size: 11px;
  opacity: 0.75;
}

.app-store-button strong {
  font-size: 22px;
  letter-spacing: -0.04em;
}

.apple-mark {
  position: relative;
  width: 25px;
  height: 30px;
}

.apple-mark::before {
  position: absolute;
  inset: 7px 2px 0;
  content: "";
  border-radius: 48% 48% 44% 44%;
  background: #fff;
}

.apple-mark::after {
  position: absolute;
  top: 0;
  left: 14px;
  width: 12px;
  height: 8px;
  content: "";
  border-radius: 10px 10px 2px 10px;
  background: #fff;
  transform: rotate(-24deg);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.trust-row span {
  padding: 8px 11px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.hero-studio {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 42px;
  background:
    radial-gradient(circle at 22% 20%, rgba(255, 255, 255, 0.9), transparent 16rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.36));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-studio::before {
  position: absolute;
  inset: 22px;
  content: "";
  border: 1px dashed rgba(133, 57, 83, 0.16);
  border-radius: 32px;
}

.phone-stage {
  position: relative;
  width: min(430px, 88vw);
  height: 540px;
}

.phone {
  position: absolute;
  width: 224px;
  aspect-ratio: 1290 / 2796;
  padding: 8px;
  border-radius: 42px;
  background: linear-gradient(145deg, #020203, #27252a 48%, #070707);
  box-shadow: 0 28px 70px rgba(29, 29, 31, 0.22);
}

.phone::after {
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 84px;
  height: 4px;
  content: "";
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  transform: translateX(-50%);
}

.phone-back {
  right: 18px;
  top: 54px;
  transform: rotate(9deg);
  opacity: 0.92;
}

.phone-front {
  left: 34px;
  top: 14px;
  z-index: 2;
  transform: rotate(-7deg);
}

.screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 34px;
}

.cyan-screen {
  background:
    radial-gradient(circle at 20% 12%, rgba(255, 255, 255, 0.65), transparent 6rem),
    linear-gradient(165deg, #1dc5f4, #20b8ef 43%, #853953);
}

.green-screen {
  background:
    radial-gradient(circle at 78% 16%, rgba(255, 255, 255, 0.5), transparent 5rem),
    linear-gradient(145deg, #2bd07a, #18a75c);
}

.island {
  position: absolute;
  top: 17px;
  left: 50%;
  z-index: 2;
  width: 86px;
  height: 25px;
  border-radius: 999px;
  background: #020203;
  transform: translateX(-50%);
}

.screen-text {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 32px;
  color: white;
  text-align: center;
}

.screen-text span {
  font-size: 18px;
  font-weight: 850;
  opacity: 0.85;
}

.screen-text strong {
  display: block;
  font-size: 48px;
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.mock-toolbar {
  position: absolute;
  right: 14px;
  bottom: 22px;
  left: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 7px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(12px);
}

.mock-toolbar span {
  padding: 8px 2px;
  border-radius: 12px;
  background: white;
  color: var(--ink);
  font-size: 11px;
  font-weight: 950;
  text-align: center;
}

.mock-logo {
  position: absolute;
  top: 90px;
  right: 24px;
  left: 24px;
  color: white;
  font-size: 38px;
  font-weight: 950;
  letter-spacing: -0.06em;
  text-align: center;
}

.mock-card {
  position: absolute;
  right: 22px;
  left: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.small-card {
  top: 178px;
  height: 96px;
}

.wide-card {
  bottom: 76px;
  height: 150px;
}

.floating-chip,
.sticker {
  position: absolute;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 44px rgba(29, 29, 31, 0.12);
  backdrop-filter: blur(14px);
}

.floating-chip {
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--rose);
  font-size: 13px;
  font-weight: 950;
}

.chip-left {
  left: 28px;
  top: 92px;
}

.chip-right {
  right: 32px;
  bottom: 106px;
}

.sticker {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
  color: transparent;
  overflow: hidden;
}

.sticker::before {
  color: var(--rose);
  font-size: 34px;
  font-weight: 950;
}

.sticker-rocket {
  right: 64px;
  top: 72px;
  transform: rotate(9deg);
}

.sticker-rocket::before {
  content: "^";
  transform: rotate(38deg);
}

.sticker-star {
  left: 56px;
  bottom: 88px;
  transform: rotate(-12deg);
}

.sticker-star::before {
  content: "*";
  font-size: 56px;
}

.section {
  padding: 94px 0;
}

.split-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 32px;
  align-items: start;
}

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

.card {
  position: relative;
  min-height: 234px;
  padding: 24px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.card::after {
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 120px;
  height: 120px;
  content: "";
  border-radius: 999px;
  background: rgba(133, 57, 83, 0.08);
}

.card-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 44px;
  border-radius: 15px;
  background: var(--pink-soft);
  color: var(--rose);
  font-size: 14px;
  font-weight: 950;
}

.card p,
.process p,
.legal p,
.legal li,
.footer-grid p {
  color: var(--muted);
  line-height: 1.62;
  font-weight: 660;
}

.studio-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: 14px;
  width: min(1280px, calc(100% - 24px));
  margin: 20px auto;
  overflow-x: auto;
  padding: 12px;
}

.strip-card {
  min-height: 280px;
  padding: 22px;
  border-radius: 32px;
  color: white;
  box-shadow: var(--shadow-soft);
}

.strip-card span {
  display: block;
  margin-bottom: 112px;
  font-size: 13px;
  font-weight: 900;
  opacity: 0.78;
}

.strip-card strong {
  display: block;
  max-width: 190px;
  font-size: 34px;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.plum {
  background: linear-gradient(145deg, var(--plum), var(--rose));
}

.blue {
  background: linear-gradient(145deg, #16bff2, #4da3ff);
}

.yellow {
  color: var(--ink);
  background: linear-gradient(145deg, #ffe6a2, var(--yellow));
}

.dark {
  background: linear-gradient(145deg, #111114, #35303b);
}

.process {
  text-align: center;
}

.process h2 {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
  text-align: left;
}

.process-grid article {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-soft);
}

.process-grid b {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
  border-radius: 999px;
  color: white;
  background: var(--rose);
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  margin-bottom: 78px;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line-soft);
  border-radius: 38px;
  background:
    radial-gradient(circle at 88% 12%, rgba(133, 57, 83, 0.13), transparent 18rem),
    rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.final-cta h2 {
  max-width: 820px;
  margin-bottom: 0;
}

footer {
  padding: 34px 0 42px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: start;
}

.footer-grid p {
  max-width: 460px;
  margin: 14px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.copyright {
  margin-top: 32px;
  color: var(--quiet);
  font-size: 13px;
  font-weight: 700;
}

.legal-shell {
  max-width: 920px;
  padding: 56px 0 96px;
}

.legal-card {
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid var(--line-soft);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.legal h1 {
  margin: 20px 0 18px;
  font-size: clamp(42px, 6vw, 68px);
}

.legal h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.legal ul {
  padding-left: 22px;
}

.legal li {
  margin: 9px 0;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.support-tile {
  padding: 20px;
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  background: var(--surface-soft);
}

.support-tile strong {
  display: block;
  margin-bottom: 7px;
  font-size: 18px;
}

.contact-box {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding: 18px;
  border-radius: 24px;
  background: var(--pink-soft);
}

.contact-box a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 0 16px;
  border-radius: 14px;
  color: white;
  background: var(--rose);
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 920px) {
  .nav {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .split-section,
  .final-cta,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-studio {
    min-height: 560px;
  }

  .final-cta .app-store-button {
    width: fit-content;
  }
}

@media (max-width: 700px) {
  .shell {
    width: min(100% - 24px, 1160px);
  }

  .hero {
    padding-top: 28px;
  }

  h1 {
    font-size: clamp(46px, 15vw, 70px);
  }

  .hero-studio {
    min-height: 500px;
    border-radius: 32px;
  }

  .phone-stage {
    width: 320px;
    height: 460px;
  }

  .phone {
    width: 188px;
  }

  .phone-front {
    left: 12px;
  }

  .phone-back {
    right: 10px;
  }

  .feature-grid,
  .process-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }

  .studio-strip {
    grid-template-columns: repeat(4, 230px);
  }

  .strip-card {
    min-height: 230px;
  }

  .strip-card span {
    margin-bottom: 82px;
  }

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