/* ── LACUDA · style.css ─────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

/* ── TOKENS ─────────────────────────────────────────────────────────── */
:root {
  --ink:          #130F1E;
  --paper:        #FDFBFF;
  --paper-mid:    #F4F0FA;
  --paper-dark:   #EDE7F6;

  --pink:         #E91E8C;
  --pink-light:   #FCE4EC;
  --pink-dark:    #880E4F;

  --purple:       #7B3FBE;
  --purple-light: #EDE7F6;
  --purple-dark:  #4A148C;

  --blue:         #3D5AFE;
  --blue-light:   #E8EAFD;
  --blue-dark:    #1A237E;

  --muted:        #7A6E8A;
  --border:       #E0D9EE;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;

  --max:    1160px;
  --radius: 10px;
}

/* ── RESET ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 48px; }

/* ── NAV ─────────────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(253,251,255,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  height: 60px;
  display: flex;
  align-items: center;
}

.nav-inner {
  width: 100%; max-width: var(--max);
  margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 30px; display: block; }

.nav-cta {
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: #fff;
  font-family: var(--sans);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.5px;
  border: none; padding: 10px 24px;
  cursor: pointer; border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}
.nav-cta:hover { opacity: 0.85; transform: translateY(-1px); }

/* ── HERO ─────────────────────────────────────────────────────────────── */
.hero {
  padding-top: 60px;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  position: relative; overflow: hidden;
  background: linear-gradient(150deg, #fdfbff 0%, #f0e6ff 35%, #ffe0ef 65%, #e8eeff 100%);
}

.hero::before {
  content: '';
  position: absolute; top: -150px; left: -150px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(123,63,190,0.14) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -100px; right: -100px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(233,30,140,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 1;
  max-width: 860px;
  padding: 100px 48px 80px;
  display: flex; flex-direction: column; align-items: center;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(123,63,190,0.1);
  border: 1px solid rgba(123,63,190,0.22);
  color: var(--purple);
  font-size: 11px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 18px; border-radius: 100px;
  margin-bottom: 40px;
  opacity: 0; animation: fadeUp 0.6s 0.1s forwards;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(54px, 7.5vw, 96px);
  font-weight: 300; line-height: 1.04; letter-spacing: -1px;
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.7s 0.25s forwards;
}

.hero-headline em {
  font-style: italic;
  background: linear-gradient(130deg, var(--pink) 0%, var(--purple) 55%, var(--blue) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-sub {
  font-size: 18px; color: var(--muted); line-height: 1.65;
  max-width: 560px; margin-bottom: 44px;
  opacity: 0; animation: fadeUp 0.7s 0.4s forwards;
}

.hero-actions {
  display: flex; gap: 16px; align-items: center;
  flex-wrap: wrap; justify-content: center;
  margin-bottom: 72px;
  opacity: 0; animation: fadeUp 0.7s 0.55s forwards;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: #fff; font-family: var(--sans);
  font-size: 14px; font-weight: 500;
  border: none; padding: 16px 38px;
  cursor: pointer; border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  box-shadow: 0 6px 28px rgba(61,90,254,0.28);
  display: inline-block;
}
.btn-primary:hover { opacity: 0.85; transform: translateY(-2px); }

.btn-ghost {
  font-family: var(--sans); font-size: 14px;
  color: var(--purple); text-decoration: none;
  font-weight: 400; transition: color 0.2s;
}
.btn-ghost:hover { color: var(--pink); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px; width: 100%; max-width: 720px;
  opacity: 0; animation: fadeUp 0.7s 0.7s forwards;
}

.hero-stat {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(224,217,238,0.8);
  border-radius: var(--radius);
  padding: 18px 22px;
  text-align: left;
  backdrop-filter: blur(10px);
}

.hero-stat-val {
  font-family: var(--serif);
  font-size: 28px; font-weight: 400; line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-val.pink   { color: var(--pink); }
.hero-stat-val.purple { color: var(--purple); }
.hero-stat-val.blue   { color: var(--blue); }

.hero-stat-label { font-size: 11px; color: var(--muted); line-height: 1.4; }

/* ── PROBLEM ─────────────────────────────────────────────────────────── */
.problem {
  background: var(--ink);
  padding: 100px 0;
  position: relative; overflow: hidden;
}

.problem::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--blue));
}

.problem-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-eyebrow {
  font-size: 11px; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase;
  display: block; margin-bottom: 16px;
}

.problem-header .section-eyebrow { color: var(--pink); }

.problem-header h2 {
  font-family: var(--serif);
  font-size: clamp(38px, 4.5vw, 60px);
  font-weight: 300; color: #fff; line-height: 1.1;
}
.problem-header h2 em { font-style: italic; color: var(--pink); }

.problem-statement {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.problem-statement .section-eyebrow { color: var(--pink); margin-bottom: 28px; }

.problem-stat {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 28px;
}

.problem-stat em { font-style: italic; color: var(--pink); }

.problem-body {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
  overflow: hidden;
}

.problem-card {
  background: rgba(255,255,255,0.04);
  padding: 44px 36px;
  transition: background 0.2s;
}
.problem-card:hover { background: rgba(255,255,255,0.08); }

.problem-num {
  font-family: var(--serif);
  font-size: 52px; font-style: italic; font-weight: 300;
  line-height: 1; margin-bottom: 22px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.problem-text {
  font-family: var(--serif);
  font-size: 20px; font-weight: 300; line-height: 1.5;
  color: rgba(255,255,255,0.8);
}
.problem-text strong { font-style: italic; font-weight: 400; color: #fff; }

/* ── TAILORED ─────────────────────────────────────────────────────────── */
.tailored {
  padding: 100px 0;
  background: var(--paper);
}

.tailored-header { max-width: 640px; margin-bottom: 52px; }

.section-title {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 300; line-height: 1.1;
}
.section-title em { font-style: italic; color: var(--purple); }

.section-sub {
  font-size: 16px; color: var(--muted);
  line-height: 1.65; margin-top: 14px;
}

.tailored-eyebrow { color: var(--purple); }

.tailored-examples {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tailored-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  transition: box-shadow 0.22s, transform 0.22s;
}
.tailored-card:hover { box-shadow: 0 10px 44px rgba(123,63,190,0.13); transform: translateY(-4px); }

.tailored-card-head {
  padding: 22px 26px 16px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 12px;
}

.t-icon {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.t-icon.pink   { background: var(--pink-light); }
.t-icon.purple { background: var(--purple-light); }
.t-icon.blue   { background: var(--blue-light); }

.tailored-card-name {
  font-family: var(--serif); font-size: 18px; font-weight: 400;
}

.tailored-card-body { padding: 18px 26px 24px; }
.tailored-card-desc { font-size: 13px; color: var(--muted); margin-bottom: 14px; line-height: 1.55; }

.search-tags { display: flex; flex-wrap: wrap; gap: 7px; }

.stag {
  font-size: 11px; padding: 4px 12px;
  border-radius: 100px; border: 1px solid var(--border);
  color: var(--ink); background: var(--paper-mid);
}
.stag.pk  { background: var(--pink-light);   border-color: rgba(233,30,140,0.25); color: var(--pink-dark); }
.stag.pp  { background: var(--purple-light); border-color: rgba(123,63,190,0.25); color: var(--purple-dark); }
.stag.bl  { background: var(--blue-light);   border-color: rgba(61,90,254,0.25);  color: var(--blue-dark); }

/* ── OUTCOMES ─────────────────────────────────────────────────────────── */
.outcomes {
  padding: 100px 0;
  background: var(--paper-mid);
  border-top: 1px solid var(--border);
}

.outcomes-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 44px;
}

.outcomes-eyebrow { color: var(--blue); }
.outcomes-count { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.outcome-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex; flex-direction: column; gap: 12px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.outcome-card:hover { box-shadow: 0 8px 36px rgba(123,63,190,0.1); transform: translateY(-3px); }

.o-icon {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin-bottom: 4px;
}
.o-icon.pk  { background: var(--pink-light);   color: var(--pink-dark); }
.o-icon.pp  { background: var(--purple-light); color: var(--purple-dark); }
.o-icon.bl  { background: var(--blue-light);   color: var(--blue-dark); }

.outcome-title { font-family: var(--serif); font-size: 18px; font-weight: 400; line-height: 1.3; }
.outcome-desc  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── HOW IT WORKS + DASHBOARD ────────────────────────────────────────── */
.how {
  padding: 100px 0;
  background: var(--ink);
  position: relative; overflow: hidden;
}

.how::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--purple), var(--pink));
}

.how-header { text-align: center; margin-bottom: 56px; }
.how-header .section-eyebrow { color: var(--blue); }
.how-header h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300; color: #fff; line-height: 1.1;
}
.how-header h2 em { font-style: italic; color: var(--blue); }

.dash-wrap {
  position: relative;
  border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 40px 100px rgba(0,0,0,0.55);
  margin-bottom: 48px;
}
.dash-wrap svg { display: block; width: 100%; }

/* Hotspots */
.hotspot { position: absolute; cursor: pointer; }

.hotspot-dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: #fff;
  border: 2px solid var(--purple);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: var(--purple);
  position: relative; z-index: 2;
  animation: pdot 2.4s infinite;
}
.hotspot-dot::before {
  content: ''; position: absolute; inset: -7px;
  border-radius: 50%;
  background: rgba(123,63,190,0.18);
  animation: pring 2.4s infinite;
}
@keyframes pdot  { 0%,100%{transform:scale(1)}50%{transform:scale(1.1)} }
@keyframes pring { 0%{opacity:1;transform:scale(1)} 100%{opacity:0;transform:scale(2.2)} }

.hotspot-tip {
  position: absolute;
  left: 30px; top: 50%; transform: translateY(-50%) translateX(-6px);
  background: #fff; border-radius: 10px;
  padding: 12px 16px; width: 210px;
  box-shadow: 0 8px 36px rgba(0,0,0,0.2);
  pointer-events: none; opacity: 0;
  transition: opacity 0.22s, transform 0.22s; z-index: 10;
}
.hotspot:hover .hotspot-tip { opacity: 1; transform: translateY(-50%) translateX(0); }
.hotspot.flip .hotspot-tip  { left: auto; right: 30px; transform: translateY(-50%) translateX(6px); }
.hotspot.flip:hover .hotspot-tip { transform: translateY(-50%) translateX(0); }

.tip-title { font-family: var(--serif); font-size: 14px; color: var(--ink); margin-bottom: 4px; }
.tip-desc  { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* Steps */
.how-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius); overflow: hidden;
}

