/* ═══════════════════════════════════════════════════════════
   ENTRi International — style.css
   Palette: Gradient purple · Validus-inspireret
   Accent: #8060e0 / #a080f0 (light)
   Updated: May 2026
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  /* ── INT COLOURS (LOCKED) ── */
  --accent:        #8060e0;
  --accent-lt:     #a080f0;
  --accent-dim:    rgba(128, 96, 224, 0.12);
  --accent-border: rgba(128, 96, 224, 0.18);

  /* Gradient backgrounds */
  --dark-1:        #050410;   /* deepest base */
  --dark-2:        #090620;   /* card/section bg */
  --dark-3:        #0e0828;   /* lighter dark layer */
  --dark-grad:     linear-gradient(135deg, #050410 0%, #090620 30%, #0e0828 60%, #08061a 100%);
  --cards-grad:    linear-gradient(160deg, #060415 0%, #0c0822 50%, #080618 100%);

  /* Light section */
  --light-bg:      #f4f4fa;
  --light-text:    #0a0b18;
  --light-sub:     #3a3a5a;

  /* Text */
  --text-primary:  #eeeeff;   /* blue-white — NOT pure white */
  --text-muted:    rgba(238, 238, 255, 0.6);
  --text-dim:      rgba(238, 238, 255, 0.35);

  /* Borders */
  --border:        rgba(128, 96, 224, 0.12);
  --border-light:  rgba(128, 96, 224, 0.08);

  /* Radii */
  --radius-sm:   3px;
  --radius:      10px;
  --radius-lg:   12px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: var(--dark-1);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; letter-spacing: 0.01em; line-height: 1.05; }
em { font-style: italic; color: var(--accent-lt); }
p { line-height: 1.8; font-weight: 300; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 52px; height: 66px;
  background: rgba(4, 3, 14, 0.94);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-light);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 700;
  color: var(--text-primary); text-decoration: none; letter-spacing: 0.02em;
}
.nav-logo .dot { color: var(--accent-lt); }
.nav-logo .sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.06em; opacity: 0.32; margin-left: 4px; vertical-align: baseline;
}
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 12px; color: var(--text-primary);
  text-decoration: none; letter-spacing: 0.04em;
  opacity: 0.38; transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 0.9; }
.nav-cta {
  padding: 8px 22px; border: 0.5px solid rgba(128, 96, 224, 0.5);
  border-radius: var(--radius-sm); font-size: 11px; font-weight: 500;
  color: var(--accent-lt); text-decoration: none; letter-spacing: 0.08em;
  background: transparent; transition: all 0.2s; white-space: nowrap;
}
.nav-cta:hover { background: var(--accent); color: var(--dark-1); border-color: var(--accent); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--text-primary); transition: 0.3s; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center; overflow: hidden;
  background: var(--dark-grad);
}
/* Atmospheric glow orbs */
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 70% at 88% 18%, rgba(100, 60, 220, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 15% 85%, rgba(60, 80, 200, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 30% 40% at 58% 52%, rgba(140, 60, 255, 0.06) 0%, transparent 60%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 120px 52px 80px; max-width: 620px;
}
.hero-stats {
  position: absolute; right: 52px; top: 50%; transform: translateY(-50%);
  z-index: 2; display: flex; flex-direction: column; gap: 10px;
}
.stat-card {
  border-radius: var(--radius); padding: 12px 16px; width: 148px;
  border: 0.5px solid var(--accent-border);
  backdrop-filter: blur(8px);
}
.stat-card:nth-child(1) { background: rgba(100, 60, 220, 0.1); }
.stat-card:nth-child(2) { background: rgba(80, 60, 200, 0.08); }
.stat-card:nth-child(3) { background: rgba(120, 80, 240, 0.08); }

/* ── EYEBROW ── */
.eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-family: 'DM Sans', sans-serif; font-size: 9px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent-lt); opacity: 0.8; margin-bottom: 22px;
}
.eyebrow::before { content: ''; display: block; width: 22px; height: 0.5px; background: var(--accent-lt); flex-shrink: 0; }

/* ── HERO TEXT ── */
.hero-h1 { font-size: clamp(52px, 6.5vw, 84px); font-weight: 700; color: var(--text-primary); margin-bottom: 22px; }
.hero-sub { font-size: 14px; font-weight: 300; color: var(--text-primary); opacity: 0.62; line-height: 1.85; max-width: 380px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 18px; align-items: center; margin-bottom: 48px; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border: 0.5px solid rgba(128, 96, 224, 0.55);
  border-radius: var(--radius-sm); font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 500; color: var(--accent-lt);
  text-decoration: none; letter-spacing: 0.08em; background: transparent; transition: all 0.2s;
}
.btn-outline:hover { background: var(--accent); color: var(--dark-1); border-color: var(--accent); }
.price-tag { font-size: 12px; color: var(--accent-lt); opacity: 0.42; letter-spacing: 0.04em; }

