@font-face {
  font-family: "Noto Sans";
  src: url("/assets/fonts/noto-sans-tr-v4-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans";
  src: url("/assets/fonts/noto-sans-tr-v4-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans";
  src: url("/assets/fonts/noto-sans-tr-v4-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans";
  src: url("/assets/fonts/noto-sans-tr-v4-800.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: "Noto Serif";
  src: url("/assets/fonts/noto-serif-tr-v4-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Noto Serif";
  src: url("/assets/fonts/noto-serif-tr-v4-400-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Noto Serif";
  src: url("/assets/fonts/noto-serif-tr-v4-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
:root {
  --ink: #111827;
  --paper: #f5f7fa;
  --cream: #f0ede5;
  --white: #fff;
  --blue: #3451e6;
  --blue-dark: #263eb7;
  --lime: #caff45;
  --muted: #667085;
  --line: #dfe3ea;
  --serif: "Noto Serif", Georgia, serif;
  --sans: "Noto Sans", "Avenir Next", sans-serif;
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.13);
  --radius: 28px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  overflow-x: hidden;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  -webkit-tap-highlight-color: rgba(52, 81, 230, 0.16);
}
img,
video {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
  touch-action: manipulation;
}
button {
  font: inherit;
  touch-action: manipulation;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 18px;
  top: -100px;
  background: var(--lime);
  color: var(--ink);
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 800;
  z-index: 1000;
}
.skip-link:focus {
  top: 18px;
}
:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}
.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.site-header {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 50%;
  width: min(1180px, calc(100% - 36px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(17, 24, 39, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px) saturate(150%);
  box-shadow: 0 10px 35px rgba(17, 24, 39, 0.07);
  transition:
    background 0.25s,
    box-shadow 0.25s;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 45px rgba(17, 24, 39, 0.12);
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2.5px;
}
.brand-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--blue);
  box-shadow: 0 8px 20px rgba(52, 81, 230, 0.25);
}
.brand-mark img {
  width: 31px;
  height: 31px;
  object-fit: contain;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  font-weight: 700;
}
.site-nav > a:not(.nav-cta) {
  position: relative;
}
.site-nav > a:not(.nav-cta):after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 2px;
  background: var(--blue);
  transition: right 0.2s;
}
.site-nav > a:hover:after {
  right: 0;
}
.nav-cta {
  padding: 12px 18px;
  border-radius: 13px;
  background: var(--ink);
  color: var(--white);
}
.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 13px;
  background: var(--ink);
  place-content: center;
  gap: 5px;
}
.menu-button span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  background: white;
  border-radius: 4px;
}
.hero {
  min-height: 740px;
  padding-top: 132px;
  padding-bottom: 70px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 56px;
  position: relative;
}
.hero:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -15vw;
  top: 0;
  width: 68vw;
  height: 720px;
  background: linear-gradient(120deg, rgba(52, 81, 230, 0.13), transparent 62%);
  clip-path: polygon(0 0, 100% 0, 72% 100%, 0 84%);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.3px;
  color: var(--blue);
}
.eyebrow > span {
  display: block;
  width: 28px;
  height: 3px;
  background: currentColor;
}
.eyebrow.light {
  color: var(--lime);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  text-wrap: balance;
}
p {
  text-wrap: pretty;
}
.hero h1 {
  margin-bottom: 28px;
  font-size: clamp(64px, 7.4vw, 112px);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.88;
}
.hero h1 em,
.section-intro h2 em,
.transformation h2 em,
.final-cta h2 em {
  font-weight: 400;
  color: var(--blue);
}
.hero-lead {
  max-width: 640px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 34px 0 42px;
}
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 13px;
  font-weight: 800;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 12px 28px rgba(52, 81, 230, 0.24);
}
.button-primary:hover {
  background: var(--blue-dark);
}
.button-quiet {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.68);
}
.button-lime {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(202, 255, 69, 0.19);
}
.hero-facts {
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hero-facts li {
  display: grid;
  gap: 2px;
}
.hero-facts strong {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1;
}
.hero-facts span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: var(--muted);
}
.hero-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 570px;
}
.phone-frame {
  position: relative;
  z-index: 2;
  width: min(348px, 80vw);
  padding: 10px;
  border-radius: 54px;
  background: #0b0e15;
  box-shadow:
    0 40px 90px rgba(17, 24, 39, 0.27),
    0 0 0 1px #242b3c;
  transform: rotate(2deg);
}
.phone-frame video {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  border-radius: 45px;
  background: #151922;
}
.phone-top {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 17px;
  transform: translateX(-50%);
  width: 92px;
  height: 25px;
  border-radius: 20px;
  background: #07090e;
}
.phone-top span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #263349;
  right: 14px;
  top: 9px;
}
.sound-toggle {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  color: white;
  background: rgba(12, 15, 23, 0.76);
  backdrop-filter: blur(12px);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.2px;
  cursor: pointer;
}
.sound-toggle svg {
  width: 16px;
  fill: currentColor;
}
.demo-badge {
  white-space: nowrap;
  cursor: default;
  pointer-events: none;
}
.stage-orbit {
  position: absolute;
  right: 2%;
  top: 2%;
  width: 168px;
  height: 168px;
  border: 1px dashed rgba(52, 81, 230, 0.35);
  border-radius: 50%;
  animation: spin 26s linear infinite;
}
.stage-orbit span {
  position: absolute;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 2px;
}
.stage-orbit span:first-child {
  left: 33px;
  top: -8px;
}
.stage-orbit span:last-child {
  right: -18px;
  bottom: 35px;
}
.stage-orbit i {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--lime);
  left: 12px;
  bottom: 24px;
}
.floating-note {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 2px;
  padding: 14px 16px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.91);
  box-shadow: 0 15px 40px rgba(17, 24, 39, 0.12);
  backdrop-filter: blur(12px);
  font-size: 9px;
}
.floating-note b {
  letter-spacing: 1.4px;
}
.floating-note span {
  color: var(--muted);
}
.note-top {
  left: 0;
  top: 23%;
}
.note-bottom {
  right: -2%;
  bottom: 16%;
}
.marquee {
  overflow: hidden;
  padding: 16px 0;
  background: var(--ink);
  color: white;
  transform: rotate(-1deg) scale(1.02);
}
.marquee-track {
  width: max-content;
  display: flex;
  will-change: transform;
}
.marquee-track.is-ready {
  animation: marquee var(--marquee-duration, 28s) linear infinite;
}
.marquee-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 34px;
  padding-right: 34px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.2px;
}
.marquee i {
  color: var(--lime);
  font-style: normal;
}
.proof {
  padding-top: 112px;
  padding-bottom: 112px;
}
.section-intro {
  max-width: 690px;
  margin-bottom: 50px;
}
.section-intro.compact {
  margin-bottom: 36px;
}
.section-intro h2,
.transformation h2,
.final-cta h2 {
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: clamp(54px, 6vw, 88px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.9;
}
.section-intro > p:last-child {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
}
.step-grid {
  counter-reset: steps;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.step-card {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.05);
  transition:
    transform 0.25s,
    border-color 0.25s;
}
.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(52, 81, 230, 0.35);
}
.step-number {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  color: var(--blue);
}
.step-icon {
  margin: 34px 0 auto;
  font-family: var(--serif);
  font-size: 66px;
  line-height: 1;
  color: var(--blue);
}
.step-card h3 {
  margin-bottom: 8px;
  font-size: 23px;
  letter-spacing: -0.04em;
}
.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.transformation {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 56px;
  align-items: center;
  padding: 72px;
  border-radius: 44px;
  background: var(--ink);
  color: white;
  overflow: hidden;
}
.transformation:after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -230px;
  width: 500px;
  height: 500px;
  border: 100px solid rgba(52, 81, 230, 0.32);
  border-radius: 50%;
}
.transformation-copy {
  position: relative;
  z-index: 2;
}
.transformation h2 em {
  color: var(--lime);
}
.transformation-copy > p:not(.eyebrow) {
  color: #aeb6c6;
}
.quality-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}
.quality-list span {
  padding: 8px 11px;
  border: 1px solid #394151;
  border-radius: 30px;
  font-size: 10px;
  font-weight: 700;
  color: #d6dbe4;
}
.comparison {
  position: relative;
  z-index: 2;
  min-height: 500px;
}
.comparison figure {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: #232938;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.32);
}
.comparison img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.comparison figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(10, 13, 19, 0.76);
  backdrop-filter: blur(10px);
  font-size: 10px;
  font-weight: 700;
}
.comparison figcaption span {
  color: var(--lime);
  margin-right: 7px;
  letter-spacing: 1px;
}
.before-card {
  left: 0;
  top: 48px;
  width: 58%;
  height: 410px;
  border-radius: 26px;
  transform: rotate(-4deg);
}
.after-card {
  right: 0;
  top: 0;
  width: 49%;
  height: 490px;
  border: 8px solid #fff;
  border-radius: 32px;
  transform: rotate(4deg);
}
.feature-section {
  padding-top: 112px;
  padding-bottom: 112px;
  border-bottom: 1px solid var(--line);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.feature-card {
  position: relative;
  min-height: 340px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  overflow: hidden;
}
.feature-card h3 {
  max-width: 470px;
  margin: 42px 0 12px;
  font-size: 32px;
  line-height: 1.18;
  letter-spacing: -0.035em;
}
.feature-card p {
  max-width: 510px;
  color: var(--muted);
}
.feature-kicker {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.7px;
  color: var(--blue);
}
.feature-blue {
  background: var(--blue);
  color: white;
  border-color: transparent;
}
.feature-blue .feature-kicker,
.feature-blue p {
  color: #dce2ff;
}
.feature-lime {
  background: var(--lime);
  border-color: transparent;
}
.feature-lime .feature-kicker,
.feature-lime p {
  color: #39431c;
}
.mini-scene {
  position: absolute;
  right: -30px;
  bottom: -25px;
  width: 45%;
  height: 75%;
  border-radius: 150px 0 0;
  background: var(--cream);
  overflow: hidden;
}
.shop-shape {
  position: absolute;
  inset: 35% 5% 0;
  background: var(--ink);
}
.shop-shape:before {
  content: "SHOP";
  position: absolute;
  left: 12%;
  top: -22%;
  color: white;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 3px;
}
.person-shape {
  position: absolute;
  z-index: 2;
  left: 12%;
  bottom: -20%;
  width: 50%;
  height: 80%;
  border-radius: 50% 50% 10px 10px;
  background: var(--blue);
}
.person-shape:before {
  content: "";
  position: absolute;
  left: 27%;
  top: -19%;
  width: 45%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #e4b18e;
}
.wave {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 35px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.wave i {
  width: 7px;
  height: 30%;
  border-radius: 8px;
  background: var(--lime);
  animation: wave 1.2s ease-in-out infinite alternate;
}
.wave i:nth-child(2),
.wave i:nth-child(7) {
  height: 52%;
  animation-delay: -0.3s;
}
.wave i:nth-child(3),
.wave i:nth-child(6) {
  height: 80%;
  animation-delay: -0.7s;
}
.wave i:nth-child(4),
.wave i:nth-child(5) {
  height: 100%;
  animation-delay: -0.5s;
}
.caption-demo {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 45px;
  display: grid;
  justify-items: center;
  gap: 8px;
  transform: rotate(-2deg);
}
.caption-demo span {
  padding: 8px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}
.pipeline {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.pipeline span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 20px;
  font-size: 9px;
  font-weight: 800;
}
.pipeline span.done {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}
.pipeline i {
  height: 1px;
  flex: 1;
  background: var(--line);
}
.pricing {
  padding-top: 105px;
  padding-bottom: 110px;
  border-top: 1px solid var(--line);
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.price-card {
  min-height: 430px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 20px 60px rgba(17, 24, 39, 0.05);
}
.price-card > div:first-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.price-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.7px;
  color: var(--blue);
}
.price-badge {
  padding: 7px 9px;
  border-radius: 20px;
  background: var(--paper);
  font-size: 9px;
  font-weight: 800;
}
.price-card h3 {
  margin: 42px 0 5px;
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 500;
}
.price {
  display: flex;
  align-items: end;
  gap: 7px;
  margin-bottom: 3px;
}
.price strong {
  font-size: 39px;
  line-height: 1;
  letter-spacing: -0.055em;
}
.price span {
  color: var(--muted);
  font-size: 12px;
}
.unit-price {
  color: var(--muted);
  font-size: 12px;
}
.price-card ul {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  font-weight: 600;
}
.price-card li:before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 21px;
  height: 21px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--blue);
  font-size: 11px;
}
.price-card.featured {
  position: relative;
  background: var(--blue);
  color: white;
  border-color: transparent;
  transform: translateY(-16px);
  box-shadow: 0 28px 70px rgba(52, 81, 230, 0.25);
}
.price-card.featured .price-label,
.price-card.featured .unit-price,
.price-card.featured .price span {
  color: #dce2ff;
}
.price-card.featured .price-badge,
.price-card.featured li:before {
  background: var(--lime);
  color: var(--ink);
}
.price-card.add-on {
  background: var(--cream);
}
.pricing-note {
  max-width: 850px;
  margin: 30px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 11px;
}
.faq {
  padding-bottom: 110px;
}
.faq-list {
  padding: 0 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: 0 18px 55px rgba(17, 24, 39, 0.045);
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq details:last-child {
  border-bottom: 0;
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--line);
  font-size: 20px;
  transition: transform 0.2s;
}
.faq details[open] summary span {
  transform: rotate(45deg);
}
.faq details p {
  max-width: 760px;
  padding: 0 50px 24px 0;
  color: var(--muted);
  font-size: 14px;
}
.final-cta {
  min-height: 390px;
  margin-bottom: 60px;
  padding: 56px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  border-radius: 44px;
  background: var(--blue);
  color: white;
  position: relative;
  overflow: hidden;
}
.final-cta:before {
  content: "9:16";
  position: absolute;
  right: 4%;
  top: -32%;
  font-family: var(--serif);
  font-size: 330px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.05);
}
.final-cta > div,
.final-cta > a {
  position: relative;
  z-index: 2;
}
.final-cta h2 {
  margin-bottom: 14px;
}
.final-cta h2 em {
  color: var(--lime);
}
.final-cta p:last-child {
  color: #dce2ff;
}
.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr auto;
  gap: 35px;
  align-items: center;
  padding-top: 38px;
  padding-bottom: 38px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  color: var(--muted);
}
.footer-brand {
  color: var(--ink);
}
.site-footer p {
  margin: 0;
}
.site-footer nav {
  display: flex;
  gap: 20px;
}
.site-footer nav a:hover {
  color: var(--blue);
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.2, 0.75, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.legal-hero {
  padding-top: 150px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
}
.legal-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(55px, 8vw, 100px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.9;
}
.legal-hero p:last-child {
  max-width: 700px;
  margin: 28px 0 0;
  color: var(--muted);
}
.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 720px);
  gap: 64px;
  padding-top: 56px;
  padding-bottom: 90px;
}
.legal-aside {
  align-self: start;
  position: sticky;
  top: 120px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
}
.legal-aside strong {
  display: block;
  margin-bottom: 9px;
  font-size: 11px;
  letter-spacing: 1px;
}
.legal-aside span,
.legal-aside a {
  display: block;
  color: var(--muted);
  font-size: 11px;
}
.legal-aside a {
  margin-top: 18px;
  color: var(--blue);
  font-weight: 700;
}
.legal-copy h2 {
  margin: 42px 0 12px;
  font-size: 26px;
  letter-spacing: -0.035em;
}
.legal-copy h2:first-child {
  margin-top: 0;
}
.legal-copy h3 {
  margin: 28px 0 8px;
  font-size: 17px;
}
.legal-copy p,
.legal-copy li {
  color: #535e70;
  font-size: 14px;
}
.legal-copy ul {
  display: grid;
  gap: 9px;
  padding-left: 20px;
}
.legal-callout {
  padding: 20px;
  border-left: 4px solid var(--blue);
  border-radius: 0 16px 16px 0;
  background: #e9edff;
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 35px;
}
.support-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
}
.support-card h3 {
  margin: 0 0 7px;
  font-size: 17px;
}
.support-card p {
  margin: 0;
}
.contact-card {
  margin-top: 40px;
  padding: 32px;
  border-radius: 26px;
  background: var(--blue);
  color: white;
}
.contact-card p {
  color: #dce2ff;
}
.contact-card .button {
  margin-top: 12px;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes marquee {
  to {
    transform: translate3d(var(--marquee-shift, -50%), 0, 0);
  }
}
@keyframes wave {
  to {
    transform: scaleY(0.35);
  }
}
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .hero-copy {
    max-width: 720px;
  }
  .hero-stage {
    min-height: 590px;
  }
  .transformation {
    grid-template-columns: 1fr;
    padding: 52px;
  }
  .comparison {
    max-width: 650px;
    width: 100%;
    margin: auto;
  }
  .feature-card h3 {
    max-width: 360px;
  }
  .price-grid {
    grid-template-columns: 1fr;
  }
  .price-card {
    min-height: auto;
  }
  .price-card.featured {
    transform: none;
  }
  .site-footer {
    grid-template-columns: 1fr auto;
  }
  .site-footer > p {
    display: none;
  }
}
@media (max-width: 720px) {
  .section-shell {
    width: min(100% - 28px, 600px);
  }
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 62px;
    padding: 8px 8px 8px 13px;
    border-radius: 19px;
  }
  .brand-mark {
    width: 40px;
    height: 40px;
  }
  .brand {
    font-size: 12px;
  }
  .menu-button {
    display: grid;
  }
  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    display: grid;
    gap: 4px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 19px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.2s;
  }
  .site-nav.open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .site-nav a {
    padding: 13px;
    border-radius: 12px;
  }
  .site-nav .nav-cta {
    margin-top: 4px;
    text-align: center;
  }
  .hero {
    min-height: 0;
    padding-top: 112px;
    padding-bottom: 48px;
    gap: 28px;
  }
  .hero h1 {
    font-size: clamp(59px, 18vw, 82px);
  }
  .hero-lead {
    font-size: 15px;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .button {
    width: 100%;
  }
  .hero-facts {
    justify-content: space-between;
    gap: 10px;
  }
  .hero-facts strong {
    font-size: 21px;
  }
  .hero-stage {
    min-height: 540px;
  }
  .phone-frame {
    width: 290px;
    border-radius: 46px;
  }
  .phone-frame video {
    border-radius: 38px;
  }
  .stage-orbit {
    right: -50px;
  }
  .floating-note {
    padding: 10px 12px;
  }
  .note-top {
    left: -4px;
  }
  .note-bottom {
    right: -4px;
  }
  .proof,
  .feature-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .section-intro {
    margin-bottom: 32px;
  }
  .section-intro h2,
  .transformation h2,
  .final-cta h2 {
    font-size: 48px;
    line-height: 0.96;
  }
  .step-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .step-card {
    min-height: 220px;
  }
  .step-icon {
    margin-top: 24px;
    font-size: 50px;
  }
  .transformation {
    width: 100%;
    padding: 56px 20px;
    border-radius: 0;
  }
  .comparison {
    min-height: 420px;
  }
  .before-card {
    height: 320px;
  }
  .after-card {
    height: 400px;
  }
  .feature-card {
    min-height: 310px;
    padding: 24px;
  }
  .feature-card h3 {
    margin-top: 32px;
    font-size: 27px;
  }
  .mini-scene {
    width: 52%;
    opacity: 0.82;
  }
  .pipeline {
    gap: 4px;
    left: 20px;
    right: 20px;
    bottom: 24px;
  }
  .pipeline span {
    padding: 7px 6px;
    font-size: 8px;
  }
  .pricing {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .price-card {
    padding: 24px;
  }
  .price-card h3 {
    margin-top: 28px;
  }
  .faq {
    padding-bottom: 72px;
  }
  .final-cta {
    width: 100%;
    min-height: 340px;
    margin-bottom: 34px;
    padding: 48px 22px;
    display: block;
    border-radius: 0;
  }
  .final-cta .button {
    margin-top: 24px;
  }
  .site-footer {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .site-footer nav {
    flex-wrap: wrap;
  }
  .legal-hero {
    padding-top: 118px;
    padding-bottom: 38px;
  }
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 32px;
    padding-bottom: 64px;
  }
  .legal-aside {
    position: static;
  }
  .support-grid {
    grid-template-columns: 1fr;
  }
}
.not-found {
  min-height: 80vh;
}
.price-card.add-on .price span,
.price-card.add-on .unit-price {
  color: #475467;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .marquee-track.is-ready {
    animation: none;
    transform: none;
  }
}
