:root {
  --ink: #17140f;
  --ink-soft: #5a534c;
  --paper: #f4f0ea;
  --paper-2: #ebe4db;
  --line: rgba(23, 20, 15, 0.1);
  --accent: #c9184e;
  --accent-deep: #9a123b;
  --accent-soft: rgba(201, 24, 78, 0.1);
  --glow: rgba(201, 24, 78, 0.16);
  --metal: rgba(168, 140, 98, 0.45);
  --glass: rgba(255, 252, 247, 0.55);
  --shell-max: 1680px;
  --shell: min(var(--shell-max), 85%);
  --font-display: "Syne", sans-serif;
  --font-serif: "Cormorant Garamond", serif;
  --font-body: "Manrope", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 1.15rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(900px 520px at 8% -5%, rgba(201, 24, 78, 0.08), transparent 55%),
    radial-gradient(700px 480px at 100% 0%, rgba(168, 140, 98, 0.08), transparent 48%),
    linear-gradient(180deg, #f7f3ed 0%, var(--paper) 42%, #efe8df 100%);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0.005em;
  overflow-x: hidden;
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}

html[data-theme="dark"] {
  --ink: #f3eee6;
  --ink-soft: #a89f94;
  --paper: #0e0d0c;
  --paper-2: #171513;
  --line: rgba(243, 238, 230, 0.1);
  --accent: #e84573;
  --accent-deep: #ff6b93;
  --accent-soft: rgba(232, 69, 115, 0.12);
  --glow: rgba(232, 69, 115, 0.14);
  --metal: rgba(212, 184, 150, 0.28);
  --glass: rgba(255, 255, 255, 0.035);
}

html[data-theme="dark"] body {
  background:
    radial-gradient(860px 540px at 6% -8%, rgba(232, 69, 115, 0.1), transparent 52%),
    radial-gradient(720px 460px at 100% 4%, rgba(168, 140, 98, 0.07), transparent 46%),
    linear-gradient(180deg, #12100e 0%, #0e0d0c 48%, #090807 100%);
}

html[data-theme="dark"] .top {
  background: rgba(14, 13, 12, 0.78);
}

html[data-theme="dark"] .top-cta {
  border-color: rgba(243, 238, 230, 0.28);
}

html[data-theme="dark"] .top-cta:hover {
  background: #f3eee6;
  color: #0e0d0c;
  border-color: #f3eee6;
}

html[data-theme="dark"] .btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(243, 238, 230, 0.14);
}

html[data-theme="dark"] .marquee,
html[data-theme="dark"] .mode-chip,
html[data-theme="dark"] .price-row,
html[data-theme="dark"] .friends-panel,
html[data-theme="dark"] .quote blockquote {
  background: var(--glass);
}

html[data-theme="dark"] .price-row:hover {
  background: rgba(255, 255, 255, 0.055);
}

html[data-theme="dark"] .mode-b,
html[data-theme="dark"] .price-row.hot {
  background: linear-gradient(135deg, rgba(232, 69, 115, 0.14), rgba(255, 255, 255, 0.03));
}

html[data-theme="dark"] .cursor {
  mix-blend-mode: screen;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.orb {
  pointer-events: none;
  position: fixed;
  z-index: 0;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.28;
  animation: drift 22s var(--ease) infinite alternate;
}

.orb-a {
  width: 38vw;
  height: 38vw;
  left: -14vw;
  top: 16vh;
  background: var(--glow);
}

.orb-b {
  width: 24vw;
  height: 24vw;
  right: -8vw;
  top: 58vh;
  background: rgba(168, 140, 98, 0.14);
  animation-delay: -6s;
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(4vw, -3vh, 0) scale(1.08);
  }
}

.cursor {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .cursor {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 14px;
    height: 14px;
    margin: -7px 0 0 -7px;
    border-radius: 50%;
    background: var(--accent);
    mix-blend-mode: multiply;
    pointer-events: none;
    transform: translate3d(-100px, -100px, 0);
    transition: width 0.25s var(--ease), height 0.25s var(--ease), margin 0.25s var(--ease),
      opacity 0.2s;
  }

  .cursor.big {
    width: 42px;
    height: 42px;
    margin: -21px 0 0 -21px;
    opacity: 0.55;
  }
}

.top,
main,
.foot {
  position: relative;
  z-index: 1;
}

.top {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 0.85rem max(7.5%, calc((100% - var(--shell-max)) / 2));
  backdrop-filter: blur(18px);
  background: rgba(244, 240, 234, 0.72);
  border-bottom: 1px solid var(--line);
}

html[data-theme="dark"] .top {
  background: rgba(14, 13, 12, 0.78);
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.16em;
  font-size: 0.92rem;
}

.nav {
  display: none;
  gap: 1.75rem;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

.nav a:hover {
  color: var(--accent);
}

.top-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.6rem 1.05rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s;
}

.tg-icon {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.05rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.top-cta:hover {
  background: var(--ink);
  color: var(--paper);
}

@media (min-width: 860px) {
  .nav {
    display: flex;
  }
}

.hero {
  width: var(--shell);
  margin-inline: auto;
  min-height: auto;
  display: grid;
  align-content: start;
  gap: 1.35rem;
  padding: clamp(3.8rem, 9vh, 5.8rem) 0 2.2rem;
  position: relative;
  overflow: visible;
  z-index: 2;
}

.hero-kicker {
  margin: 0;
  max-width: 28rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink-soft);
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.1s forwards;
}

.hero-brand {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: -0.055em;
  font-size: clamp(3.8rem, 12vw, 8.5rem);
}

.brand-line {
  display: block;
  opacity: 0;
  animation: rise 1s var(--ease) 0.2s forwards;
}

.brand-line.accent {
  color: var(--accent);
  animation-delay: 0.32s;
}

.hero-lead {
  margin: 0;
  max-width: 26rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.55;
  color: var(--ink-soft);
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.45s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
  margin-bottom: 0.35rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.55s forwards;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 34px rgba(201, 24, 78, 0.18);
}

.btn-primary:hover {
  background: var(--accent-deep);
}

.btn-ghost {
  border: 1px solid var(--line);
  background: var(--glass);
}

.btn-xl {
  min-height: 3.6rem;
  padding-inline: 1.8rem;
  font-size: 1.05rem;
}

.hero-stage {
  position: absolute;
  right: clamp(1.5vw, 1.25rem, 2.5rem);
  top: clamp(3.6rem, 7.5vh, 5.2rem);
  bottom: auto;
  width: min(34%, 300px);
  display: none;
  z-index: 3;
}

@media (min-width: 960px) {
  .hero {
    min-height: 0;
    padding-right: min(32%, 280px);
    padding-bottom: 2.2rem;
  }

  .hero-stage {
    display: block;
    animation: floaty 5.5s ease-in-out infinite;
  }
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0) rotate(2deg);
  }
  50% {
    transform: translateY(-10px) rotate(3deg);
  }
}