/* ── STATS ── */
.stats { display: flex; gap: 36px; padding-top: 26px; border-top: 0.5px solid var(--border-light); }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; color: var(--text-primary); }
.stat-num .accent { color: var(--accent-lt); }
.stat-label { font-family: 'DM Sans', sans-serif; font-size: 9px; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase; color: var(--text-primary); opacity: 0.38; margin-top: 3px; }

/* ── PILLARS STRIP ── */
.pillars-strip {
  display: flex; justify-content: center; padding: 14px 52px;
  background: var(--dark-1); border-bottom: 1px solid var(--border-light);
}
.pillar { padding: 0 24px; text-align: center; }
.pillar + .pillar { border-left: 1px solid var(--border-light); }
.pillar-name { font-family: 'Cormorant Garamond', serif; font-size: 13px; font-weight: 600; letter-spacing: 0.04em; color: var(--text-primary); opacity: 0.52; }
.pillar-desc { font-family: 'DM Sans', sans-serif; font-size: 9px; letter-spacing: 0.06em; color: var(--accent-lt); opacity: 0.32; margin-top: 2px; }

/* ── SECTIONS ── */
.section { padding: 88px 52px; }
.section-dark { background: var(--dark-grad); }
.section-dark2 { background: var(--cards-grad); }
.section-light { background: var(--light-bg); }

.section-eyebrow {
  display: flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 9px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-lt); opacity: 0.78; margin-bottom: 14px;
}
.section-eyebrow::before { content: ''; width: 18px; height: 0.5px; background: var(--accent-lt); display: block; flex-shrink: 0; }

.section-title { font-size: clamp(32px, 4vw, 52px); font-weight: 700; margin-bottom: 16px; color: var(--text-primary); }
.section-light .section-title { color: var(--light-text); }
.section-sub { font-size: 15px; font-weight: 300; line-height: 1.8; max-width: 520px; color: var(--text-primary); opacity: 0.62; }
.section-light .section-sub { color: var(--light-sub); opacity: 1; }
.section-light .section-eyebrow { color: var(--accent); }
.section-light .section-eyebrow::before { background: var(--accent); }
.section-light .section-title em { color: var(--accent); }

/* ── CARD GRID ── */
.card-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border); border-radius: var(--radius-lg); overflow: hidden; margin-top: 48px;
}
.card {
  background: rgba(80, 60, 180, 0.08); padding: 32px 28px;
  position: relative; overflow: hidden; transition: background 0.2s;
}
.card::before {
  content: ''; position: absolute; top: -30px; right: -30px;
  width: 100px; height: 100px; border-radius: 50%;
  background: radial-gradient(circle, rgba(140, 80, 255, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.card:hover { background: rgba(100, 70, 200, 0.14); }
.card-number { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 700; color: var(--accent); opacity: 0.08; position: absolute; top: 10px; right: 18px; line-height: 1; }
.card-icon { width: 36px; height: 36px; border-radius: 7px; background: var(--accent-dim); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; color: var(--accent-lt); font-size: 16px; }
.card h3 { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.card p { font-size: 13px; line-height: 1.65; color: var(--text-primary); opacity: 0.6; }
.card-link { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; color: var(--accent-lt); text-decoration: none; margin-top: 14px; letter-spacing: 0.04em; font-weight: 500; transition: gap 0.2s; }
.card-link:hover { gap: 9px; }

/* ── PROFILE CARDS ── */
.profile-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  margin-top: 48px; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
}
.profile-card {
  padding: 36px 32px; border-right: 1px solid var(--border);
  background: rgba(80, 60, 180, 0.05);
}
.profile-card:last-child { border-right: none; }
.profile-icon { font-size: 28px; margin-bottom: 16px; }
.profile-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; color: var(--light-text); margin-bottom: 4px; }
.profile-income { font-size: 12px; color: var(--accent); opacity: 0.7; margin-bottom: 18px; letter-spacing: 0.04em; }
.profile-items { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.profile-items li { font-size: 13px; color: var(--light-sub); display: flex; gap: 8px; line-height: 1.4; }
.profile-items li::before { content: '·'; opacity: 0.4; flex-shrink: 0; }
.profile-cta { margin-top: 24px; display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--accent); text-decoration: none; letter-spacing: 0.06em; font-weight: 500; transition: gap 0.2s; }
.profile-cta:hover { gap: 10px; }

/* ── STEPS ── */
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border); border-radius: var(--radius-lg); overflow: hidden; margin-top: 48px;
}
.step { background: rgba(80, 60, 180, 0.08); padding: 28px 24px; }
.step-num { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 700; color: var(--accent-lt); opacity: 0.12; margin-bottom: 14px; line-height: 1; }
.step h4 { font-family: 'Cormorant Garamond', serif; font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.step p { font-size: 12px; color: var(--text-primary); opacity: 0.52; line-height: 1.6; }

/* ── CTA STRIP ── */
.cta-strip {
  padding: 80px 52px; text-align: center;
  background: var(--dark-grad); border-top: 1px solid var(--border-light);
}
.cta-strip::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(100, 60, 220, 0.08) 0%, transparent 70%);
}
.cta-strip { position: relative; overflow: hidden; }
.cta-strip h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 700; margin-bottom: 12px; color: var(--text-primary); }
.cta-strip p { font-size: 14px; color: var(--text-primary); opacity: 0.4; margin-bottom: 28px; }

