@font-face {
  font-family: "Lzy Sans";
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: local("SF Pro Display"), local("Inter Variable"), local("Inter");
}

:root {
  color-scheme: dark;
  --ink: #f7f6fb;
  --muted: #aaa7b7;
  --subtle: #777483;
  --canvas: #09090d;
  --canvas-soft: #111116;
  --panel: rgba(24, 23, 31, 0.76);
  --panel-solid: #17161e;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.19);
  --coral: #ff586c;
  --rose: #ff3e8a;
  --violet: #9b5cff;
  --amber: #ffae50;
  --green: #70deb0;
  --danger: #ff5d72;
  --brand-gradient: linear-gradient(115deg, #ff755c 0%, #ff3f8d 44%, #8a55ff 100%);
  --max: 1180px;
  --nav-height: 74px;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.42);
  font-family: "Lzy Sans", Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 24px);
  background: var(--canvas);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 80% -10%, rgba(133, 75, 255, 0.14), transparent 32rem),
    radial-gradient(circle at -8% 28%, rgba(255, 69, 119, 0.1), transparent 35rem),
    var(--canvas);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background:
    repeating-linear-gradient(115deg, transparent 0 3px, rgba(255, 255, 255, 0.012) 3px 4px),
    repeating-linear-gradient(25deg, transparent 0 5px, rgba(255, 255, 255, 0.009) 5px 6px);
  content: "";
  opacity: 0.55;
  pointer-events: none;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
select,
input {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(255, 112, 132, 0.75);
  outline-offset: 4px;
}

::selection {
  background: rgba(255, 78, 129, 0.35);
  color: #fff;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  background: #fff;
  color: #0d0c10;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(9, 9, 13, 0.76);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  backdrop-filter: blur(20px) saturate(140%);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 18px;
  font-weight: 820;
  letter-spacing: -0.025em;
}

.brand img {
  width: 35px;
  height: 35px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  box-shadow: 0 7px 28px rgba(255, 53, 124, 0.22);
}

.brand small {
  margin-left: -5px;
  color: var(--subtle);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.nav-links > a {
  position: relative;
  color: #c9c6d0;
  font-size: 14px;
  font-weight: 640;
}

.nav-links > a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--brand-gradient);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-links > a:hover,
.nav-links > a[aria-current="page"] {
  color: #fff;
}

.nav-links > a:hover::after,
.nav-links > a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

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

.language-picker {
  position: relative;
}

.language-picker select {
  min-height: 38px;
  padding: 0 32px 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  appearance: none;
  background: rgba(255, 255, 255, 0.055);
  cursor: pointer;
  font-size: 12px;
  font-weight: 730;
  letter-spacing: 0.04em;
}

.language-picker::after {
  position: absolute;
  top: 50%;
  right: 12px;
  content: "⌄";
  font-size: 12px;
  pointer-events: none;
  transform: translateY(-58%);
}

.nav-cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: #f5f3f8;
  color: #15131a;
  font-size: 13px;
  font-weight: 780;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.nav-cta:hover {
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.13);
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.055);
  cursor: pointer;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  display: block;
  width: 17px;
  height: 1.5px;
  margin: 4px auto;
  border-radius: 999px;
  background: #fff;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button[aria-expanded="true"] span {
  opacity: 0;
}

.menu-button[aria-expanded="true"]::before {
  transform: translateY(5.5px) rotate(45deg);
}

.menu-button[aria-expanded="true"]::after {
  transform: translateY(-5.5px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 880px;
  align-items: center;
  grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1.12fr);
  gap: 50px;
  padding-top: calc(var(--nav-height) + 78px);
  padding-bottom: 96px;
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -17%;
  bottom: 10%;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 86, 117, 0.09), transparent 65%);
  content: "";
  filter: blur(10px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: #e3dfe9;
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 22px;
  height: 1px;
  background: var(--brand-gradient);
  content: "";
}

