/* ORUVIE — landing page
   Identity: Concept 3 — soft, organic, contemporary, quietly premium.
   Ivory ground · aubergine editorial serif · rose dot as the signature device. */

:root {
  --ivory: #faf7f3;
  --ivory-deep: #f4efe8;
  --white: #fffdfb;
  --aubergine: #5b3a57;
  --aubergine-deep: #462c43;
  --ink: #4a3a48;
  --ink-soft: #7a6a78;
  --rose: #b88795;
  --rose-deep: #a5707f;
  --blush: #f2d9d6;
  --blush-soft: #f8e9e6;
  --sage: #d8d9d1;

  --serif: "Playfair Display", "Georgia", serif;
  --sans: "Inter", -apple-system, "Segoe UI", sans-serif;

  --measure: 34rem;
  --gutter: clamp(1.25rem, 5vw, 3rem);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--blush); color: var(--aubergine-deep); }

a { color: var(--aubergine); }

:focus-visible {
  outline: 2px solid var(--rose-deep);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- wordmark ---------- */

.wordmark {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--aubergine);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.wordmark .dotless {
  position: relative;
  display: inline-block;
}

.wordmark .dotless::after {
  content: "";
  position: absolute;
  top: 0.08em;
  left: 50%;
  transform: translateX(-50%);
  width: 0.14em;
  height: 0.14em;
  border-radius: 50%;
  background: var(--rose);
}

/* ---------- nav ---------- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem var(--gutter);
  background: color-mix(in srgb, var(--ivory) 88%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.nav.scrolled { border-bottom-color: var(--sage); }

.nav .wordmark { font-size: 1.45rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--ink);
}

.nav-links a:hover { color: var(--aubergine); }

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ivory);
  background: var(--aubergine);
  border: none;
  border-radius: 999px;
  padding: 0.8rem 1.8rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.btn:hover { background: var(--aubergine-deep); transform: translateY(-1px); }

.btn-nav { padding: 0.6rem 1.3rem; font-size: 0.875rem; }

.btn-light {
  background: var(--ivory);
  color: var(--aubergine);
}

.btn-light:hover { background: var(--white); }

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

/* ---------- shared section shape ---------- */

section { padding: clamp(5rem, 12vh, 8.5rem) var(--gutter); }

.shell { max-width: 68rem; margin: 0 auto; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 2.2rem;
}

.eyebrow::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--rose);
  flex: none;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--aubergine);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

h2 { font-size: clamp(2rem, 4.5vw, 3.1rem); max-width: 24ch; }

.lede {
  max-width: var(--measure);
  margin-top: 1.6rem;
  font-size: 1.125rem;
  color: var(--ink);
}

.lede + .lede { margin-top: 1rem; }

em.brand-line { font-family: var(--serif); color: var(--aubergine); }

/* ---------- hero ---------- */

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 8rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -12%;
  width: 55vw;
  height: 55vw;
  max-width: 700px;
  max-height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--blush-soft) 0%, transparent 70%);
  pointer-events: none;
}

.hero .wordmark { font-size: clamp(2rem, 4vw, 2.6rem); margin-bottom: 3rem; }

.hero h1 {
  font-size: clamp(2.9rem, 8vw, 5.8rem);
  max-width: 14ch;
}

.hero h1 .turn { font-style: italic; color: var(--rose-deep); }

.hero .sub {
  max-width: 36rem;
  margin-top: 2rem;
  font-size: 1.2rem;
  color: var(--ink);
}

.hero .sub-detail {
  max-width: 34rem;
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--ink-soft);
}

.hero .btn { margin-top: 2.8rem; font-size: 1.05rem; padding: 1rem 2.4rem; }