.stage-glow {
  position: absolute;
  inset: 12% -16%;
  background: radial-gradient(circle, var(--glow), transparent 70%);
  filter: blur(14px);
  opacity: 0.85;
}

.stage-phone {
  position: relative;
  border-radius: 1.85rem;
  padding: 0.55rem;
  background: linear-gradient(160deg, #1a1715, #0b0a09);
  border: 1px solid rgba(212, 184, 150, 0.14);
  box-shadow: 0 28px 60px rgba(10, 8, 6, 0.28);
  margin-bottom: -1.85rem;
}

.phone-notch {
  width: 34%;
  height: 0.42rem;
  margin: 0.12rem auto 0.65rem;
  border-radius: 999px;
  background: #2a2623;
}

.phone-screen {
  border-radius: 1.35rem;
  padding: 1.35rem 1.05rem 1.2rem;
  min-height: 0;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  background:
    radial-gradient(circle at 28% 12%, rgba(201, 24, 78, 0.22), transparent 44%),
    linear-gradient(180deg, #161310, #0f0d0b);
  color: #f3eee6;
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  padding-top: 0.1rem;
}

.phone-brand {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.04em;
}

.phone-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
}

.phone-stats div {
  padding: 0.75rem 0.35rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(243, 238, 230, 0.08);
  text-align: center;
}

.phone-stats span {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(243, 238, 230, 0.48);
}

.phone-stats strong {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.phone-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.phone-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.84rem;
  color: rgba(243, 238, 230, 0.78);
}

.phone-list i {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--accent);
  flex: 0 0 auto;
}

.phone-bar {
  margin-top: 0.2rem;
  display: grid;
  place-items: center;
  min-height: 2.55rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.marquee {
  position: relative;
  z-index: 1;
  width: var(--shell);
  margin: 0.7rem auto 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--glass);
  overflow: hidden;
  padding: 0.85rem 0;
}

.marquee-track {
  display: flex;
  gap: 1.75rem;
  width: max-content;
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--ink-soft);
  animation: scroll 34s linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section {
  width: var(--shell);
  margin-inline: auto;
  padding: clamp(4.2rem, 9vh, 6.2rem) 0;
  overflow: visible;
}

.section-head {
  max-width: none;
  margin-bottom: 2.2rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--metal);
  font-weight: 600;
}

.section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.02;
  font-size: clamp(2.2rem, 5.6vw, 3.9rem);
}

.section-note,
.why-item p,
.modes-copy > p:last-of-type,
.friends-panel p {
  color: var(--ink-soft);
}