.hero h1,
.section-heading h2,
.legal-hero h1 {
  margin: 0;
  text-wrap: balance;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(3.3rem, 6.4vw, 6.15rem);
  font-weight: 780;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.gradient-text {
  background: linear-gradient(105deg, #ff8c71 4%, #ff4a8c 40%, #ac78ff 91%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lede {
  max-width: 600px;
  margin: 26px 0 0;
  color: #bbb8c4;
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  cursor: pointer;
  font-size: 14px;
  font-weight: 760;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-2px);
}

.button-primary {
  border-color: transparent;
  background: var(--brand-gradient);
  box-shadow: 0 16px 38px rgba(255, 62, 138, 0.21);
  color: #fff;
}

.button-primary:hover {
  border-color: transparent;
  background: var(--brand-gradient);
  box-shadow: 0 20px 46px rgba(255, 62, 138, 0.3);
}

.button-danger {
  border-color: rgba(255, 91, 113, 0.25);
  background: rgba(255, 91, 113, 0.14);
  color: #ff93a2;
}

.button-danger:hover {
  border-color: rgba(255, 91, 113, 0.4);
  background: rgba(255, 91, 113, 0.21);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  padding: 0;
  color: var(--subtle);
  font-size: 12px;
  font-weight: 640;
  list-style: none;
}

.hero-proof li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-proof i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(112, 222, 176, 0.1);
}

.hero-stage {
  position: relative;
  min-height: 690px;
  perspective: 1000px;
}

.phone {
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 50%;
  width: min(390px, 72vw);
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 54px;
  background: linear-gradient(145deg, #393741, #111015 17%, #09090c 83%, #2d2a32);
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  transform: translateX(-46%) rotateY(-5deg) rotateX(1deg);
}

.phone-screen {
  position: relative;
  overflow: hidden;
  aspect-ratio: 390 / 755;
  border-radius: 47px;
  background: #0b0b0e;
}

.dynamic-island {
  position: absolute;
  z-index: 8;
  top: 13px;
  left: 50%;
  width: 92px;
  height: 26px;
  border-radius: 999px;
  background: #030303;
  transform: translateX(-50%);
}

.editor-topbar {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  height: 62px;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 17px 10px;
  background: linear-gradient(#09090dd9, transparent);
  font-size: 11px;
  font-weight: 750;
}

.topbar-done {
  color: #ff7789;
}

.compare {
  position: relative;
  height: 67.5%;
  margin-top: 52px;
  overflow: hidden;
  background: #16151a;
  touch-action: pan-y;
}

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

.compare-after {
  position: absolute;
  inset: 0;
  width: 58%;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.82);
}

.compare-after img {
  width: calc(100% / 0.58);
  max-width: none;
  filter: saturate(1.06) contrast(1.035) brightness(1.03);
}

.compare-handle {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 58%;
  display: grid;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: rgba(13, 12, 17, 0.78);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.32);
  color: #fff;
  font-size: 12px;
  place-items: center;
  transform: translate(-50%, -50%);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.compare input {
  position: absolute;
  z-index: 6;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: ew-resize;
  opacity: 0;
}

.editor-dock {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 27.5%;
  padding: 15px 13px 12px;
  border-top: 1px solid var(--line);
  background: rgba(14, 13, 18, 0.98);
}

.dock-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 11px;
  font-size: 10px;
  font-weight: 740;
}

.dock-title span:last-child {
  color: #ff7186;
}

.filter-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.filter-chip {
  font-size: 8px;
  text-align: center;
}

.filter-chip img {
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 4px;
  border: 1px solid transparent;
  border-radius: 9px;
  object-fit: cover;
}

.filter-chip.active img {
  border-color: #ff6b81;
  box-shadow: 0 0 0 2px rgba(255, 107, 129, 0.16);
}

.filter-chip:nth-child(2) img {
  filter: saturate(0.82) contrast(1.06);
}

.filter-chip:nth-child(3) img {
  filter: sepia(0.22) saturate(1.15);
}

.filter-chip:nth-child(4) img {
  filter: saturate(1.25) contrast(1.08);
}