.hero .launch-note {
  margin-top: 1.4rem;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- the problem ---------- */

.statements {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2.5rem;
}

.statement { border-top: 1px solid var(--sage); padding-top: 1.6rem; }

.statement h3 {
  font-size: 1.45rem;
  margin-bottom: 0.6rem;
}

.statement p { font-size: 0.98rem; color: var(--ink-soft); }

@media (max-width: 760px) {
  .statements { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- conversation ---------- */

.convo-section { background: var(--ivory-deep); }

.convo-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

@media (max-width: 860px) {
  .convo-grid { grid-template-columns: 1fr; }
}

.chat {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  max-width: 30rem;
}

.bubble {
  max-width: 85%;
  padding: 0.85rem 1.15rem;
  border-radius: 1.15rem;
  font-size: 0.96rem;
  line-height: 1.5;
}

.bubble.oruvie {
  align-self: flex-start;
  background: var(--white);
  border: 1px solid var(--sage);
  border-bottom-left-radius: 0.3rem;
  color: var(--aubergine-deep);
}

.bubble.you {
  align-self: flex-end;
  background: var(--aubergine);
  color: var(--ivory);
  border-bottom-right-radius: 0.3rem;
}

.chat-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: -0.3rem;
}

.chat-label.right { align-self: flex-end; }

.convo-close {
  margin-top: 2rem;
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 28rem;
}

/* ---------- introduction card ---------- */

.intro-section { background: var(--blush-soft); }

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

@media (max-width: 920px) {
  .intro-grid { grid-template-columns: 1fr; }
}

.intro-card {
  background: var(--white);
  border-radius: 1.4rem;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: 0 24px 60px -30px rgba(91, 58, 87, 0.35);
  max-width: 26.5rem;
}

.intro-card .monogram {
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--rose));
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.intro-card h3 { font-size: 1.7rem; }

.intro-card .meta {
  margin-top: 0.35rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.verified {
  margin: 1.2rem 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
}

.verified li {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--aubergine);
  background: var(--blush-soft);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
}

.verified li::before { content: "✓ "; color: var(--rose-deep); }

.why h4 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 0.9rem;
}

.why dl { display: grid; gap: 0.9rem; }

.why dt {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--aubergine-deep);
}

.why dd { font-size: 0.92rem; color: var(--ink-soft); }

.why .discuss dt::after {
  content: " · worth discussing";
  font-weight: 400;
  font-style: italic;
  color: var(--rose-deep);
}

.apply-inline {
  display: inline-block;
  margin-top: 2.2rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--aubergine);
  text-decoration: none;
  border-bottom: 1px solid var(--rose);
  padding-bottom: 0.15rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.apply-inline:hover { color: var(--rose-deep); border-color: var(--rose-deep); }

.intro-card .mock-cta {
  margin-top: 1.6rem;
  width: 100%;
  text-align: center;
  pointer-events: none;
}

/* ---------- trust ---------- */

.passport {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 44rem;
}

.passport li {
  list-style: none;
  background: var(--white);
  border: 1px solid var(--sage);
  border-radius: 0.9rem;
  padding: 1rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--aubergine-deep);
}

.passport li::before { content: "✓ "; color: var(--rose-deep); }

@media (max-width: 700px) {
  .passport { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- privacy ladder ---------- */

.privacy-section { background: var(--ivory-deep); }

.privacy-heading {
  margin-top: 4.5rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  max-width: 24ch;
}

.ladder {
  margin-top: 3.5rem;
  max-width: 30rem;
  display: flex;
  flex-direction: column;
}

.rung { display: flex; gap: 1.4rem; }

.rung .rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: none;
  width: 0.9rem;
}

.rung .rail .dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--rose);
  flex: none;
  margin-top: 0.45rem;
}

.rung .rail .line {
  width: 1px;
  flex: 1;
  background: var(--sage);
  min-height: 1.6rem;
}

.rung:last-child .rail .line { display: none; }

.rung .body { padding-bottom: 2.2rem; }

.rung h3 { font-size: 1.25rem; margin-bottom: 0.25rem; }

.rung p { font-size: 0.95rem; color: var(--ink-soft); }

.privacy-close {
  margin-top: 2.5rem;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  color: var(--aubergine);
  font-style: italic;
}

/* ---------- family ---------- */

.family-list {
  margin-top: 2.5rem;
  list-style: none;
  max-width: var(--measure);
  display: grid;
  gap: 0.7rem;
}

.family-list li { padding-left: 1.6rem; position: relative; }

.family-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--rose-deep);
  font-weight: 600;
}

.family-close {
  margin-top: 2.2rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--aubergine);
}

/* ---------- world ---------- */

.world-section {
  background: var(--aubergine);
  color: var(--blush);
  text-align: center;
  overflow: hidden;
  position: relative;
}

.world-section h2 { color: var(--ivory); margin: 0 auto; }

