:root {
  --ink: #271839;
  --violet: #2a1545;
  --violet-2: #4a2d68;
  --lavender: #a99ac6;
  --lavender-soft: #e4ddf1;
  --cream: #fbf4e7;
  --cream-2: #f4e8d4;
  --rose: #d9a99c;
  --gold: #d9b56f;
  --white: #fffaf2;
  --shadow: 0 26px 80px rgba(33, 18, 54, 0.18);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(217, 181, 111, 0.24), transparent 28rem),
    radial-gradient(circle at 85% 10%, rgba(169, 154, 198, 0.44), transparent 24rem),
    linear-gradient(180deg, #fff8ed 0%, #f7ead8 42%, #ede2f1 100%);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(42, 21, 69, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 21, 69, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

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

button,
input {
  font: inherit;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style-position: inside;
}

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

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 16px 0 40px;
  padding: 12px 14px;
  border: 1px solid rgba(74, 45, 104, 0.13);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.76);
  box-shadow: 0 18px 44px rgba(42, 21, 69, 0.08);
  backdrop-filter: blur(18px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  position: relative;
  display: block;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 14px;
  background: linear-gradient(135deg, #3a2a61, #6f5ba7);
  box-shadow: 0 12px 28px rgba(58, 42, 97, 0.2);
}

.brand-mark-accent,
.brand-mark-inner {
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 999px;
}

.brand-mark-accent {
  top: 6px;
  left: 16px;
  background: #6f5ba7;
}

.brand-mark-inner {
  top: 9px;
  left: 9px;
  background: #fff8ed;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-title {
  color: #3a2a61;
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.brand-subtitle {
  color: #776d82;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.15;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(39, 24, 57, 0.68);
  font-size: 14px;
  font-weight: 700;
}

.nav a:hover,
.nav-cta:hover {
  color: var(--violet);
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--cream);
  background: var(--violet);
  font-size: 15px;
  font-weight: 800;
}

.section {
  padding: 78px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 56px;
  min-height: 720px;
  padding-top: 28px;
}

.eyebrow {
  color: var(--violet-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--violet);
  font-weight: 700;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 760px;
  margin-top: 18px;
  font-size: clamp(2.55rem, 5.6vw, 5.35rem);
  line-height: 0.96;
}

h2 {
  font-size: clamp(2.05rem, 4.1vw, 4.2rem);
  line-height: 0.96;
}

h3 {
  color: var(--violet);
  font-size: 25px;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.hero-subtitle,
.section-heading p,
.creator-copy p,
.waitlist-panel p,
.site-footer p {
  color: rgba(39, 24, 57, 0.72);
  font-size: 16px;
  line-height: 1.75;
}

.hero-subtitle {
  max-width: 660px;
  margin-top: 26px;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

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

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

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

.button-primary {
  color: var(--cream);
  background: linear-gradient(135deg, var(--violet), #6c4d86);
  box-shadow: 0 18px 42px rgba(42, 21, 69, 0.24);
}

.button-secondary {
  color: var(--violet);
  background: rgba(255, 250, 242, 0.78);
  box-shadow: inset 0 0 0 1px rgba(74, 45, 104, 0.16);
}

.microcopy {
  margin-top: 18px;
  color: rgba(39, 24, 57, 0.58);
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
}

.phone {
  position: relative;
  z-index: 2;
  width: min(360px, 88vw);
  padding: 18px;
  border: 10px solid #241431;
  border-radius: 48px;
  background:
    radial-gradient(circle at top right, rgba(217, 181, 111, 0.28), transparent 11rem),
    linear-gradient(180deg, #fff8ed, #eee0f2);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 250, 242, 0.52);
}

.phone::after {
  position: absolute;
  right: -34px;
  bottom: 74px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle at 38% 35%, #fff7e7, #d7b066 62%, #7f5f99 63%);
  box-shadow: 0 18px 46px rgba(42, 21, 69, 0.18);
}

.phone-top {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.phone-top span {
  width: 78px;
  height: 6px;
  border-radius: 999px;
  background: rgba(42, 21, 69, 0.24);
}

.app-card,
.mini-card {
  border: 1px solid rgba(74, 45, 104, 0.1);
  border-radius: 22px;
  background: rgba(255, 250, 242, 0.78);
  box-shadow: 0 16px 34px rgba(42, 21, 69, 0.08);
}

.app-card {
  padding: 18px;
}

.app-label {
  margin-bottom: 8px;
  color: var(--violet-2);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.input-card p:last-child,
.output-card p:last-child {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.45;
}

.tone-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.tone {
  padding: 9px 11px;
  border: 1px solid rgba(74, 45, 104, 0.12);
  border-radius: 999px;
  color: rgba(39, 24, 57, 0.7);
  background: rgba(255, 250, 242, 0.58);
  font-size: 0.74rem;
  font-weight: 800;
}

.tone.active {
  color: var(--cream);
  background: var(--violet);
}

.output-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.mini-card {
  padding: 14px;
}

.mini-card p {
  color: var(--violet);
  font-size: 0.88rem;
  font-weight: 800;
}

.mini-card span {
  display: block;
  margin-top: 8px;
  color: rgba(39, 24, 57, 0.56);
  font-size: 0.8rem;
}

.cosmic-orbit {
  position: absolute;
  border: 1px solid rgba(74, 45, 104, 0.18);
  border-radius: 50%;
  animation: float 9s ease-in-out infinite;
}

.orbit-one {
  width: 520px;
  height: 520px;
  transform: rotate(-12deg) scaleY(0.74);
}

.orbit-two {
  width: 410px;
  height: 410px;
  transform: rotate(22deg) scaleY(0.8);
  animation-delay: -2s;
}

.moon {
  position: absolute;
  z-index: 3;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 18px 48px rgba(42, 21, 69, 0.16);
}

.moon-one {
  top: 76px;
  left: 56px;
  width: 46px;
  height: 46px;
}

.moon-two {
  right: 52px;
  bottom: 116px;
  width: 24px;
  height: 24px;
  background: var(--lavender-soft);
}

.section-heading {
  display: grid;
  gap: 18px;
  max-width: 900px;
  margin-bottom: 34px;
}

.section-heading.narrow {
  max-width: 760px;
}

.problem-grid,
.feature-grid,
.steps,
.generated-grid {
  display: grid;
  gap: 16px;
}

.problem-grid {
  grid-template-columns: repeat(5, 1fr);
}

.soft-card,
.feature-card,
.generated-card,
.step-card,
.request-card,
.comparison-column,
.waitlist-panel,
.faq details {
  border: 1px solid rgba(74, 45, 104, 0.12);
  background: rgba(255, 250, 242, 0.62);
  box-shadow: 0 18px 48px rgba(42, 21, 69, 0.08);
  backdrop-filter: blur(14px);
}

.soft-card {
  min-height: 136px;
  padding: 22px;
  border-radius: var(--radius-md);
  color: var(--violet);
  font-weight: 800;
  line-height: 1.35;
}

.solution,
.example {
  position: relative;
}

.solution::before,
.example::before {
  position: absolute;
  inset: 44px -7vw auto auto;
  z-index: -1;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(217, 181, 111, 0.26), transparent 68%);
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  display: grid;
  gap: 14px;
  min-height: 260px;
  padding: 26px;
  border-radius: var(--radius-lg);
}

.feature-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--cream);
  background: var(--violet);
  font-size: 0.82rem;
  font-weight: 900;
}

.feature-card p,
.generated-card p,
.generated-card li,
.faq p {
  color: rgba(39, 24, 57, 0.68);
  line-height: 1.7;
}

.creators {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 34px;
}

.creator-copy {
  display: grid;
  gap: 18px;
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.comparison-column {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.comparison-column h3 {
  margin-bottom: 18px;
  font-size: 1.25rem;
}

.comparison-column li {
  position: relative;
  margin-top: 13px;
  padding-left: 24px;
  color: rgba(39, 24, 57, 0.72);
  line-height: 1.5;
  list-style: none;
}

.comparison-column li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "\2726";
}

.comparison-column.featured {
  color: var(--cream);
  background: linear-gradient(145deg, var(--violet), #563374);
}

.comparison-column.featured h3,
.comparison-column.featured li {
  color: var(--cream);
}

.comparison-column.featured li::before {
  color: var(--rose);
}

.example-board {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(74, 45, 104, 0.12);
  border-radius: 38px;
  background: rgba(42, 21, 69, 0.07);
}

.request-card {
  padding: 24px;
  border-radius: var(--radius-md);
}

.request-card span {
  color: var(--violet-2);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.request-card p {
  margin-top: 8px;
  color: var(--violet);
  font-size: 22px;
  font-weight: 800;
}

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

.generated-card {
  padding: 26px;
  border-radius: var(--radius-lg);
}

.generated-card.wide {
  grid-column: 1 / -1;
}

.generated-card h3 {
  margin-bottom: 14px;
}

.generated-card li {
  margin-top: 11px;
  list-style-position: outside;
  margin-left: 18px;
}

.steps {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 28px;
}

.step-card {
  min-height: 190px;
  padding: 24px;
  border-radius: var(--radius-lg);
}

.step-card span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--violet);
  background: var(--cream-2);
  font-weight: 900;
}

.centered {
  margin-inline: auto;
}

.waitlist-panel {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 6vw, 70px);
  border-radius: 44px;
  background:
    radial-gradient(circle at 92% 14%, rgba(217, 181, 111, 0.32), transparent 14rem),
    linear-gradient(135deg, rgba(255, 250, 242, 0.82), rgba(228, 221, 241, 0.74));
}

.waitlist-form {
  display: grid;
  gap: 10px;
  max-width: 690px;
  margin-top: 10px;
}

.waitlist-form label {
  color: var(--violet);
  font-size: 0.86rem;
  font-weight: 900;
}

.form-row {
  display: flex;
  gap: 10px;
}

.form-row input {
  flex: 1;
  min-height: 56px;
  min-width: 0;
  padding: 0 18px;
  border: 1px solid rgba(74, 45, 104, 0.16);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 250, 242, 0.9);
  outline: none;
}

.form-row input:focus {
  border-color: rgba(74, 45, 104, 0.5);
  box-shadow: 0 0 0 4px rgba(169, 154, 198, 0.24);
}

.form-note {
  color: rgba(39, 24, 57, 0.58);
  font-size: 0.9rem;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq .section-heading.narrow {
  max-width: none;
}

.faq h2 {
  white-space: nowrap;
}

.faq details {
  border-radius: 22px;
  padding: 20px 22px;
}

.faq summary {
  cursor: pointer;
  color: var(--violet);
  font-weight: 900;
}

.faq summary::marker {
  color: var(--gold);
}

.faq p {
  margin-top: 12px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  padding: 42px 0 54px;
  color: rgba(39, 24, 57, 0.58);
  font-size: 14px;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 22px;
  justify-self: center;
}

.copyright {
  justify-self: end;
  white-space: nowrap;
}

.footer-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
}

.footer-links a {
  color: rgba(39, 24, 57, 0.62);
}

.footer-links a:hover {
  color: var(--violet);
}

.legal-page {
  padding-bottom: 80px;
}

.legal-hero {
  max-width: 780px;
  padding: 72px 0 38px;
}

.legal-hero h1 {
  color: var(--violet);
}

.legal-hero p {
  margin-top: 18px;
  color: rgba(39, 24, 57, 0.68);
  font-size: 16px;
  line-height: 1.75;
}

.legal-content {
  display: grid;
  gap: 18px;
  max-width: 860px;
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid rgba(74, 45, 104, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 242, 0.68);
  box-shadow: 0 18px 48px rgba(42, 21, 69, 0.08);
  backdrop-filter: blur(14px);
}

.legal-content section {
  display: grid;
  gap: 8px;
}

.legal-content h2 {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 25px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.legal-content p,
.legal-content li {
  color: rgba(39, 24, 57, 0.68);
  font-size: 16px;
  line-height: 1.7;
}

.legal-content ul {
  display: grid;
  gap: 6px;
  padding-left: 18px;
}

.legal-content li {
  list-style-position: outside;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -18px;
  }
}

@media (max-width: 980px) {
  .hero,
  .creators {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 28px;
  }

  .hero-visual {
    min-height: 580px;
  }

  .problem-grid,
  .feature-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .site-header {
    top: 10px;
    margin-bottom: 18px;
  }

  .nav-cta {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .section {
    padding: 54px 0;
  }

  .hero-subtitle,
  .section-heading p,
  .creator-copy p,
  .waitlist-panel p {
    font-size: 1rem;
  }

  .faq h2 {
    white-space: normal;
  }

  .hero-actions,
  .form-row,
  .site-footer,
  .footer-meta {
    align-items: stretch;
  }

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

  .footer-meta,
  .copyright {
    justify-self: start;
  }

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

  .button,
  .form-row input {
    width: 100%;
  }

  .hero-visual {
    min-height: 520px;
  }

  .orbit-one {
    width: 380px;
    height: 380px;
  }

  .orbit-two {
    width: 310px;
    height: 310px;
  }

  .phone {
    border-width: 8px;
    border-radius: 40px;
  }

  .phone::after {
    right: -14px;
    width: 54px;
    height: 54px;
  }

  .problem-grid,
  .feature-grid,
  .comparison,
  .generated-grid,
  .steps,
  .output-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .step-card {
    min-height: auto;
  }

  .generated-card.wide {
    grid-column: auto;
  }

  .example-board {
    padding: 12px;
    border-radius: 28px;
  }
}

@media (max-width: 460px) {
  .site-header .brand-copy {
    display: none;
  }
}

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

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