.dock-tabs {
  display: flex;
  justify-content: space-around;
  margin-top: 14px;
  color: #76727f;
  font-size: 9px;
}

.dock-tabs .active {
  color: #ff7186;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(27, 25, 34, 0.74);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
}

.floating-card strong {
  display: block;
  font-size: 12px;
}

.floating-card small {
  display: block;
  color: var(--muted);
  font-size: 10px;
}

.floating-card .orb {
  display: grid;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: linear-gradient(145deg, rgba(255, 91, 111, 0.3), rgba(142, 81, 255, 0.36));
  color: #fff;
  font-size: 14px;
  place-items: center;
}

.floating-card.ai {
  top: 132px;
  right: -13px;
  animation: float-card 6s ease-in-out infinite;
}

.floating-card.private {
  right: 18px;
  bottom: 98px;
  animation: float-card 6s 1.1s ease-in-out infinite;
}

.floating-card.color {
  bottom: 172px;
  left: -12px;
  animation: float-card 6s 0.4s ease-in-out infinite;
}

@keyframes float-card {
  50% {
    transform: translateY(-8px);
  }
}

.section {
  padding: 116px 0;
}

.section-tight {
  padding: 80px 0;
}

.section-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr minmax(280px, 0.55fr);
  gap: 56px;
  margin-bottom: 50px;
}

.section-heading h2 {
  max-width: 720px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 740;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.section-heading p {
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

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

.bento-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(30, 29, 39, 0.9), rgba(16, 15, 21, 0.96));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
}

.bento-card::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: radial-gradient(circle at 80% -20%, rgba(255, 255, 255, 0.08), transparent 42%);
  content: "";
  pointer-events: none;
}

.bento-card > * {
  position: relative;
  z-index: 1;
}

.bento-card h3 {
  max-width: 370px;
  margin: 13px 0 7px;
  font-size: 24px;
  letter-spacing: -0.035em;
  line-height: 1.16;
}

.bento-card p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.card-kicker {
  color: #e8e3ef;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.bento-editor {
  grid-column: span 7;
  min-height: 510px;
  background:
    linear-gradient(0deg, rgba(10, 9, 13, 0.95) 0%, rgba(10, 9, 13, 0.04) 66%),
    url("./cinematic-street.jpg") center / cover;
}

.bento-editor .card-copy {
  position: absolute;
  right: 31px;
  bottom: 31px;
  left: 31px;
}

.mini-adjust {
  display: flex;
  width: min(370px, 92%);
  align-items: center;
  gap: 12px;
  margin-top: 19px;
  color: #d9d5df;
  font-size: 11px;
}

.mini-adjust .track {
  position: relative;
  height: 3px;
  flex: 1;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.24);
}

.mini-adjust .track::before {
  position: absolute;
  top: 50%;
  left: 64%;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  content: "";
  transform: translate(-50%, -50%);
}

.bento-ai {
  grid-column: span 5;
  min-height: 510px;
  background:
    radial-gradient(circle at 80% 18%, rgba(157, 89, 255, 0.26), transparent 37%),
    linear-gradient(145deg, #211728, #121116 70%);
}

.ai-orbit {
  position: relative;
  width: 245px;
  height: 245px;
  margin: 33px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.ai-orbit::before,
.ai-orbit::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
}

.ai-orbit::before {
  inset: 27px;
}

.ai-orbit::after {
  inset: 56px;
}

.ai-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 94px;
  height: 94px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: #1a1821;
  box-shadow: 0 0 60px rgba(159, 87, 255, 0.24);
  place-items: center;
  transform: translate(-50%, -50%);
}

.ai-core img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.orbit-node {
  position: absolute;
  display: grid;
  width: 37px;
  height: 37px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: #24212c;
  font-size: 13px;
  place-items: center;
}

.orbit-node:nth-child(2) {
  top: 8px;
  left: 25px;
}

.orbit-node:nth-child(3) {
  top: 55px;
  right: -4px;
}