.how-step { padding: 36px 30px; background: rgba(255,255,255,0.03); }

.step-num {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 15px; font-style: italic;
  margin-bottom: 16px;
}
.step-num.pk { background: rgba(233,30,140,0.15); color: var(--pink); }
.step-num.pp { background: rgba(123,63,190,0.15); color: var(--purple); }
.step-num.bl { background: rgba(61,90,254,0.15);  color: var(--blue); }

.step-title { font-family: var(--serif); font-size: 20px; font-weight: 400; color: #fff; margin-bottom: 10px; }
.step-desc  { font-size: 14px; color: rgba(255,255,255,0.42); line-height: 1.65; }

/* ── CONTACT ─────────────────────────────────────────────────────────── */
.contact { padding: 100px 0; background: var(--paper); }

.contact .container {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: start;
}

.contact-headline {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 300; line-height: 1.15; margin-bottom: 20px;
}
.contact-headline em {
  font-style: italic;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.contact-sub { font-size: 15px; color: var(--muted); line-height: 1.7; max-width: 380px; }

.form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 11px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); }

.field input, .field textarea {
  background: var(--paper); border: 1px solid var(--border);
  border-radius: 8px; padding: 12px 16px;
  font-family: var(--sans); font-size: 14px; color: var(--ink);
  outline: none; resize: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(123,63,190,0.1);
}
.field textarea { min-height: 110px; }

.form-submit {
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: #fff; font-family: var(--sans); font-size: 13px; font-weight: 500;
  border: none; padding: 16px 34px; cursor: pointer; border-radius: 100px;
  align-self: flex-start;
  transition: opacity 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(61,90,254,0.22);
}
.form-submit:hover { opacity: 0.85; transform: translateY(-1px); }

.form-success {
  display: none;
  background: var(--purple-light); border: 1px solid rgba(123,63,190,0.2);
  border-radius: 8px; padding: 18px 22px;
  font-family: var(--serif); font-size: 18px; font-style: italic; color: var(--purple-dark);
}

/* ── FOOTER ──────────────────────────────────────────────────────────── */
footer { background: var(--ink); padding: 32px 0; }
.footer-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-logo img { height: 22px; filter: invert(1) brightness(0.55); }
.footer-right { font-size: 12px; color: rgba(255,255,255,0.3); }

/* ── ANIMATIONS ──────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .tailored-examples, .how-steps, .problem-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .contact .container { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .outcomes-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero-stats { grid-template-columns: 1fr; max-width: 360px; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 14px; }
  .footer-inner { padding: 0 20px; flex-direction: column; gap: 10px; text-align: center; }
  .hero-inner { padding: 80px 20px 60px; }
}