/* ── CONTACT FORM ── */
.contact-section { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; margin-top: 52px; }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 28px; }
.contact-icon { width: 38px; height: 38px; border-radius: 7px; background: var(--accent-dim); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--accent-lt); }
.contact-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-primary); opacity: 0.35; margin-bottom: 3px; }
.contact-value { font-size: 14px; color: var(--text-primary); }
.contact-value a { color: var(--text-primary); text-decoration: none; transition: color 0.2s; }
.contact-value a:hover { color: var(--accent-lt); }
.contact-form { background: rgba(80, 60, 180, 0.06); border-radius: var(--radius-lg); padding: 36px; border: 0.5px solid var(--border); }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 10px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-primary); opacity: 0.45; margin-bottom: 7px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: rgba(4, 3, 14, 0.6);
  border: 0.5px solid var(--border); border-radius: 6px; padding: 11px 14px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text-primary); outline: none; transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-primary); opacity: 0.25; }
.form-group textarea { height: 100px; resize: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit {
  width: 100%; padding: 13px; border: 0.5px solid rgba(128, 96, 224, 0.5);
  border-radius: var(--radius-sm); background: transparent;
  color: var(--accent-lt); font-family: 'Cormorant Garamond', serif;
  font-size: 16px; font-weight: 600; letter-spacing: 0.04em; cursor: pointer; transition: all 0.2s; margin-top: 6px;
}
.form-submit:hover { background: var(--accent); color: var(--dark-1); }

/* ── FOOTER ── */
footer { background: #030210; padding: 52px 52px 32px; border-top: 1px solid var(--border-light); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 52px; max-width: 1100px; margin: 0 auto 40px; }
.footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.footer-brand .dot { color: var(--accent-lt); }
.footer-desc { font-size: 13px; color: var(--text-primary); opacity: 0.36; line-height: 1.7; margin-bottom: 8px; }
.footer-cvr { font-size: 11px; color: var(--text-primary); opacity: 0.2; }
.footer-col h4 { font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-primary); opacity: 0.38; margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: 13px; color: var(--text-primary); opacity: 0.36; text-decoration: none; transition: opacity 0.2s; }
.footer-col ul a:hover { opacity: 0.85; }
.footer-bottom { max-width: 1100px; margin: 0 auto; padding-top: 20px; border-top: 1px solid var(--border-light); display: flex; justify-content: space-between; font-size: 12px; color: var(--text-primary); opacity: 0.22; }

/* ── ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 66px; left: 0; right: 0; background: var(--dark-1); padding: 24px; gap: 18px; border-bottom: 1px solid var(--border-light); z-index: 99; }
  .nav-toggle { display: flex; }
  .hero-content { padding: 100px 24px 60px; }
  .hero-stats { display: none; }
  .section { padding: 64px 24px; }
  .pillars-strip { padding: 12px 24px; flex-wrap: wrap; gap: 4px; }
  .card-grid { grid-template-columns: 1fr; }
  .profile-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .contact-section { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .cta-strip { padding: 60px 24px; }
}

/* ── RESPONSIVE UTILITY GRIDS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); }
.steps-grid.steps-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 900px) {
  .grid-2, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .steps-grid.steps-5 { grid-template-columns: 1fr 1fr; }
}