.orbit-node:nth-child(4) {
  right: 18px;
  bottom: 18px;
}

.orbit-node:nth-child(5) {
  bottom: 5px;
  left: 44px;
}

.orbit-node:nth-child(6) {
  top: 92px;
  left: -17px;
}

.bento-camera,
.bento-beauty,
.bento-privacy {
  grid-column: span 4;
}

.meter {
  display: flex;
  align-items: end;
  gap: 5px;
  height: 72px;
  margin-top: 34px;
}

.meter span {
  width: 8px;
  border-radius: 99px;
  background: linear-gradient(#ff5c7e, #9957ff);
  opacity: 0.62;
}

.meter span:nth-child(1) { height: 26%; }
.meter span:nth-child(2) { height: 40%; }
.meter span:nth-child(3) { height: 74%; }
.meter span:nth-child(4) { height: 54%; }
.meter span:nth-child(5) { height: 91%; }
.meter span:nth-child(6) { height: 67%; }
.meter span:nth-child(7) { height: 47%; }
.meter span:nth-child(8) { height: 78%; }
.meter span:nth-child(9) { height: 35%; }
.meter span:nth-child(10) { height: 57%; }
.meter span:nth-child(11) { height: 28%; }

.beauty-face {
  position: absolute;
  right: -25px;
  bottom: -18px;
  width: 57%;
  height: 69%;
  border-radius: 42% 0 0;
  object-fit: cover;
  object-position: 51% 25%;
  filter: saturate(0.88);
  opacity: 0.74;
}

.privacy-ring {
  display: grid;
  width: 96px;
  height: 96px;
  margin-top: 38px;
  border: 1px solid rgba(112, 222, 176, 0.25);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(112, 222, 176, 0.17), transparent 66%);
  box-shadow: 0 0 48px rgba(112, 222, 176, 0.12);
  color: var(--green);
  font-size: 32px;
  place-items: center;
}

.manifesto {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0e0e13;
}

.manifesto-grid {
  display: grid;
  min-height: 660px;
  align-items: stretch;
  grid-template-columns: 1fr 1fr;
}

.manifesto-image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.manifesto-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.06);
}

.manifesto-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 50%, #0e0e13 100%);
  content: "";
}

.manifesto-copy {
  display: flex;
  max-width: 590px;
  flex-direction: column;
  justify-content: center;
  padding: 80px 40px 80px 72px;
}

.manifesto-copy h2 {
  margin: 4px 0 20px;
  font-size: clamp(2.4rem, 4.6vw, 4.5rem);
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.manifesto-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.promise-list {
  display: grid;
  gap: 13px;
  margin-top: 32px;
}

.promise {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  color: #dbd8e2;
  font-size: 13px;
  font-weight: 650;
}

.promise b {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(112, 222, 176, 0.12);
  color: var(--green);
  font-size: 11px;
  place-items: center;
}

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

.workflow-step {
  min-height: 280px;
  padding: 38px;
  border-right: 1px solid var(--line);
}

.workflow-step:last-child {
  border-right: 0;
}

.step-number {
  display: inline-grid;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #d7d3dd;
  font-size: 11px;
  font-weight: 800;
  place-items: center;
}

.workflow-step h3 {
  margin: 55px 0 10px;
  font-size: 23px;
  letter-spacing: -0.035em;
}

.workflow-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 8vw, 100px);
  border: 1px solid var(--line);
  border-radius: 42px;
  background:
    radial-gradient(circle at 100% 0, rgba(151, 82, 255, 0.25), transparent 34%),
    radial-gradient(circle at 0 100%, rgba(255, 76, 111, 0.19), transparent 35%),
    #14131a;
  text-align: center;
}

