/* ============================================================
   Velora AI — landing page (DARK espresso)
   Brand: Espresso #3D3024 · Mocha #8B6F52 · Tan/Gold #C9A876
          Cream #E8DCC8 · Muted #B8AC93
   Dark, warm, boutique/editorial. Calm & premium — high-end.
   ============================================================ */

:root {
  --espresso: #3D3024;        /* primary dark canvas */
  --espresso-deep: #322619;   /* recessed panels */
  --surface: #45372A;         /* cards / raised surfaces (mocha-tinted) */
  --surface-2: #4A3B2D;       /* lighter surface / inputs highlight */
  --mocha: #8B6F52;
  --gold: #C9A876;
  --gold-soft: #D8BC93;
  --cream: #E8DCC8;
  --muted: #B8AC93;

  --ink: #E8DCC8;                       /* primary text = cream */
  --ink-soft: #B8AC93;                  /* secondary text = muted */
  --line: rgba(232, 220, 200, 0.14);
  --line-soft: rgba(232, 220, 200, 0.08);

  --maxw: 1120px;
  --radius: 20px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: "Instrument Sans", system-ui, -apple-system, sans-serif;
  background: var(--espresso);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Ambient warm glow */
.bg-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(58% 44% at 80% 4%, rgba(201, 168, 118, 0.16), transparent 70%),
    radial-gradient(50% 40% at 10% 20%, rgba(139, 111, 82, 0.20), transparent 72%);
  pointer-events: none;
}

/* ---------- Layout helpers ---------- */
.section, .how, .why, .contact { padding: 100px 28px; }
.section, .why, .contact { max-width: var(--maxw); margin: 0 auto; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow--light { color: var(--gold); }

h1, h2, h3 { font-family: "Fraunces", Georgia, serif; font-weight: 600; letter-spacing: -0.01em; line-height: 1.1; color: var(--cream); }
h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); }
h3 { font-size: 1.25rem; }

.section__head { max-width: 640px; margin-bottom: 56px; }
.section__lead { margin-top: 18px; font-size: 1.08rem; color: var(--ink-soft); }
.section__head--light h2 { color: var(--cream); }
.section__lead--light { color: rgba(232, 220, 200, 0.82); }

em { font-style: italic; color: var(--gold); font-weight: 400; }

/* ---------- Wordmark (logo text) ---------- */
.wordmark {
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--cream);
  font-size: 1.4rem;
  line-height: 1;
}
.wordmark__ai { color: var(--gold); font-weight: 600; margin-left: 0.28em; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  max-width: 1240px;
  margin: 0 auto;
  background: rgba(50, 38, 25, 0.72);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav__brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav__mark {
  height: 42px; width: 42px; display: block;
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(232, 220, 200, 0.16), 0 6px 16px rgba(0, 0, 0, 0.28);
}

.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 500;
  transition: color 0.2s var(--ease);
}
.nav__links a:hover { color: var(--cream); }
.nav__cta {
  background: var(--gold);
  color: var(--espresso) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600 !important;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}
.nav__cta:hover { background: var(--gold-soft); color: var(--espresso) !important; transform: translateY(-1px); }

