:root {
  --pink-700: #e680b5;
  --pink-600: #c6759f;
  --pink-500: #f2b6d3;
  --pink-400: #f7dce8;
  --pink-200: #f5f1ed;
  --pink-100: #fbf8f6;
  --pink-50: #fdfbf9;
  --pink-border: rgba(169, 147, 135, 0.35);
  --pink-border-soft: rgba(169, 147, 135, 0.18);
  --ink-900: #1f1a1c;
  --ink-700: #3d3338;
  --ink-500: #6e6369;
  --ink-200: #e2d8d2;
  --white: #ffffff;
  --cream: #fbf6f3;
  --shadow: 0 20px 60px rgba(31, 22, 40, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Sora", system-ui, sans-serif;
  color: var(--ink-900);
  background: linear-gradient(180deg, var(--pink-50) 0%, #ffffff 45%, var(--pink-100) 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  scroll-padding-top: 90px;
}

.bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  z-index: 0;
  opacity: 0.65;
}

.orb-one {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(231, 214, 204, 0.45), rgba(231, 214, 204, 0));
  top: -140px;
  right: -180px;
}

.orb-two {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(242, 182, 211, 0.25), rgba(242, 182, 211, 0));
  bottom: 200px;
  left: -160px;
}

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

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

.container {
  width: min(1120px, 90vw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 242, 248, 0.9);
  backdrop-filter: blur(12px);
  z-index: 10;
  border-bottom: 1px solid var(--pink-border-soft);
  height: 76px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  height: 76px;
}

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

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--pink-700), var(--pink-500));
  display: grid;
  place-items: center;
  color: white;
  font-weight: 700;
}

.logo {
  height: 32px;
  width: auto;
  display: block;
}

.beta-pill {
  font-family: "Sora", sans-serif;
  font-size: 12px;
  background: var(--pink-200);
  color: var(--pink-700);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--pink-border);
}

.nav-links {
  display: flex;
  gap: 24px;
  font-weight: 500;
  color: var(--ink-700);
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--pink-700);
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

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

button,
.primary,
.ghost {
  font-family: "Sora", sans-serif;
  border: none;
  cursor: pointer;
}

.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;
}

.lang-select {
  appearance: none;
  border: 1px solid var(--pink-border);
  background: white;
  color: var(--ink-700);
  font-weight: 600;
  padding: 10px 36px 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7l5 6 5-6' stroke='%23E680B5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.lang-select:focus {
  outline: 2px solid rgba(253, 141, 199, 0.6);
  outline-offset: 2px;
}

.primary,
.ghost {
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary {
  background: linear-gradient(135deg, var(--pink-700), var(--pink-500));
  color: white;
  box-shadow: 0 16px 35px rgba(221, 121, 177, 0.35);
}

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

.ghost {
  background: white;
  color: var(--ink-700);
  border: 1px solid var(--ink-200);
}

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

.large {
  padding: 14px 26px;
  font-size: 16px;
}

.hero {
  padding: 70px 0 60px;
}

.hero-grid {
  display: grid;
  gap: 60px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: var(--ink-500);
  font-weight: 600;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  color: var(--ink-900);
}

.accent {
  color: var(--pink-700);
}

.headline-cta {
  display: block;
  margin-top: 18px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink-700);
}

.headline-break {
  display: block;
  margin-top: 12px;
  color: var(--pink-700);
  font-weight: 600;
}

.tm {
  font-size: 0.55em;
  vertical-align: super;
  line-height: 0;
  margin-left: 2px;
}

h1 {
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 16px 0 20px;
}

.lead {
  font-size: 18px;
  color: var(--ink-700);
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin: 24px 0 16px;
  flex-wrap: wrap;
}

.trial-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pink-700);
  background: var(--pink-200);
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--pink-border);
  margin-bottom: 12px;
}

.trial-badge::before {
  content: "✓";
  font-size: 12px;
}

.hero-beta-note {
  font-size: 13px;
  color: var(--ink-500);
  max-width: 460px;
  margin-bottom: 12px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.hero-proof h3 {
  font-size: 26px;
}

.hero-proof p {
  color: var(--ink-500);
}

.hero-visual {
  position: relative;
}

.app-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--pink-border-soft);
}

.app-top {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.app-chip {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--pink-100);
  color: var(--ink-700);
  font-size: 12px;
  font-weight: 600;
}

.app-preview {
  border-radius: var(--radius-md);
  border: 1px solid rgba(214, 205, 223, 0.5);
  background: #fff;
}