.cta-panel::before {
  position: absolute;
  top: -180px;
  left: 50%;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.cta-icon {
  position: relative;
  z-index: 1;
  width: 78px;
  height: 78px;
  margin: 0 auto 24px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 23px;
  box-shadow: 0 18px 50px rgba(255, 55, 125, 0.24);
}

.cta-panel h2 {
  position: relative;
  margin: 0 auto;
  max-width: 780px;
  font-size: clamp(2.5rem, 5vw, 5rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.cta-panel p {
  position: relative;
  max-width: 570px;
  margin: 24px auto 31px;
  color: var(--muted);
  font-size: 17px;
}

.store-row {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 11px;
}

.store-badge {
  display: flex;
  min-width: 176px;
  min-height: 58px;
  align-items: center;
  gap: 11px;
  padding: 8px 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(6, 6, 8, 0.72);
  text-align: left;
}

.store-badge .store-icon {
  font-size: 25px;
  line-height: 1;
}

.store-badge small,
.store-badge strong {
  display: block;
  line-height: 1.15;
}

.store-badge small {
  margin-bottom: 4px;
  color: #9e9ba8;
  font-size: 9px;
  font-weight: 680;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.store-badge strong {
  font-size: 15px;
}

.site-footer {
  padding: 66px 0 34px;
}

.footer-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 50px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--line);
}

.footer-brand p {
  max-width: 390px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-group h2 {
  margin: 0 0 17px;
  color: var(--subtle);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-group nav {
  display: grid;
  gap: 9px;
}

.footer-group a {
  width: fit-content;
  color: #cfccd6;
  font-size: 14px;
}

.footer-group a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 25px;
  color: var(--subtle);
  font-size: 11px;
}

.footer-bottom span:last-child {
  text-align: right;
}

.legal-main {
  padding-top: var(--nav-height);
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 106px 0 72px;
  border-bottom: 1px solid var(--line);
}

.legal-hero::after {
  position: absolute;
  top: -280px;
  right: -180px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(147, 83, 255, 0.15), transparent 68%);
  content: "";
}

.legal-hero .shell {
  position: relative;
  z-index: 1;
}

.legal-hero h1 {
  max-width: 870px;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 760;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.legal-hero p {
  max-width: 720px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.legal-meta span {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #c8c4cf;
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.04em;
}

.legal-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 250px minmax(0, 760px);
  gap: 72px;
  padding-top: 74px;
  padding-bottom: 110px;
}

.legal-toc {
  position: sticky;
  top: calc(var(--nav-height) + 26px);
}

.legal-toc h2 {
  margin: 0 0 14px;
  color: var(--subtle);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-toc nav {
  display: grid;
  gap: 7px;
  padding-left: 13px;
  border-left: 1px solid var(--line);
}

.legal-toc a {
  color: var(--muted);
  font-size: 13px;
  transition: color 150ms ease, transform 150ms ease;
}

.legal-toc a:hover {
  color: #fff;
  transform: translateX(3px);
}

.legal-content {
  min-width: 0;
}

.legal-section {
  padding: 0 0 44px;
  scroll-margin-top: calc(var(--nav-height) + 32px);
}

.legal-section + .legal-section {
  padding-top: 44px;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin: 0 0 15px;
  font-size: 25px;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.legal-section h3 {
  margin: 28px 0 8px;
  font-size: 16px;
}

.legal-section p,
.legal-section li {
  color: #b4b1bc;
  font-size: 15px;
  line-height: 1.8;
}

.legal-section p {
  margin: 0 0 12px;
}

.legal-section ul,
.legal-section ol {
  display: grid;
  gap: 8px;
  margin: 14px 0;
  padding-left: 20px;
}

.legal-section a,
.inline-link {
  color: #ff8395;
  text-decoration: underline;
  text-decoration-color: rgba(255, 131, 149, 0.4);
  text-underline-offset: 3px;
}

.callout {
  margin: 26px 0;
  padding: 20px 22px;
  border: 1px solid rgba(112, 222, 176, 0.2);
  border-radius: 18px;
  background: rgba(112, 222, 176, 0.055);
}

.callout strong {
  display: block;
  margin-bottom: 4px;
  color: var(--green);
  font-size: 13px;
}

.callout p {
  margin: 0;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 70px;
}

.support-card {
  min-height: 230px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel);
}

.support-card .support-icon {
  display: grid;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: linear-gradient(145deg, rgba(255, 88, 108, 0.19), rgba(155, 92, 255, 0.2));
  place-items: center;
}

.support-card h2 {
  margin: 35px 0 7px;
  font-size: 19px;
}

.support-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13px;
}

.faq {
  max-width: 820px;
}

.faq > h2 {
  margin: 0 0 24px;
  font-size: 32px;
  letter-spacing: -0.04em;
}

.faq details {
  border-top: 1px solid var(--line);
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-weight: 680;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  content: "+";
  font-size: 16px;
  line-height: 21px;
  text-align: center;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  max-width: 730px;
  margin: -3px 0 24px;
  color: var(--muted);
  font-size: 14px;
}

.delete-shell {
  display: grid;
  min-height: calc(100vh - var(--nav-height));
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.82fr);
  gap: 80px;
  padding-top: 70px;
  padding-bottom: 90px;
}

.delete-copy h1 {
  margin: 8px 0 24px;
  font-size: clamp(3rem, 6vw, 5.4rem);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.delete-copy > p {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
}

.delete-list {
  display: grid;
  gap: 13px;
  margin: 29px 0 0;
  padding: 0;
  list-style: none;
}

.delete-list li {
  display: flex;
  gap: 11px;
  color: #c6c3ce;
  font-size: 13px;
}

.delete-list li::before {
  display: grid;
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255, 91, 113, 0.1);
  color: #ff8192;
  content: "×";
  font-weight: 800;
  place-items: center;
}

.account-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(143, 80, 255, 0.14), transparent 40%),
    rgba(22, 21, 29, 0.88);
  box-shadow: var(--shadow);
}