/* ---------- Hero ---------- */
.hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 96px 28px 80px;
  text-align: center;
}
.hero__mark {
  width: 92px;
  height: 92px;
  margin-bottom: 32px;
  border-radius: 22px;
  box-shadow: 0 0 0 1px rgba(232, 220, 200, 0.14), 0 18px 44px rgba(0, 0, 0, 0.42);
}
.hero__headline {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.04;
  color: var(--cream);
}
.hero__headline .accent { color: var(--gold); }
.hero__sub {
  margin-top: 26px;
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  font-weight: 500;
  color: var(--cream);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.hero__place {
  margin-top: 14px;
  font-size: 0.98rem;
  color: var(--ink-soft);
}
.dot { color: var(--gold); padding: 0 4px; }
.flag { font-size: 1.05em; }

.hero__cta {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: 999px;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
  cursor: pointer;
  border: none;
}
.btn--primary {
  background: var(--gold);
  color: var(--espresso);
  box-shadow: 0 12px 30px rgba(201, 168, 118, 0.22);
}
.btn--primary:hover { background: var(--gold-soft); transform: translateY(-2px); box-shadow: 0 16px 36px rgba(201, 168, 118, 0.30); }
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn--wide { width: 100%; justify-content: center; margin-top: 8px; }
.tiktok-ico { display: inline-flex; }

/* ---------- What we do: cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.38);
  border-color: rgba(201, 168, 118, 0.55);
}
.card__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(201, 168, 118, 0.28), rgba(139, 111, 82, 0.22));
  color: var(--gold);
  margin-bottom: 20px;
}
.card h3 { margin-bottom: 10px; color: var(--cream); }
.card p { color: var(--ink-soft); font-size: 0.98rem; }
.card__badge {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 118, 0.14);
  padding: 4px 10px;
  border-radius: 999px;
}

/* ---------- How it works (recessed panel) ---------- */
.how {
  background: var(--espresso-deep);
  border: 1px solid var(--line-soft);
  border-radius: 32px;
  max-width: var(--maxw);
  margin: 0 auto;
  color: var(--cream);
}
.how .section__head { margin-left: auto; margin-right: auto; text-align: center; }
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.step {
  background: rgba(232, 220, 200, 0.04);
  border: 1px solid rgba(232, 220, 200, 0.12);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.step__num {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}
.step h3 { color: var(--cream); margin-bottom: 10px; }
.step p { color: rgba(232, 220, 200, 0.72); font-size: 0.98rem; }

/* ---------- Why Velora ---------- */
.why { text-align: center; }
.why__line {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.35rem, 3.4vw, 2rem);
  font-weight: 500;
  line-height: 1.4;
  max-width: 820px;
  margin: 12px auto 56px;
  color: var(--cream);
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat {
  text-align: left;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
}
.stat__k { display: block; font-weight: 700; color: var(--gold); font-size: 1.1rem; margin-bottom: 6px; }
.stat__v { display: block; color: var(--ink-soft); font-size: 0.92rem; }

/* ---------- Contact ---------- */
.contact__inner {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 64px 56px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}
.contact h2 { margin-bottom: 14px; }
.contact__lead { color: var(--ink-soft); max-width: 560px; font-size: 1.05rem; margin-bottom: 36px; }
.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 640px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.85rem; font-weight: 500; color: var(--ink-soft); }
.field input, .field textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--cream);
  background: var(--espresso-deep);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 16px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(184, 172, 147, 0.5); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 168, 118, 0.18);
}
.contact__form .btn--wide { grid-column: 1 / -1; }
.contact__alt { margin-top: 22px; font-size: 0.95rem; color: var(--ink-soft); }
.contact__alt a { color: var(--gold); font-weight: 600; text-decoration: none; }
.contact__alt a:hover { text-decoration: underline; }
.muted { color: rgba(184, 172, 147, 0.6); font-size: 0.88rem; }

/* ---------- Footer ---------- */
.footer {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 56px 28px 64px;
  text-align: center;
  border-top: 1px solid var(--line-soft);
}
.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  margin-bottom: 18px;
}
.footer__mark {
  height: 38px; width: 38px; display: block;
  border-radius: 9px;
  box-shadow: 0 0 0 1px rgba(232, 220, 200, 0.16);
}
.footer__brand .wordmark { font-size: 1.25rem; }
.footer__tag { color: var(--ink-soft); font-size: 0.98rem; }
.footer__socials { display: flex; gap: 22px; justify-content: center; margin: 20px 0 24px; }
.footer__socials a {
  color: var(--cream);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.94rem;
  transition: color 0.2s var(--ease);
}
.footer__socials a:hover { color: var(--gold); }
.footer__copy { color: rgba(184, 172, 147, 0.6); font-size: 0.85rem; }

/* ---------- Lead form: honeypot + status ---------- */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-status {
  grid-column: 1 / -1;
  font-size: 0.95rem;
  min-height: 1.3em;
  margin-top: 4px;
}
.form-status--ok { color: var(--gold); font-weight: 600; }
.form-status--err { color: #E0A08C; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

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

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav__links a:not(.nav__cta) { display: none; }
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .contact__form { grid-template-columns: 1fr; }
  .contact__inner { padding: 44px 26px; }
  .section, .how, .why, .contact { padding: 72px 22px; }
  .how { border-radius: 24px; }
}
@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr; }
  .hero { padding-top: 64px; }
  .btn { width: 100%; justify-content: center; }
  .hero__cta { flex-direction: column; }
}
</content>
</invoke>