.world-section .lede { color: var(--blush); margin-left: auto; margin-right: auto; }

.cities {
  margin: 3rem auto 0;
  max-width: 46rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2.2rem;
  list-style: none;
}

.cities li {
  font-family: var(--serif);
  font-style: italic;
  color: var(--rose);
  font-size: 1.15rem;
  opacity: 0.85;
}

.cities li:nth-child(odd) { font-size: 1.4rem; opacity: 0.65; }

.world-aside {
  margin: 4rem auto 0;
  max-width: 30rem;
  border-top: 1px solid rgba(250, 247, 243, 0.2);
  padding-top: 2rem;
}

.world-aside h3 { color: var(--ivory); font-size: 1.3rem; margin-bottom: 0.6rem; }

.world-aside p { font-size: 0.98rem; color: var(--blush); }

/* ---------- founding circle ---------- */

.founding-section {
  background: var(--aubergine-deep);
  color: var(--blush);
}

.founding-section .eyebrow { color: var(--rose); }

.founding-section h2 { color: var(--ivory); font-size: clamp(2.4rem, 6vw, 4rem); }

.founding-section .lede { color: var(--blush); }

.benefits {
  margin: 2.6rem 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
  max-width: var(--measure);
}

.benefits li { padding-left: 1.6rem; position: relative; color: var(--blush); }

.benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--rose);
}

.founding-free {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ivory);
  margin-bottom: 2rem;
}

/* ---------- application ---------- */

.apply-section { background: var(--ivory); }

.apply-form {
  margin-top: 3rem;
  max-width: 36rem;
  display: grid;
  gap: 1.5rem;
}

.field { display: grid; gap: 0.45rem; }

.field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--aubergine-deep);
}

.field input[type="text"],
.field input[type="email"],
.field textarea {
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--sage);
  border-radius: 0.7rem;
  padding: 0.8rem 1rem;
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid var(--rose);
  outline-offset: 0;
  border-color: transparent;
}

.field textarea { min-height: 6.5rem; resize: vertical; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; }
}

.choices { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.choices label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--aubergine-deep);
  background: var(--white);
  border: 1px solid var(--sage);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.choices input { position: absolute; opacity: 0; pointer-events: none; }

.choices label:has(input:checked) {
  background: var(--aubergine);
  border-color: var(--aubergine);
  color: var(--ivory);
}

.choices label:has(input:focus-visible) {
  outline: 2px solid var(--rose-deep);
  outline-offset: 2px;
}

.apply-form .btn { justify-self: start; font-size: 1rem; padding: 0.95rem 2.2rem; }

.form-status { font-size: 0.95rem; min-height: 1.5em; }

.form-status.ok { color: var(--aubergine); }

.form-status.error { color: var(--rose-deep); }

/* ---------- footer ---------- */

footer {
  background: var(--ivory-deep);
  border-top: 1px solid var(--sage);
  padding: 3.5rem var(--gutter) 3rem;
  text-align: center;
}

footer .wordmark { font-size: 1.6rem; }

footer .tagline {
  font-family: var(--serif);
  font-style: italic;
  color: var(--aubergine);
  margin-top: 0.8rem;
}

footer nav {
  margin-top: 1.8rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.6rem;
  font-size: 0.9rem;
}

footer nav a { text-decoration: none; color: var(--ink-soft); }

footer nav a:hover { color: var(--aubergine); }

footer .fineprint {
  margin-top: 2rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

/* ---------- legal pages ---------- */

.legal {
  max-width: 44rem;
  margin: 0 auto;
  padding: 9rem var(--gutter) 5rem;
}

.legal h1 {
  font-size: clamp(2.2rem, 5vw, 3rem);
}

.legal .updated {
  margin-top: 0.8rem;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.legal h2 {
  font-size: 1.4rem;
  margin-top: 2.8rem;
  max-width: none;
}

.legal p, .legal ul { margin-top: 1rem; }

.legal ul { padding-left: 1.3rem; }

.legal li { margin-top: 0.4rem; }

.legal .note {
  margin-top: 2rem;
  padding: 1.1rem 1.4rem;
  background: var(--blush-soft);
  border-radius: 0.9rem;
  font-size: 0.95rem;
  color: var(--aubergine-deep);
}

/* ---------- reveal motion ---------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn { transition: none; }
}