.account-panel .panel-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 91, 113, 0.2);
  border-radius: 16px;
  background: rgba(255, 91, 113, 0.09);
  color: #ff8496;
  font-size: 21px;
  place-items: center;
}

.account-panel h2 {
  margin: 0 0 7px;
  font-size: 23px;
  letter-spacing: -0.03em;
}

.account-panel > p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 13px;
}

.account-actions {
  display: grid;
  gap: 10px;
}

.account-actions .button {
  width: 100%;
}

.provider-icon {
  display: grid;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 830;
  place-items: center;
}

.hidden {
  display: none !important;
}

.status {
  min-height: 48px;
  margin: 17px 0 0;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: 13px;
  color: var(--muted);
  font-size: 12px;
}

.status:empty {
  min-height: 0;
  margin: 0;
  padding: 0;
}

.status[data-state="working"] {
  border-color: rgba(255, 174, 80, 0.16);
  background: rgba(255, 174, 80, 0.07);
  color: #ffd092;
}

.status[data-state="success"] {
  border-color: rgba(112, 222, 176, 0.18);
  background: rgba(112, 222, 176, 0.07);
  color: var(--green);
}

.status[data-state="error"] {
  border-color: rgba(255, 91, 113, 0.18);
  background: rgba(255, 91, 113, 0.07);
  color: #ff91a0;
}

.confirm-box {
  padding: 16px;
  border: 1px solid rgba(255, 91, 113, 0.18);
  border-radius: 16px;
  background: rgba(255, 91, 113, 0.055);
}

.confirm-box p {
  margin: 0 0 13px;
  color: #c9c5cf;
  font-size: 13px;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
}

.check-row input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--danger);
}

.noscript {
  max-width: 680px;
  margin: 120px auto 30px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 91, 113, 0.18);
  border-radius: 16px;
  background: rgba(255, 91, 113, 0.07);
  color: #ffadba;
}

.error-layout {
  grid-template-columns: 1fr;
  text-align: center;
}

.error-copy {
  margin-inline: auto;
}

.error-actions {
  justify-content: center;
}

