:root {
  --cream: #f5f0e6;
  --paper: #fffaf0;
  --orange: #ff5a1f;
  --orange-dark: #e7460e;
  --acid: #d8f55d;
  --lemon: #f8f445;
  --ink: #17211b;
  --ink-soft: #344139;
  --forest: #173c2a;
  --line: rgba(23, 33, 27, 0.16);
  --muted: #72786f;
  --white: #fff;
  --shadow: 0 28px 80px rgba(24, 33, 27, 0.15);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

button,
input,
textarea {
  font: inherit;
}

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

button {
  color: inherit;
}

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

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.section-pad,
.site-header {
  padding-left: max(28px, calc((100vw - 1380px) / 2));
  padding-right: max(28px, calc((100vw - 1380px) / 2));
}

.site-header {
  align-items: center;
  background: rgba(245, 240, 230, 0.9);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 84px;
  position: relative;
  z-index: 20;
  backdrop-filter: blur(18px);
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 21px;
  font-weight: 900;
  gap: 10px;
  letter-spacing: -0.5px;
  width: max-content;
}

.brand-mark {
  background: var(--orange);
  border-radius: 50% 50% 44% 56% / 58% 45% 55% 42%;
  display: inline-block;
  height: 27px;
  position: relative;
  transform: rotate(-16deg);
  width: 25px;
}

.brand-mark::before,
.brand-mark::after {
  background: var(--cream);
  border-radius: 999px;
  content: "";
  height: 2px;
  left: 7px;
  position: absolute;
  top: 12px;
  width: 10px;
}

.brand-mark::after {
  transform: rotate(90deg);
}

.brand-seed {
  background: var(--forest);
  border-radius: 100% 0 100% 0;
  height: 9px;
  position: absolute;
  right: -2px;
  top: -5px;
  transform: rotate(18deg);
  width: 6px;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: clamp(24px, 3vw, 48px);
}

.main-nav a {
  font-size: 13px;
  font-weight: 700;
  position: relative;
}

.main-nav a::after {
  background: var(--orange);
  bottom: -8px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
  width: 100%;
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 22px;
  justify-content: flex-end;
}

.text-button,
.menu-button {
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  padding: 10px;
}

.menu-button {
  display: none;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  gap: 22px;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  gap: 14px;
  min-height: 45px;
  padding: 0 20px;
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  box-shadow: 0 12px 26px rgba(23, 33, 27, 0.22);
}

.button-orange {
  background: var(--orange);
  color: var(--white);
}

.button-orange:hover {
  background: var(--orange-dark);
  box-shadow: 0 14px 30px rgba(255, 90, 31, 0.28);
}

.button-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.button-outline:hover {
  background: var(--ink);
  color: var(--white);
}

.button-cream {
  background: var(--cream);
  color: var(--ink);
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(40px, 7vw, 110px);
  grid-template-columns: minmax(0, 0.9fr) minmax(450px, 1.1fr);
  min-height: 760px;
  padding-bottom: 72px;
  padding-top: 70px;
  position: relative;
}

.eyebrow,
.section-kicker {
  align-items: center;
  display: flex;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.eyebrow {
  gap: 10px;
}

.eyebrow-dot,
.status-dot,
.output-indicator {
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 90, 31, 0.13);
  display: inline-block;
  height: 7px;
  width: 7px;
}

.hero h1,
.section-heading h2,
.showcase-heading h2,
.pricing-heading h2,
.faq-heading h2,
.final-cta h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.88;
  margin: 26px 0;
}

.hero h1 {
  font-size: clamp(66px, 7.5vw, 116px);
  max-width: 690px;
}

em {
  color: var(--orange);
  font-weight: 400;
}

.hero-lede {
  color: var(--ink-soft);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.65;
  margin: 0;
  max-width: 590px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 38px;
}

.button-icon {
  align-items: center;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  display: flex;
  height: 32px;
  justify-content: center;
  margin-right: -14px;
  width: 32px;
}

.watch-button {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  font-size: 13px;
  font-weight: 800;
  gap: 12px;
  padding: 8px 0;
}

.watch-icon {
  align-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: flex;
  font-size: 9px;
  height: 38px;
  justify-content: center;
  padding-left: 2px;
  width: 38px;
}

.creator-proof {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 18px;
  margin-top: 46px;
  max-width: 470px;
  padding-top: 24px;
}

.avatar-stack {
  display: flex;
  padding-left: 7px;
}

.avatar {
  align-items: center;
  background: var(--white);
  border: 3px solid var(--cream);
  border-radius: 50%;
  display: flex;
  font-size: 17px;
  height: 42px;
  justify-content: center;
  margin-left: -8px;
  overflow: hidden;
  width: 42px;
}