.app-stats {
  display: flex;
  gap: 24px;
  margin-top: 18px;
  font-size: 14px;
  color: var(--ink-500);
  align-items: center;
  flex-wrap: wrap;
}

.app-stats strong {
  display: block;
  color: var(--ink-900);
  font-size: 18px;
  margin-top: 4px;
}

.app-sample {
  font-size: 12px;
  color: var(--ink-500);
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--pink-100);
  border: 1px solid var(--pink-border-soft);
}

.hero-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink-500);
}




.features,
.beta,
.pricing,
.testimonials,
.faq,
.waitlist {
  padding: 70px 0;
  scroll-margin-top: 90px;
}

.beta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.beta-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--pink-border-soft);
  box-shadow: 0 12px 26px rgba(31, 22, 40, 0.06);
}

.icon-chip {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--pink-100);
  display: grid;
  place-items: center;
  color: var(--pink-700);
  margin-bottom: 14px;
}

.icon-chip svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.beta-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.beta-card p {
  color: var(--ink-500);
  line-height: 1.6;
}

.section-title {
  max-width: 640px;
  margin-bottom: 32px;
}

.section-title h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 12px 0 16px;
}

.section-title p {
  color: var(--ink-500);
  line-height: 1.6;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.feature-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--pink-border-soft);
  box-shadow: 0 12px 30px rgba(31, 22, 40, 0.08);
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--ink-500);
  line-height: 1.6;
}

.workflow {
  background: var(--cream);
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.workflow-step {
  background: white;
  padding: 26px;
  border-radius: var(--radius-md);
  border: 1px solid var(--pink-border-soft);
  box-shadow: 0 10px 26px rgba(31, 22, 40, 0.08);
}

.workflow-step span {
  font-size: 28px;
  font-family: "Playfair Display", serif;
  color: var(--ink-700);
}

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

.workflow-step p {
  color: var(--ink-500);
}

.callout {
  padding: 40px 0;
}

.callout-box {
  background: linear-gradient(135deg, var(--pink-100), #ffffff);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--pink-border);
}

.callout-box h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
}

.callout-box p {
  color: var(--ink-700);
  margin-top: 10px;
  line-height: 1.6;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
  color: var(--ink-500);
  font-weight: 600;
}

.toggle {
  width: 54px;
  height: 30px;
  border-radius: 999px;
  background: var(--pink-100);
  border: 1px solid var(--ink-200);
  position: relative;
  padding: 4px;
}

.toggle span {
  position: absolute;
  left: 6px;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--pink-700);
  box-shadow: 0 6px 12px rgba(230, 128, 181, 0.35);
  transition: transform 0.2s ease;
}

.toggle.active span {
  transform: translateX(22px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.price-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 30px;
  border: 1px solid var(--pink-border-soft);
  box-shadow: 0 12px 30px rgba(31, 22, 40, 0.08);
  display: grid;
  gap: 20px;
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--ink-500);
}

.price-card ul li::before {
  content: "•";
  color: var(--ink-500);
  margin-right: 8px;
}

.price-card.featured {
  background: #ffffff;
  border: 2px solid rgba(230, 128, 181, 0.35);
  box-shadow: 0 18px 45px rgba(31, 22, 40, 0.12);
  position: relative;
}

.price-card .pill {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--pink-700);
  color: white;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.price-amount {
  font-size: 34px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-amount .per {
  font-size: 14px;
  color: var(--ink-500);
}

.pricing-note {
  margin-top: 20px;
  color: var(--ink-500);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.testimonial-grid article {
  background: white;
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--pink-border-soft);
  box-shadow: 0 10px 24px rgba(31, 22, 40, 0.08);
}

.testimonial-grid p {
  color: var(--ink-500);
  line-height: 1.6;
  margin-bottom: 16px;
}

.faq {
  background: var(--cream);
}

.faq-grid {
  display: grid;
  gap: 16px;
}

.faq details {
  background: white;
  border-radius: var(--radius-md);
  padding: 18px 22px;
  border: 1px solid var(--pink-border-soft);
}

.faq summary {
  font-weight: 600;
  cursor: pointer;
}

.faq p {
  color: var(--ink-500);
  margin-top: 12px;
  line-height: 1.6;
}

.waitlist {
  padding: 90px 0;
}

.waitlist-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 56px;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(260px, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--pink-border-soft);
}

.waitlist-copy {
  display: grid;
  gap: 14px;
  max-width: 420px;
}