@media (max-width: 1000px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 156px;
  }

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

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

  .hero-stage {
    width: min(670px, 100%);
    min-height: 720px;
    margin: 0 auto;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bento-editor,
  .bento-ai {
    grid-column: span 6;
  }

  .bento-camera,
  .bento-beauty,
  .bento-privacy {
    grid-column: span 12;
    min-height: 260px;
  }

  .beauty-face {
    width: 34%;
    height: 100%;
  }

  .manifesto-grid {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .manifesto-copy {
    padding-left: 44px;
  }

  .legal-layout {
    grid-template-columns: 205px minmax(0, 1fr);
    gap: 42px;
  }

  .delete-shell {
    gap: 40px;
  }
}

@media (max-width: 760px) {
  :root {
    --nav-height: 66px;
  }

  .shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .nav-links {
    position: fixed;
    z-index: 99;
    top: var(--nav-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 26px 22px;
    background: rgba(10, 10, 14, 0.98);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .nav-links.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links > a {
    width: 100%;
    padding: 18px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
  }

  .nav-links > a::after,
  .nav-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero {
    gap: 24px;
    padding-top: 128px;
    padding-bottom: 68px;
  }

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

  .hero-lede {
    font-size: 16px;
  }

  .hero-stage {
    min-height: 650px;
  }

  .phone {
    top: 15px;
    width: min(360px, 82vw);
    transform: translateX(-50%);
  }

  .floating-card.ai {
    top: 90px;
    right: -2px;
  }

  .floating-card.private {
    right: 0;
    bottom: 72px;
  }

  .floating-card.color {
    bottom: 152px;
    left: 0;
  }

  .section {
    padding: 82px 0;
  }

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

  .section-heading h2 {
    font-size: 40px;
  }

  .section-heading p {
    font-size: 15px;
  }

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

  .bento-card,
  .bento-editor,
  .bento-ai,
  .bento-camera,
  .bento-beauty,
  .bento-privacy {
    min-height: 390px;
    grid-column: 1;
  }

  .bento-card {
    padding: 25px;
    border-radius: 27px;
  }

  .bento-editor .card-copy {
    right: 25px;
    bottom: 25px;
    left: 25px;
  }

  .beauty-face {
    width: 60%;
    height: 70%;
  }

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

  .manifesto-image {
    min-height: 420px;
  }

  .manifesto-image::after {
    background: linear-gradient(0deg, #0e0e13 0%, transparent 55%);
  }

  .manifesto-copy {
    padding: 28px 14px 70px;
  }

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

  .workflow-step {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .workflow-step:last-child {
    border-bottom: 0;
  }

  .workflow-step h3 {
    margin-top: 36px;
  }

  .cta-panel {
    padding: 58px 22px;
    border-radius: 28px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

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

  .footer-bottom span:last-child {
    text-align: left;
  }

  .legal-hero {
    padding: 78px 0 54px;
  }

  .legal-hero h1 {
    font-size: clamp(2.9rem, 14vw, 4.6rem);
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 52px;
  }

  .legal-toc {
    position: static;
  }

  .legal-toc nav {
    grid-template-columns: 1fr 1fr;
  }

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

  .support-card {
    min-height: 210px;
  }

  .delete-shell {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-top: 74px;
  }
}

@media (max-width: 420px) {
  .brand small {
    display: none;
  }

  .language-picker select {
    width: 50px;
    padding-right: 22px;
    padding-left: 9px;
  }

  .language-picker::after {
    right: 8px;
  }

  .hero-actions .button {
    width: 100%;
  }

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

  .floating-card {
    padding: 9px 11px;
  }

  .floating-card .orb {
    width: 29px;
    height: 29px;
  }

  .floating-card strong {
    font-size: 10px;
  }

  .floating-card small {
    font-size: 8px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .legal-toc nav {
    grid-template-columns: 1fr;
  }

  .account-panel {
    padding: 23px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (prefers-contrast: more) {
  :root {
    --muted: #cbc8d2;
    --subtle: #aaa7b4;
    --line: rgba(255, 255, 255, 0.26);
  }
}