.avatar-one { background: #ffd34f; }
.avatar-two { background: #a3cb54; }
.avatar-three { background: #fa9a9a; }
.avatar-four { background: #ffc181; }

.stars {
  color: var(--orange);
  font-size: 11px;
  letter-spacing: 2px;
}

.creator-proof p {
  color: var(--muted);
  font-size: 12px;
  margin: 4px 0 0;
}

.hero-visual {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 610px;
  position: relative;
}

.hero-visual::before {
  background: var(--orange);
  border-radius: 48% 52% 55% 45% / 43% 45% 55% 57%;
  content: "";
  height: min(43vw, 600px);
  position: absolute;
  transform: rotate(-8deg);
  width: min(42vw, 590px);
}

.orbit {
  border: 1px solid rgba(23, 33, 27, 0.33);
  border-radius: 50%;
  height: 103%;
  position: absolute;
  transform: rotate(34deg);
  width: 72%;
}

.orbit::before {
  background: var(--lemon);
  border: 4px solid var(--orange);
  border-radius: 50%;
  content: "";
  height: 13px;
  left: 10%;
  position: absolute;
  top: 13%;
  width: 13px;
}

.orbit-two {
  height: 88%;
  transform: rotate(102deg);
  width: 82%;
}

.orbit-two::before {
  background: var(--cream);
  height: 8px;
  left: 73%;
  top: 94%;
  width: 8px;
}

.phone {
  background: #141815;
  border: 8px solid #141815;
  border-radius: 45px;
  box-shadow: 0 38px 70px rgba(23, 33, 27, 0.35);
  height: 600px;
  overflow: hidden;
  position: relative;
  transform: rotate(3.5deg);
  width: 300px;
  z-index: 3;
}

.phone-top {
  align-items: center;
  color: var(--white);
  display: flex;
  font-size: 9px;
  font-weight: 700;
  height: 29px;
  justify-content: space-between;
  padding: 0 17px;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 5;
}

.phone-island {
  background: #000;
  border-radius: 999px;
  height: 18px;
  left: 50%;
  position: absolute;
  top: 4px;
  transform: translateX(-50%);
  width: 74px;
}

.phone-scene {
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 207, 104, 0.55), transparent 34%),
    linear-gradient(180deg, #9d2707 0%, #36150b 70%, #120d09 100%);
  border-radius: 36px;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.scene-glow {
  background: rgba(255, 113, 36, 0.33);
  border-radius: 50%;
  filter: blur(12px);
  height: 270px;
  left: 15px;
  position: absolute;
  top: 140px;
  width: 270px;
}

.fruit-shadow {
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  filter: blur(11px);
  height: 24px;
  left: 63px;
  position: absolute;
  top: 397px;
  width: 180px;
}

.orange-half {
  background:
    repeating-conic-gradient(
      from 8deg,
      transparent 0 26deg,
      rgba(255, 242, 187, 0.86) 27deg 29deg
    ),
    radial-gradient(circle, #ffd457 0 14%, #ffab22 15% 66%, #ffe276 67% 76%, #f47611 77%);
  border-radius: 50%;
  box-shadow: inset -10px -13px 22px rgba(166, 53, 0, 0.25);
  height: 154px;
  left: 75px;
  position: absolute;
  top: 225px;
  width: 154px;
}

.orange-back {
  transform: translate(-18px, -22px) rotate(-22deg) scale(0.92);
}

.orange-front {
  animation: float-fruit 4s ease-in-out infinite;
  transform: translate(22px, 17px) rotate(12deg);
}

.orange-pith {
  background: #fff1b4;
  border-radius: 50%;
  height: 17px;
  left: 68px;
  position: absolute;
  top: 68px;
  width: 17px;
}

.leaf {
  background: #7ea82e;
  border-radius: 100% 0 100% 0;
  box-shadow: inset -5px -4px 8px rgba(20, 62, 23, 0.35);
  height: 40px;
  position: absolute;
  width: 20px;
}

.leaf-one {
  left: 69px;
  top: 195px;
  transform: rotate(-46deg);
}

.leaf-two {
  left: 101px;
  top: 189px;
  transform: rotate(12deg);
}

.juice-drop {
  animation: pulse-drop 2.6s ease-in-out infinite;
  background: #ffc543;
  border-radius: 70% 30% 60% 40%;
  height: 9px;
  position: absolute;
  width: 9px;
}

.drop-one { left: 55px; top: 300px; }
.drop-two { animation-delay: 0.5s; right: 38px; top: 247px; }

.scene-copy {
  color: var(--white);
  left: 18px;
  position: absolute;
  top: 59px;
}

.scene-tag {
  color: #ffc985;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.scene-copy strong {
  display: block;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -2px;
  line-height: 0.91;
  margin-top: 9px;
}

.scene-play {
  align-items: center;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  display: flex;
  height: 42px;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 438px;
  transform: translateX(-50%);
  width: 42px;
}

.phone-scene.is-paused .orange-front,
.phone-scene.is-paused .juice-drop,
.phone-scene.is-paused .scene-timeline span {
  animation-play-state: paused;
}

.scene-timeline {
  background: rgba(255, 255, 255, 0.22);
  bottom: 45px;
  height: 2px;
  left: 17px;
  position: absolute;
  width: calc(100% - 34px);
}

.scene-timeline span {
  animation: timeline 4s linear infinite;
  background: var(--white);
  display: block;
  height: 100%;
}

.scene-meta {
  align-items: center;
  bottom: 14px;
  color: var(--white);
  display: flex;
  font-size: 8px;
  justify-content: space-between;
  left: 17px;
  position: absolute;
  width: calc(100% - 34px);
}

.scene-meta > div {
  align-items: center;
  display: flex;
  gap: 6px;
}

.mini-avatar {
  align-items: center;
  background: var(--orange);
  border: 1px solid var(--white);
  border-radius: 50%;
  display: flex;
  font-size: 8px;
  height: 19px;
  justify-content: center;
  width: 19px;
}

.floating-label {
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--ink);
  border-radius: 999px;
  box-shadow: 4px 5px 0 var(--ink);
  display: flex;
  font-size: 10px;
  font-weight: 800;
  gap: 8px;
  padding: 8px 13px 8px 8px;
  position: absolute;
  text-transform: uppercase;
  z-index: 5;
}

.floating-label span {
  align-items: center;
  background: var(--ink);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  height: 25px;
  justify-content: center;
  width: 25px;
}

.label-one {
  left: 2%;
  top: 27%;
  transform: rotate(-8deg);
}

.label-two {
  bottom: 24%;
  right: 0;
  transform: rotate(7deg);
}

.prompt-float {
  align-items: flex-start;
  background: rgba(255, 250, 240, 0.95);
  border: 1px solid var(--ink);
  border-radius: 16px;
  bottom: 4%;
  box-shadow: 7px 8px 0 rgba(23, 33, 27, 0.9);
  display: flex;
  gap: 11px;
  left: 0;
  max-width: 255px;
  padding: 13px;
  position: absolute;
  transform: rotate(-3deg);
  z-index: 6;
}

.prompt-float-icon {
  align-items: center;
  background: var(--orange);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  flex: 0 0 auto;
  height: 29px;
  justify-content: center;
  width: 29px;
}

.prompt-float span {
  display: block;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.prompt-float p {
  font-size: 10px;
  line-height: 1.35;
  margin: 4px 0 0;
}

.marquee-strip {
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  padding: 18px 0;
  transform: rotate(-1deg) scale(1.02);
}

.marquee-track {
  align-items: center;
  animation: marquee 24s linear infinite;
  display: flex;
  gap: 34px;
  white-space: nowrap;
  width: max-content;
}

.marquee-track span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
}

.marquee-track i {
  color: var(--orange);
  font-style: normal;
}

.cast-builder {
  background: #eadfcf;
  display: grid;
  gap: clamp(40px, 8vw, 120px);
  grid-template-columns: 0.7fr 1.3fr;
  padding-bottom: 120px;
  padding-top: 130px;
}

.cast-intro {
  position: sticky;
  top: 110px;
  align-self: start;
}

.cast-intro h2 {
  font-family: var(--serif);
  font-size: clamp(48px, 5.4vw, 82px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.9;
  margin: 24px 0;
}

.cast-intro p {
  color: var(--muted);
  line-height: 1.75;
  max-width: 430px;
}

.cast-stage {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
}

.cast-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  min-height: 410px;
  overflow: hidden;
  padding: 25px;
  position: relative;
}

.cast-card:first-child {
  grid-column: 1 / -1;
}

.cast-mango { background: #ffbc43; }
.cast-berry { background: #f5a9d8; }
.cast-lime { background: #b9dc61; }

.cast-card > span {
  display: block;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 1.4px;
  margin-top: 240px;
}

.cast-card h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -1px;
  margin: 6px 0 0;
}

.cast-card p {
  font-size: 10px;
  margin: 3px 0 0;
}

.fruit-person {
  border-radius: 48% 52% 56% 44% / 43% 45% 55% 57%;
  box-shadow: inset -20px -22px 30px rgba(50, 22, 0, 0.18), 0 24px 34px rgba(55, 30, 0, 0.2);
  height: 190px;
  left: 50%;
  position: absolute;
  top: 40px;
  transform: translateX(-50%) rotate(-4deg);
  width: 170px;
}

.mango-person { background: linear-gradient(135deg, #ffd13f, #ff682d); }
.berry-person { background: linear-gradient(145deg, #ff536f, #9f163a); border-radius: 60% 60% 48% 48%; }
.lime-person { background: linear-gradient(145deg, #c8ec53, #58941f); border-radius: 50%; }

.fruit-person::before {
  background: #28702d;
  border-radius: 100% 0 100% 0;
  content: "";
  height: 40px;
  left: 65px;
  position: absolute;
  top: -26px;
  transform: rotate(-18deg);
  width: 25px;
}

.fruit-person .eye {
  background: var(--ink);
  border: 5px solid white;
  border-radius: 50%;
  height: 25px;
  position: absolute;
  top: 61px;
  width: 25px;
}

.fruit-person .eye::after {
  background: white;
  border-radius: 50%;
  content: "";
  height: 4px;
  left: 4px;
  position: absolute;
  top: 3px;
  width: 4px;
}

.eye-left { left: 43px; }
.eye-right { right: 43px; }

.fruit-person .mouth {
  border-bottom: 5px solid var(--ink);
  border-radius: 50%;
  height: 25px;
  left: 65px;
  position: absolute;
  top: 97px;
  width: 40px;
}

.fruit-person .arm {
  border: 5px solid var(--ink);
  border-bottom: 0;
  height: 70px;
  position: absolute;
  top: 105px;
  width: 50px;
}

.fruit-person .arm-left {
  border-right: 0;
  left: -38px;
  transform: rotate(-28deg);
}

.fruit-person .arm-right {
  border-left: 0;
  right: -38px;
  transform: rotate(28deg);
}

.studio {
  padding-bottom: 130px;
  padding-top: 150px;
}

.section-heading,
.showcase-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 65px;
}

.section-heading > div {
  max-width: 700px;
}

.section-heading h2,
.showcase-heading h2,
.pricing-heading h2,
.faq-heading h2 {
  font-size: clamp(52px, 6vw, 88px);
  margin-bottom: 0;
}

.section-heading > p,
.showcase-heading > p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 5px;
  max-width: 390px;
}

.section-kicker {
  color: var(--orange);
}

.studio-grid {
  background: var(--ink);
  border-radius: 32px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1px;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  overflow: hidden;
}

.generator-panel {
  background: #fffdf7;
  padding: clamp(26px, 4vw, 52px);
}

.panel-heading,
.output-toolbar,
.field-label-row,
.output-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.panel-heading {
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
  padding-bottom: 24px;
}

.panel-heading > div {
  align-items: center;
  display: flex;
  gap: 10px;
  text-transform: uppercase;
}

.credit-count {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.credit-count strong {
  color: var(--ink);
}

.field-block {
  margin-top: 33px;
}

.field-label-row {
  margin-bottom: 10px;
}

.field-label-row label,
.control-group legend {
  font-size: 12px;
  font-weight: 800;
}

.field-label-row span {
  color: var(--muted);
  font-size: 10px;
}

.prompt-input-wrap {
  position: relative;
}

.prompt-input-wrap textarea {
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: 14px;
  color: var(--ink);
  line-height: 1.6;
  min-height: 150px;
  outline: 0;
  padding: 18px 18px 48px;
  resize: vertical;
  transition: border 180ms ease, box-shadow 180ms ease;
  width: 100%;
}

.prompt-input-wrap textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 90, 31, 0.1);
}

.enhance-button {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  bottom: 10px;
  cursor: pointer;
  display: flex;
  font-size: 10px;
  font-weight: 800;
  gap: 6px;
  padding: 7px 10px;
  position: absolute;
  right: 10px;
}

.enhance-button span { color: var(--orange); }
.enhance-button.is-enhancing span { animation: spin 600ms linear infinite; }

.prompt-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.prompt-suggestions button {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  font-size: 9px;
  padding: 6px 9px;
}

.prompt-suggestions button:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.control-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
  margin-top: 25px;
}

.control-group {
  border: 0;
  margin: 0;
  min-width: 0;
  padding: 0;
}

.control-group legend {
  margin-bottom: 10px;
  padding: 0;
}

.segmented-control {
  background: var(--cream);
  border-radius: 11px;
  display: flex;
  padding: 4px;
}

.segmented-control button {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 8px;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  flex: 1;
  font-size: 10px;
  font-weight: 700;
  gap: 5px;
  justify-content: center;
  min-height: 37px;
}

.segmented-control button.is-selected {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(23, 33, 27, 0.08);
  color: var(--ink);
}

.segmented-control button:disabled {
  cursor: not-allowed;
  opacity: 0.32;
}

.ratio-icon {
  border: 1px solid currentColor;
  border-radius: 1px;
  display: inline-block;
}

.ratio-tall { height: 12px; width: 7px; }
.ratio-square { height: 10px; width: 10px; }
.ratio-wide { height: 7px; width: 12px; }

.style-control {
  margin-top: 25px;
}

.style-options {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
}

.style-option {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  display: grid;
  gap: 10px;
  grid-template-columns: 38px 1fr 17px;
  padding: 8px;
  text-align: left;
}

.style-option.is-selected {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange);
}

.style-swatch {
  align-items: center;
  border-radius: 9px;
  display: flex;
  font-size: 19px;
  height: 38px;
  justify-content: center;
  overflow: hidden;
  width: 38px;
}

.cinematic-swatch { background: #54210d; }
.hyperreal-swatch { background: #ffd0d0; }
.clay-swatch { background: #9fc995; }
.surreal-swatch { background: #cd9eff; }

.style-option strong,
.style-option small {
  display: block;
}

.style-option strong { font-size: 10px; }

.style-option small {
  color: var(--muted);
  font-size: 8px;
  margin-top: 2px;
}

.style-option i {
  align-items: center;
  background: var(--orange);
  border-radius: 50%;
  color: var(--white);
  display: none;
  font-size: 8px;
  font-style: normal;
  height: 17px;
  justify-content: center;
  width: 17px;
}

.style-option.is-selected i { display: flex; }

.generate-button {
  align-items: center;
  background: var(--ink);
  border: 0;
  border-radius: 12px;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
  min-height: 57px;
  padding: 0 16px 0 20px;
  width: 100%;
}

.generate-button:disabled {
  cursor: wait;
  opacity: 0.75;
}

.generate-label {
  align-items: center;
  display: flex;
  font-size: 12px;
  font-weight: 800;
  gap: 9px;
}

.generate-label i {
  color: var(--acid);
  font-style: normal;
}

.generate-cost {
  align-items: center;
  color: rgba(255, 255, 255, 0.64);
  display: flex;
  font-size: 9px;
  gap: 10px;
}

.generate-cost b {
  align-items: center;
  background: var(--orange);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  font-size: 14px;
  height: 29px;
  justify-content: center;
  width: 29px;
}

.generator-note {
  color: var(--muted);
  font-size: 9px;
  margin: 12px 0 0;
  text-align: center;
}

.output-panel {
  background: #18201b;
  color: var(--white);
  display: flex;
  flex-direction: column;
  min-height: 760px;
  padding: clamp(22px, 3vw, 38px);
}

.output-toolbar {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.output-toolbar > div:first-child {
  align-items: center;
  display: flex;
  gap: 9px;
}

.output-indicator {
  background: var(--acid);
  box-shadow: 0 0 0 4px rgba(216, 245, 93, 0.12);
}

.output-actions {
  display: flex;
  gap: 7px;
}

.output-actions button {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  color: var(--white);
  cursor: pointer;
  display: flex;
  height: 31px;
  justify-content: center;
  width: 31px;
}

.generated-preview {
  background:
    radial-gradient(circle at 49% 44%, rgba(241, 230, 216, 0.35), transparent 28%),
    linear-gradient(150deg, #d5c6b1 0%, #7d6a5d 45%, #2e2824 100%);
  border-radius: 20px;
  flex: 1;
  min-height: 550px;
  overflow: hidden;
  position: relative;
}

.preview-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 40px 40px;
  inset: 0;
  position: absolute;
}

.result-video {
  background: #111;
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
  z-index: 6;
}

.berry-stage {
  height: 330px;
  left: 50%;
  position: absolute;
  top: 47%;
  transform: translate(-50%, -50%);
  width: 340px;
}

.strawberry {
  animation: berry-bob 3.5s ease-in-out infinite;
  background:
    radial-gradient(circle at 23% 35%, #ffd6d6 0 1.5px, transparent 2px),
    radial-gradient(circle at 43% 20%, #ffd6d6 0 1.5px, transparent 2px),
    radial-gradient(circle at 69% 32%, #ffd6d6 0 1.5px, transparent 2px),
    radial-gradient(circle at 32% 57%, #ffd6d6 0 1.5px, transparent 2px),
    radial-gradient(circle at 61% 61%, #ffd6d6 0 1.5px, transparent 2px),
    radial-gradient(circle at 48% 78%, #ffd6d6 0 1.5px, transparent 2px),
    linear-gradient(145deg, #ff5353, #ae0921);
  border-radius: 55% 45% 55% 45% / 42% 43% 57% 58%;
  box-shadow:
    inset 15px 9px 20px rgba(255, 255, 255, 0.22),
    inset -18px -15px 30px rgba(69, 0, 12, 0.3),
    0 30px 40px rgba(40, 4, 10, 0.32);
  height: 160px;
  left: 100px;
  position: absolute;
  top: 48px;
  transform: rotate(45deg);
  width: 145px;
  z-index: 3;
}

.strawberry-leaf {
  background: #285e28;
  border-radius: 100% 0 100% 0;
  height: 53px;
  position: absolute;
  width: 22px;
}

.leaf-a {
  left: -2px;
  top: -20px;
  transform: rotate(-42deg);
}

.leaf-b {
  left: 21px;
  top: -31px;
  transform: rotate(5deg);
}

.cream-splash {
  border: 17px solid #f7eee1;
  border-bottom-color: transparent;
  border-left-color: #d9c5ae;
  border-radius: 50%;
  height: 170px;
  left: 33px;
  position: absolute;
  top: 124px;
  transform: rotate(-9deg) skewX(-8deg);
  width: 280px;
}

.splash-back { filter: blur(1px); }

.splash-front {
  border-bottom-color: #efe2d2;
  border-left-color: transparent;
  clip-path: inset(43% 0 0);
  z-index: 4;
}

.splash-drop {
  background: #f7eee1;
  border-radius: 50% 50% 60% 40%;
  height: 16px;
  position: absolute;
  width: 12px;
}

.splash-drop-one { left: 42px; top: 90px; }
.splash-drop-two { height: 23px; right: 38px; top: 110px; transform: rotate(32deg); width: 14px; }
.splash-drop-three { height: 10px; left: 90px; top: 51px; width: 10px; }

.preview-status {
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  font-size: 8px;
  justify-content: space-between;
  left: 20px;
  letter-spacing: 1px;
  position: absolute;
  top: 18px;
  width: calc(100% - 40px);
}

.preview-caption {
  bottom: 51px;
  color: var(--white);
  font-size: clamp(17px, 2vw, 25px);
  font-weight: 900;
  left: 22px;
  letter-spacing: -0.7px;
  line-height: 0.96;
  position: absolute;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.preview-progress {
  background: rgba(255, 255, 255, 0.2);
  bottom: 23px;
  height: 2px;
  left: 22px;
  position: absolute;
  width: calc(100% - 44px);
}

.preview-progress span {
  animation: timeline 6s linear infinite;
  background: var(--white);
  display: block;
  height: 100%;
}

.generation-overlay {
  align-items: center;
  background: rgba(17, 23, 19, 0.93);
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 220ms ease;
  z-index: 8;
}

.generated-preview.is-generating .generation-overlay {
  opacity: 1;
  pointer-events: auto;
}

.loader-fruit {
  animation: loader-pop 1.1s ease-in-out infinite;
  font-size: 43px;
  margin-bottom: 18px;
}

.generation-overlay strong {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.generation-overlay > span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  margin-top: 7px;
}

.generation-bar {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  height: 3px;
  margin-top: 26px;
  overflow: hidden;
  width: 150px;
}

.generation-bar i {
  animation: generation-progress 3.2s ease forwards;
  background: var(--orange);
  display: block;
  height: 100%;
  width: 0;
}

.output-footer {
  margin-top: 22px;
}

.output-footer > div {
  display: flex;
  gap: 7px;
}

.output-footer > div span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 8px;
  padding: 6px 9px;
}

.download-button {
  align-items: center;
  background: var(--acid);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  font-size: 10px;
  font-weight: 800;
  gap: 9px;
  padding: 7px 8px 7px 15px;
}

.download-button:disabled {
  cursor: not-allowed;
  filter: grayscale(1);
  opacity: 0.42;
}

.download-button span {
  align-items: center;
  background: var(--ink);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  height: 27px;
  justify-content: center;
  width: 27px;
}

.showcase {
  background: var(--ink);
  color: var(--cream);
  padding-bottom: 120px;
  padding-top: 120px;
}

.showcase-heading {
  margin-bottom: 60px;
}

.showcase-heading h2 { color: var(--cream); }
.section-kicker-light { color: var(--acid); }
.showcase-heading > p { color: rgba(245, 240, 230, 0.6); }

.showcase-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.showcase-card {
  border-left: 1px solid rgba(245, 240, 230, 0.16);
  padding: 0 clamp(22px, 3vw, 44px);
}

.showcase-card:last-child {
  border-right: 1px solid rgba(245, 240, 230, 0.16);
}

.showcase-art {
  align-items: center;
  aspect-ratio: 0.82;
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.showcase-lemon .showcase-art { background: #f5ee4a; }
.showcase-kiwi .showcase-art { background: #8cab43; }
.showcase-cherry .showcase-art { background: #e9a9d9; }

.card-number {
  color: rgba(23, 33, 27, 0.58);
  font-size: 9px;
  font-weight: 900;
  left: 16px;
  letter-spacing: 1px;
  position: absolute;
  top: 15px;
}

.card-play {
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border: 0;
  border-radius: 50%;
  bottom: 16px;
  cursor: pointer;
  display: flex;
  font-size: 10px;
  height: 44px;
  justify-content: center;
  padding-left: 3px;
  position: absolute;
  right: 16px;
  transition: transform 180ms ease;
  width: 44px;
}

.card-play:hover { transform: scale(1.1); }

.lemon-orbit {
  border: 1px solid rgba(23, 33, 27, 0.4);
  border-radius: 50%;
  height: 80%;
  position: relative;
  transform: rotate(-24deg);
  width: 53%;
}

.lemon {
  filter: drop-shadow(0 15px 15px rgba(55, 55, 0, 0.2));
  font-size: clamp(54px, 6vw, 92px);
  position: absolute;
}

.lemon-one { left: -53px; top: 23%; transform: rotate(14deg); }
.lemon-two { right: -45px; top: 52%; transform: rotate(-18deg); }
.lemon-three { bottom: -31px; left: 30%; transform: rotate(44deg) scale(0.75); }

.kiwi-slice {
  background:
    repeating-conic-gradient(
      from 2deg,
      transparent 0 12deg,
      rgba(15, 24, 11, 0.75) 13deg 14deg,
      transparent 15deg 25deg
    ),
    radial-gradient(circle, #f4e3a7 0 13%, #96ce44 14% 66%, #5c401e 68% 75%, #8f5a29 76%);
  border-radius: 50%;
  box-shadow: 0 30px 50px rgba(25, 44, 10, 0.35);
  height: 65%;
  position: relative;
  transform: rotateX(12deg) rotateY(-15deg) rotate(12deg);
  width: 76%;
}

.kiwi-slice::after {
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
  content: "";
  inset: 12px;
  position: absolute;
}

.cherry-pair {
  height: 240px;
  position: relative;
  width: 220px;
}

.cherry {
  background: radial-gradient(circle at 33% 25%, #ff6b6b, #bb102f 47%, #68001a);
  border-radius: 50%;
  bottom: 15px;
  box-shadow: inset -14px -15px 22px rgba(80, 0, 14, 0.32), 0 25px 35px rgba(76, 0, 40, 0.25);
  height: 112px;
  position: absolute;
  width: 112px;
}

.cherry-one { left: 8px; }
.cherry-two { right: 2px; transform: translateY(-15px); }

.cherry-stem {
  border: 5px solid #2c682d;
  border-bottom: 0;
  border-left: 0;
  border-radius: 0 100% 0 0;
  height: 122px;
  position: absolute;
  top: 18px;
  width: 80px;
}

.stem-one { left: 60px; transform: rotate(-10deg); }
.stem-two { right: 51px; transform: scaleX(-1) rotate(-12deg); }

.showcase-meta {
  align-items: end;
  display: flex;
  justify-content: space-between;
  padding: 23px 0 0;
}

.showcase-meta span {
  color: rgba(245, 240, 230, 0.52);
  font-size: 9px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.showcase-meta h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.8px;
  margin: 4px 0 0;
}

.showcase-meta .metric {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: -0.8px;
  text-transform: none;
}

.metric small {
  color: rgba(245, 240, 230, 0.42);
  font-family: var(--sans);
  font-size: 8px;
  letter-spacing: 0;
}

.viral-lab {
  background: #efe9dc;
  padding-bottom: 120px;
  padding-top: 130px;
}

.viral-heading { margin-bottom: 60px; }

.viral-layout {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(35px, 6vw, 90px);
  grid-template-columns: 0.95fr 1.05fr;
  padding: 30px 0;
}

.tip-selector {
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  padding-right: clamp(20px, 4vw, 65px);
}

.tip-tab {
  align-items: center;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  display: grid;
  gap: 20px;
  grid-template-columns: 32px 1fr 28px;
  padding: 21px 0;
  text-align: left;
}

.tip-tab:last-child { border-bottom: 0; }

.tip-number {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
}

.tip-tab strong,
.tip-tab small {
  display: block;
}

.tip-tab strong {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 400;
  letter-spacing: -0.7px;
}

.tip-tab small {
  color: var(--muted);
  font-size: 10px;
  margin-top: 4px;
}

.tip-tab i {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  font-style: normal;
  height: 28px;
  justify-content: center;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 180ms ease;
  width: 28px;
}

.tip-tab.is-active strong,
.tip-tab.is-active .tip-number {
  color: var(--orange);
}

.tip-tab.is-active i {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  opacity: 1;
  transform: translateX(0);
}

.tip-detail {
  background: var(--orange);
  border-radius: 24px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 470px;
  overflow: hidden;
  padding: clamp(28px, 4vw, 48px);
  position: relative;
}

.tip-detail::after {
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 50%;
  content: "";
  height: 350px;
  position: absolute;
  right: -120px;
  top: -160px;
  width: 350px;
}

.tip-detail-top {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.tip-detail-top > span:first-child {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.6px;
}

.fruit-sticker {
  filter: drop-shadow(0 9px 10px rgba(104, 28, 3, 0.22));
  font-size: 60px;
  transform: rotate(12deg);
}

.tip-detail blockquote {
  font-family: var(--serif);
  font-size: clamp(30px, 3.2vw, 45px);
  letter-spacing: -1.6px;
  line-height: 1.02;
  margin: 20px 0;
  max-width: 600px;
}

.tip-detail p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  line-height: 1.7;
  max-width: 500px;
}

.tip-meter {
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  padding-top: 18px;
}

.tip-meter > div:first-child {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.tip-meter span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.tip-meter strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.meter-track {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  height: 4px;
  margin: 11px 0;
}

.meter-track span {
  background: var(--acid);
  border-radius: inherit;
  display: block;
  height: 100%;
  transition: width 350ms ease;
}

.tip-meter small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
}

.viral-formula {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-top: 45px;
}

.viral-formula > span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.formula {
  align-items: center;
  display: flex;
  gap: clamp(12px, 2vw, 28px);
}

.formula strong {
  font-family: var(--serif);
  font-size: clamp(16px, 2vw, 27px);
  font-weight: 400;
  letter-spacing: -0.8px;
}

.formula i {
  color: var(--muted);
  font-style: normal;
}

.formula .formula-result {
  background: var(--acid);
  border-radius: 999px;
  color: var(--ink);
  padding: 8px 16px 10px;
  transform: rotate(-3deg);
}

.pricing {
  padding-bottom: 130px;
  padding-top: 130px;
}

.pricing-heading {
  margin: 0 auto 60px;
  max-width: 680px;
  text-align: center;
}

.pricing-heading .section-kicker { justify-content: center; }

.pricing-heading p {
  color: var(--muted);
  margin: 22px auto;
}

.billing-toggle {
  background: #e8e1d4;
  border-radius: 999px;
  display: inline-flex;
  padding: 4px;
}

.billing-toggle button {
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  padding: 10px 15px;
}

.billing-toggle button.is-active {
  background: var(--white);
  box-shadow: 0 4px 10px rgba(23, 33, 27, 0.08);
}

.billing-toggle span {
  color: var(--orange);
  font-size: 8px;
  margin-left: 4px;
}

.pricing-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.price-card {
  background: #fffaf0;
  border: 1px solid var(--line);
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: clamp(24px, 3vw, 38px);
  position: relative;
}

.price-card-featured {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-12px);
}

.popular-badge {
  background: var(--acid);
  border-radius: 999px;
  color: var(--ink);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 1px;
  padding: 7px 11px;
  position: absolute;
  right: 23px;
  top: 23px;
}

.plan-heading {
  align-items: center;
  display: flex;
  gap: 13px;
}

.plan-icon {
  align-items: center;
  background: #ede4d6;
  border-radius: 12px;
  display: flex;
  height: 45px;
  justify-content: center;
  width: 45px;
}

.seedling-icon { color: #6ba223; }
.orange-icon { background: var(--orange); color: #ffad80; }
.studio-icon { color: #765dcd; }

.plan-heading > div > span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.5px;
}

.plan-heading p {
  color: var(--muted);
  font-size: 9px;
  margin: 3px 0 0;
}

.price-card-featured .plan-heading p { color: rgba(245, 240, 230, 0.5); }

.price {
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
  display: flex;
  margin: 36px 0 28px;
  padding-bottom: 28px;
}

.price-card-featured .price { border-color: rgba(245, 240, 230, 0.16); }

.price > span {
  font-family: var(--serif);
  font-size: 18px;
  margin: 11px 4px 0 0;
}

.price strong {
  font-family: var(--serif);
  font-size: 60px;
  font-weight: 400;
  letter-spacing: -4px;
  line-height: 1;
  transition: opacity 150ms ease;
}

.price small {
  align-self: flex-end;
  color: var(--muted);
  font-size: 9px;
  margin: 0 0 8px 8px;
}

.price-card-featured .price small { color: rgba(245, 240, 230, 0.5); }

.price-card ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style: none;
  margin: 0 0 35px;
  padding: 0;
}

.price-card li {
  align-items: center;
  display: flex;
  font-size: 11px;
  gap: 10px;
}

.price-card li span {
  align-items: center;
  background: #e8e1d4;
  border-radius: 50%;
  display: flex;
  font-size: 7px;
  height: 18px;
  justify-content: center;
  width: 18px;
}

.price-card-featured li span {
  background: rgba(216, 245, 93, 0.16);
  color: var(--acid);
}

.plan-button {
  margin-top: auto;
  width: 100%;
}

.price-card-featured .plan-button { color: var(--white); }

.pricing-note {
  color: var(--muted);
  font-size: 9px;
  margin: 28px 0 0;
  text-align: center;
}

.faq {
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(50px, 9vw, 150px);
  grid-template-columns: 0.8fr 1.2fr;
  padding-bottom: 130px;
  padding-top: 120px;
}

.faq-heading h2 { font-size: clamp(48px, 5vw, 76px); }

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 0;
}

.faq-list summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 25px);
  justify-content: space-between;
  list-style: none;
  padding: 25px 0;
}

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

.faq-list summary i {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  flex: 0 0 auto;
  font-family: var(--sans);
  font-size: 16px;
  font-style: normal;
  height: 31px;
  justify-content: center;
  transition: transform 180ms ease, background 180ms ease;
  width: 31px;
}

.faq-list details[open] summary i {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-list details p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
  margin: -5px 45px 25px 0;
  max-width: 620px;
}

.final-cta {
  align-items: center;
  background: var(--orange);
  color: var(--white);
  display: flex;
  justify-content: center;
  min-height: 560px;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.final-cta::before,
.final-cta::after {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  content: "";
  height: 750px;
  position: absolute;
  top: -500px;
  width: 750px;
}

.final-cta::before { left: -250px; }
.final-cta::after { right: -250px; }

.cta-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.cta-content > span {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.8px;
}

.final-cta h2 {
  color: var(--white);
  font-size: clamp(70px, 9vw, 126px);
  margin: 25px 0 35px;
}

.final-cta h2 em { color: var(--acid); }

.cta-content small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 9px;
  margin-top: 15px;
}

.cta-fruit {
  filter: drop-shadow(0 28px 28px rgba(111, 27, 0, 0.28));
  font-size: clamp(100px, 15vw, 220px);
  position: absolute;
  z-index: 1;
}

.cta-fruit-left {
  left: -45px;
  top: 90px;
  transform: rotate(-22deg);
}

.cta-fruit-right {
  bottom: 0;
  right: -35px;
  transform: rotate(20deg);
}

.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding-bottom: 30px;
  padding-top: 80px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 70px;
}

.brand-light { color: var(--cream); }

.footer-brand p {
  color: rgba(245, 240, 230, 0.45);
  font-family: var(--serif);
  font-size: 19px;
  margin-top: 17px;
}

.footer-links {
  display: grid;
  gap: clamp(55px, 7vw, 110px);
  grid-template-columns: repeat(3, 1fr);
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links span {
  color: rgba(245, 240, 230, 0.35);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 1.3px;
  margin-bottom: 4px;
}

.footer-links a { font-size: 11px; }
.footer-links a:hover { color: var(--acid); }

.footer-bottom {
  border-top: 1px solid rgba(245, 240, 230, 0.12);
  color: rgba(245, 240, 230, 0.38);
  display: flex;
  font-size: 8px;
  justify-content: space-between;
  padding-top: 23px;
}

.footer-bottom > div {
  display: flex;
  gap: 24px;
}

.auth-modal {
  background: var(--cream);
  border: 0;
  border-radius: 24px;
  color: var(--ink);
  max-width: 450px;
  padding: 43px;
  width: calc(100% - 32px);
}

.auth-modal::backdrop {
  background: rgba(12, 18, 14, 0.68);
  backdrop-filter: blur(6px);
}

.modal-close {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  font-size: 20px;
  height: 34px;
  justify-content: center;
  position: absolute;
  right: 18px;
  top: 18px;
  width: 34px;
}

.modal-fruit {
  font-size: 55px;
  margin-bottom: 18px;
}

.modal-kicker {
  color: var(--orange);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.5px;
}

.auth-modal h2 {
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 400;
  letter-spacing: -2px;
  line-height: 1;
  margin: 10px 0 16px;
}

.auth-modal > p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
  margin-bottom: 27px;
}

.auth-modal form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.auth-modal label {
  font-size: 10px;
  font-weight: 800;
}

.auth-modal input {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: 0;
  padding: 15px;
}

.auth-modal input:focus { border-color: var(--orange); }

.auth-modal form .button {
  margin-top: 6px;
  width: 100%;
}

.auth-modal form .button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-error {
  background: rgba(190, 38, 18, 0.08);
  border-radius: 9px;
  color: #a92312;
  font-size: 10px;
  margin: 3px 0;
  padding: 9px 11px;
}

.auth-switch {
  background: transparent;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  display: block;
  font-size: 10px;
  font-weight: 700;
  margin: 15px auto 0;
  padding: 4px;
}

.auth-switch:hover {
  color: var(--orange);
}

.account-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.account-panel > div:first-child span,
.account-panel > div:first-child strong {
  display: block;
}

.account-panel > div:first-child span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.account-panel > div:first-child strong {
  font-size: 14px;
  margin-top: 4px;
}

.account-stats {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: grid;
  gap: 1px;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.account-stats span {
  padding: 14px;
  text-align: center;
}

.account-stats span + span {
  border-left: 1px solid var(--line);
}

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

.account-panel .button:disabled {
  cursor: not-allowed;
  filter: grayscale(1);
  opacity: 0.45;
}

.auth-modal > small {
  color: var(--muted);
  display: block;
  font-size: 8px;
  margin-top: 16px;
  text-align: center;
}

.toast {
  align-items: center;
  background: var(--ink);
  border-radius: 12px;
  bottom: 25px;
  box-shadow: var(--shadow);
  color: var(--white);
  display: flex;
  gap: 10px;
  padding: 13px 18px;
  position: fixed;
  right: 25px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(90px);
  transition: opacity 250ms ease, transform 250ms ease, visibility 250ms ease;
  visibility: hidden;
  z-index: 50;
}

.toast.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.toast span {
  align-items: center;
  background: var(--acid);
  border-radius: 50%;
  color: var(--ink);
  display: flex;
  font-size: 8px;
  height: 20px;
  justify-content: center;
  width: 20px;
}

.toast p {
  font-size: 10px;
  font-weight: 700;
  margin: 0;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay { transition-delay: 120ms; }
.reveal-delay-short { transition-delay: 80ms; }
.reveal-delay-long { transition-delay: 160ms; }

@keyframes float-fruit {
  0%, 100% { transform: translate(22px, 17px) rotate(12deg); }
  50% { transform: translate(22px, 7px) rotate(17deg); }
}

@keyframes pulse-drop {
  0%, 100% { opacity: 0.45; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

@keyframes timeline {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@keyframes berry-bob {
  0%, 100% { transform: translateY(0) rotate(45deg); }
  50% { transform: translateY(-12px) rotate(50deg); }
}

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

@keyframes loader-pop {
  0%, 100% { transform: rotate(-7deg) scale(0.94); }
  50% { transform: rotate(7deg) scale(1.08); }
}

@keyframes generation-progress {
  to { width: 100%; }
}

@media (max-width: 1100px) {
  .site-header { grid-template-columns: auto 1fr auto; }
  .main-nav { gap: 22px; justify-self: center; }
  .text-button { display: none; }
  .hero { gap: 30px; grid-template-columns: 0.85fr 1.15fr; }
  .hero-visual { transform: scale(0.9); }
  .studio-grid { grid-template-columns: 1fr; }
  .output-panel { min-height: 720px; }
  .generated-preview { min-height: 560px; }
  .showcase-card { padding: 0 22px; }
}

@media (max-width: 820px) {
  .section-pad,
  .site-header {
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-header {
    display: flex;
    height: 72px;
    justify-content: space-between;
  }

  .menu-button {
    display: flex;
    flex-direction: column;
    gap: 6px;
    order: 3;
  }

  .menu-button span {
    background: var(--ink);
    display: block;
    height: 2px;
    transition: transform 180ms ease;
    width: 22px;
  }

  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

  .main-nav {
    align-items: flex-start;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    gap: 5px;
    left: 0;
    padding: 20px;
    position: absolute;
    top: 72px;
    width: 100%;
  }

  .main-nav.is-open { display: flex; }

  .main-nav a {
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 24px;
    padding: 12px 0;
    width: 100%;
  }

  .header-actions {
    margin-left: auto;
    margin-right: 10px;
  }

  .header-actions .button { min-height: 39px; }

  .hero {
    grid-template-columns: 1fr;
    padding-bottom: 85px;
    padding-top: 60px;
  }

  .cast-builder {
    grid-template-columns: 1fr;
  }

  .cast-intro {
    position: static;
  }

  .hero h1 { font-size: clamp(61px, 15vw, 88px); }

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

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

  .section-heading,
  .showcase-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .section-heading > p,
  .showcase-heading > p {
    max-width: 560px;
  }

  .showcase-grid {
    gap: 50px;
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .showcase-card,
  .showcase-card:last-child {
    border: 0;
    padding: 0;
  }

  .showcase-art {
    aspect-ratio: 1;
    max-height: 570px;
  }

  .viral-layout { grid-template-columns: 1fr; }

  .tip-selector {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    padding-bottom: 20px;
    padding-right: 0;
  }

  .viral-formula {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }

  .formula { flex-wrap: wrap; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card-featured { transform: none; }
  .faq { grid-template-columns: 1fr; }

  .footer-top {
    flex-direction: column;
    gap: 55px;
  }
}

@media (max-width: 560px) {
  .header-actions { display: none; }
  .hero { min-height: auto; }
  .hero h1 { font-size: 57px; }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button { width: 100%; }
  .watch-button { justify-content: center; }

  .hero-visual {
    min-height: 530px;
    transform: scale(0.84);
  }

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

  .phone {
    height: 565px;
    width: 283px;
  }

  .prompt-float {
    bottom: -12px;
    left: -24px;
  }

  .floating-label { display: none; }

  .studio {
    padding-bottom: 85px;
    padding-top: 105px;
  }

  .cast-stage {
    grid-template-columns: 1fr;
  }

  .cast-card:first-child {
    grid-column: auto;
  }

  .section-heading h2,
  .showcase-heading h2,
  .pricing-heading h2,
  .faq-heading h2 {
    font-size: 50px;
  }

  .generator-panel,
  .output-panel {
    padding: 22px 16px;
  }

  .control-grid,
  .style-options {
    grid-template-columns: 1fr;
  }

  .output-panel { min-height: 600px; }
  .generated-preview { min-height: 460px; }
  .berry-stage { transform: translate(-50%, -50%) scale(0.8); }

  .output-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .download-button {
    justify-content: space-between;
    width: 100%;
  }

  .viral-lab,
  .pricing {
    padding-bottom: 90px;
    padding-top: 95px;
  }

  .tip-tab {
    gap: 11px;
    grid-template-columns: 25px 1fr 28px;
  }

  .tip-detail { min-height: 520px; }
  .formula { gap: 11px; }
  .final-cta { min-height: 500px; }
  .final-cta h2 { font-size: 66px; }

  .cta-fruit {
    font-size: 100px;
    opacity: 0.62;
  }

  .cta-fruit-left { left: -40px; top: 65px; }
  .footer-links { gap: 38px; }

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

  .auth-modal { padding: 36px 24px 28px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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