.waitlist-card h2 {
  max-width: 18ch;
  font-size: clamp(2rem, 2.8vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-wrap: balance;
  margin: 0;
}

.waitlist-card p {
  max-width: 38ch;
  line-height: 1.65;
  font-size: 16px;
  margin: 0;
}

.waitlist-form {
  display: grid;
  gap: 14px;
}

.form-success {
  display: none;
  font-size: 13px;
  color: var(--pink-700);
  font-weight: 600;
}

.waitlist-form.submitted .form-success {
  display: block;
}

.waitlist-form.submitted input,
.waitlist-form.submitted select,
.waitlist-form.submitted .form-group,
.waitlist-form.submitted .custom-select,
.waitlist-form.submitted button,
.waitlist-form.submitted .form-note {
  display: none;
}

.waitlist-form input,
.waitlist-form select {
  border: 1px solid rgba(214, 205, 223, 0.7);
  border-radius: 12px;
  padding: 14px;
  font-size: 15px;
  background: white;
  width: 100%;
  box-sizing: border-box;
}

.waitlist-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.waitlist-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}

.waitlist-form .form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-500);
  margin-bottom: 2px;
}

.waitlist-form select:focus {
  outline: none;
  border-color: var(--rosa-ribbon);
  box-shadow: 0 0 0 3px rgba(230, 0, 117, 0.1);
}

/* Custom Select Dropdown */
.custom-select {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(214, 205, 223, 0.7);
  border-radius: 12px;
  padding: 14px;
  font-size: 15px;
  background: white;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.custom-select-trigger:hover {
  border-color: rgba(214, 205, 223, 1);
}

.custom-select.open .custom-select-trigger {
  border-color: var(--rosa-ribbon);
  box-shadow: 0 0 0 3px rgba(230, 0, 117, 0.1);
}

.custom-select-value {
  color: var(--ink-700);
}

.custom-select-value.placeholder {
  color: var(--ink-400);
}

.custom-select-arrow {
  color: var(--ink-400);
  transition: transform 0.2s;
}

.custom-select.open .custom-select-arrow {
  transform: rotate(180deg);
}

.custom-select-options {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: white;
  border: 1px solid rgba(214, 205, 223, 0.7);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  overflow: hidden;
}

.custom-select.open .custom-select-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-select-option {
  padding: 12px 14px;
  cursor: pointer;
  transition: background-color 0.15s, color 0.15s;
  color: var(--ink-700);
}

.custom-select-option:hover {
  background-color: #FFD6E8;
  color: #E60075;
}

.custom-select-option.selected {
  background-color: #FFBDD9;
  color: #E60075;
  font-weight: 500;
}

.custom-select-option:first-child {
  border-radius: 11px 11px 0 0;
}

.custom-select-option:last-child {
  border-radius: 0 0 11px 11px;
}

.waitlist-form input:focus {
  outline: none;
  border-color: var(--rosa-ribbon);
  box-shadow: 0 0 0 3px rgba(230, 0, 117, 0.1);
}

.form-error {
  font-size: 13px;
  color: #dc2626;
  font-weight: 500;
}

.form-note {
  font-size: 12px;
  color: var(--ink-500);
}

.site-footer {
  padding: 50px 0 60px;
  border-top: 1px solid var(--pink-border-soft);
  background: linear-gradient(180deg, #ffffff 0%, var(--pink-50) 100%);
}

.footer-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: start;
}

.footer-brand p {
  margin-top: 12px;
  color: var(--ink-500);
  line-height: 1.6;
  max-width: 300px;
}

.footer-title {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  color: var(--ink-500);
  margin-bottom: 12px;
  font-weight: 600;
}

.footer-links {
  display: grid;
  gap: 10px;
  color: var(--ink-700);
  font-weight: 500;
}

.footer-links a {
  transition: color 0.2s ease;
}

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

.footer-note {
  margin-top: 16px;
  color: var(--ink-500);
  font-size: 12px;
  line-height: 1.6;
  max-width: 320px;
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }

  .callout-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 100px;
  }
}

@media (max-width: 640px) {
  .nav {
    flex-direction: column;
    gap: 16px;
  }

  .nav-actions {
    width: 100%;
    justify-content: space-between;
  }

  .hero-cta {
    flex-direction: column;
  }

  .pricing-toggle {
    flex-direction: column;
    align-items: flex-start;
  }

  .waitlist-card {
    padding: 32px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .waitlist-copy {
    max-width: 100%;
  }
}