.why-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 860px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
  }
}

.why-item {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.why-item h3 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.why-item p {
  margin: 0;
}

.quote {
  padding-block: 1.2rem;
}

.quote blockquote {
  margin: 0;
  max-width: 48rem;
  padding: clamp(1.6rem, 4vw, 2.6rem);
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--line);
}

.quote p {
  margin: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2rem, 4.8vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.quote cite {
  display: block;
  margin-top: 1.2rem;
  font-style: normal;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.modes {
  display: grid;
  gap: 2rem;
  align-items: center;
  overflow: visible;
}

@media (min-width: 900px) {
  .modes {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.25rem;
  }

  .modes-visual {
    transform: translateX(clamp(3rem, 8vw, 5.5rem));
  }
}

.modes-copy h2 {
  margin-bottom: 1rem;
}

.modes-visual {
  display: grid;
  gap: 1rem;
}

.mode-chip {
  padding: 1.5rem 1.55rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--glass);
  transition: transform 0.35s var(--ease);
}

.mode-chip:hover {
  transform: translateX(10px);
}

.mode-chip span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--metal);
  margin-bottom: 0.55rem;
}

.mode-chip strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

.mode-b {
  background: linear-gradient(135deg, rgba(201, 24, 78, 0.1), var(--glass));
}

@media (min-width: 900px) {
  .mode-a {
    transform: translateX(0.75rem);
  }

  .mode-b {
    transform: translateX(2.75rem);
  }

  .mode-a:hover {
    transform: translateX(1.35rem);
  }

  .mode-b:hover {
    transform: translateX(3.5rem);
  }
}

.feature-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  width: 100%;
  max-width: none;
}

.feature-list li {
  display: grid;
  gap: 0.35rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 760px) {
  .feature-list li {
    grid-template-columns: minmax(16rem, 1fr) 1.35fr;
    align-items: baseline;
    gap: clamp(2rem, 5vw, 4rem);
  }
}

.feature-list strong {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  letter-spacing: -0.04em;
}

.feature-list span {
  color: var(--ink-soft);
}

.price-list {
  display: grid;
  gap: 0.45rem;
  width: 100%;
  max-width: none;
}

.price-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 1.2rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--glass);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), border-color 0.25s;
}

.price-row:hover {
  transform: translateY(-1px);
  border-color: var(--metal);
  background: rgba(255, 252, 247, 0.8);
}

.price-row.hot {
  background: linear-gradient(120deg, rgba(201, 24, 78, 0.1), var(--glass));
  border-color: rgba(201, 24, 78, 0.22);
}

.price-term {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.price-meta,
.price-old {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.price-old {
  text-decoration: line-through;
}

.price-now {
  font-weight: 700;
  justify-self: end;
}

.price-tag {
  grid-column: 1 / -1;
  width: fit-content;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}

@media (min-width: 720px) {
  .price-row.hot {
    grid-template-columns: 1.2fr 0.7fr auto auto;
  }

  .price-tag {
    grid-column: auto;
  }
}

main {
  overflow: visible;
}

.flow-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  width: 100%;
  border-top: 1px solid var(--line);
}

.flow-list li {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem;
  align-items: baseline;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 860px) {
  .flow-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 0;
  }

  .flow-list li {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding: 0 1.4rem 0 0;
    border-bottom: 0;
    border-right: 1px solid var(--line);
  }

  .flow-list li:last-child {
    border-right: 0;
    padding-right: 0;
  }
}

.flow-list span {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--metal);
}

.flow-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.flow-list em {
  display: block;
  margin-top: 0.35rem;
  font-style: normal;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.friends-panel {
  width: 100%;
  max-width: none;
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: calc(var(--radius) + 0.2rem);
  background: var(--glass);
  border: 1px solid var(--line);
}

.friends-panel h2 {
  margin: 0 0 1rem;
}

.friends-panel .btn {
  margin-top: 1.6rem;
}

.finale {
  text-align: center;
  padding-bottom: 3.5rem;
}

.finale-brand {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.4rem, 12vw, 7rem);
  letter-spacing: -0.06em;
  line-height: 0.85;
  color: var(--accent);
}

.finale-lead {
  margin: 1.15rem auto 1.6rem;
  max-width: 24rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.45rem;
  color: var(--ink-soft);
}

.finale-fine {
  margin: 1.25rem 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.foot {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  width: var(--shell);
  margin-inline: auto;
  padding: 1.2rem 0 1.8rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.egg {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  opacity: 0.55;
}

.egg:hover {
  opacity: 1;
  color: var(--accent);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  z-index: 50;
  transform: translateX(-50%);
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.92rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero-kicker,
  .brand-line,
  .hero-lead,
  .hero-actions {
    opacity: 1;
    transform: none;
  }
}
