/* =====================================================================
   TEJUS HOLDINGS — Public Landing (matches dashboard teal & gold)
   ===================================================================== */

:root {
  --lp-bg: #02161a;
  --lp-surface: #0A2C31;
  --lp-ink: #ffffff;
  --lp-muted: rgba(255, 255, 255, .58);
  --lp-blue: #027B84;
  --lp-blue-deep: #00464D;
  --lp-blue-soft: rgba(2, 123, 132, .22);
  --lp-gold: #F9A101;
  --lp-gold-bright: #ffc44d;
  --lp-line: rgba(255, 255, 255, .10);
  --lp-shadow: 0 18px 50px rgba(0, 0, 0, .38);
  --lp-radius: 20px;
  --lp-font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --lp-display: 'Sora', system-ui, sans-serif;
  --lp-num: 'Space Grotesk', monospace;
  --lp-ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.lp-body {
  margin: 0;
  font-family: var(--lp-font);
  color: var(--lp-ink);
  background: var(--lp-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

.lp-bg-fx {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(900px 520px at 8% -8%, rgba(2, 123, 132, .35), transparent 58%),
    radial-gradient(780px 480px at 96% 4%, rgba(249, 161, 1, .12), transparent 52%),
    radial-gradient(700px 600px at 70% 100%, rgba(0, 70, 77, .45), transparent 55%),
    var(--lp-bg);
}
.lp-bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 20%, #000 20%, transparent 75%);
  opacity: .5;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.lp-container { width: min(1140px, calc(100% - 40px)); margin: 0 auto; }
.lp-section { padding: 88px 0; position: relative; }
.lp-section-alt { background: var(--lp-surface); }
.lp-eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lp-gold);
  margin-bottom: 12px;
}
.lp-h2 {
  font-family: var(--lp-display);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.2;
  margin: 0 0 14px;
  color: var(--lp-ink);
}
.lp-lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--lp-muted);
  max-width: 560px;
  margin: 0;
}
.lp-center { text-align: center; }
.lp-center .lp-lead { margin-left: auto; margin-right: auto; }

/* Buttons */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  transition: transform .25s var(--lp-ease), box-shadow .25s ease, background .25s ease;
}
.lp-btn:hover { transform: translateY(-2px); text-decoration: none; }
.lp-btn-primary {
  background: linear-gradient(135deg, var(--lp-gold-bright), var(--lp-gold));
  color: #1a1200;
  box-shadow: 0 10px 28px rgba(249, 161, 1, .32);
}
.lp-btn-primary:hover { box-shadow: 0 14px 34px rgba(249, 161, 1, .42); color: #1a1200; }
.lp-btn-secondary {
  background: rgba(2, 123, 132, .15);
  color: var(--lp-ink);
  border: 1.5px solid rgba(46, 196, 206, .4);
}
.lp-btn-secondary:hover {
  background: rgba(2, 123, 132, .28);
  color: var(--lp-ink);
}
.lp-btn-ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
}
.lp-btn-ghost:hover { background: rgba(255,255,255,.16); color: #fff; }

/* Nav */
.lp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding: 18px 0;
}
.lp-nav.scrolled {
  background: rgba(2, 22, 26, .9);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .35);
  padding: 12px 0;
}
.lp-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.lp-nav-logo img {
  height: 42px;
  width: auto;
}
.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.lp-nav-links a {
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.88);
  transition: color .2s;
}
.lp-nav.scrolled .lp-nav-links a { color: rgba(255,255,255,.9); }
.lp-nav-links a:hover { color: var(--lp-gold); }
.lp-nav-cta { display: flex; gap: 10px; align-items: center; }
.lp-nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.25);
  background: transparent;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}
.lp-nav.scrolled .lp-nav-toggle {
  border-color: var(--lp-line);
  color: #fff;
}

/* Hero — full-bleed, brand-first */
.lp-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.lp-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.lp-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.lp-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 22, 26, .55) 0%, rgba(2, 30, 34, .4) 40%, rgba(2, 22, 26, .92) 100%),
    linear-gradient(90deg, rgba(2, 22, 26, .55) 0%, transparent 55%);
}
.lp-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
  padding: 120px 0 72px;
}
.lp-hero-brand {
  height: 52px;
  width: auto;
  margin-bottom: 28px;
}
.lp-hero h1 {
  font-family: var(--lp-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.12;
  max-width: 16ch;
  margin: 0 0 16px;
}
.lp-hero p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255,255,255,.82);
  max-width: 42ch;
  margin: 0 0 28px;
}
.lp-hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

/* Glass cards */
.lp-glass {
  background: linear-gradient(155deg, rgba(18, 64, 72, .75) 0%, rgba(8, 40, 46, .85) 100%);
  backdrop-filter: blur(14px);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow), inset 0 1px 0 rgba(255,255,255,.06);
  transition: transform .3s var(--lp-ease), box-shadow .3s ease, border-color .3s ease;
}
.lp-glass:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, .45);
  border-color: rgba(46, 196, 206, .28);
}

/* Services */
.lp-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.lp-service {
  padding: 28px 24px;
}
.lp-service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, rgba(2,123,132,.35), rgba(249,161,1,.12));
  border: 1px solid var(--lp-line);
  margin-bottom: 18px;
  color: var(--lp-gold);
}
.lp-service-icon svg { width: 26px; height: 26px; }
.lp-service h3 {
  font-family: var(--lp-display);
  font-size: 1.15rem;
  margin: 0 0 10px;
  letter-spacing: -.02em;
}
.lp-service p {
  margin: 0;
  color: var(--lp-muted);
  font-size: .95rem;
  line-height: 1.6;
}

/* Why / Benefits split */
.lp-split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}
.lp-split-img {
  border-radius: var(--lp-radius);
  overflow: hidden;
  box-shadow: var(--lp-shadow);
  position: relative;
  aspect-ratio: 4/3;
}
.lp-split-img img { width: 100%; height: 100%; object-fit: cover; }
.lp-checklist { list-style: none; margin: 28px 0 0; padding: 0; }
.lp-checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--lp-line);
  font-weight: 500;
  color: var(--lp-ink);
}
.lp-checklist li:last-child { border-bottom: none; }
.lp-check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(2, 123, 132, .3);
  color: var(--lp-gold);
  display: grid; place-items: center;
  font-size: .75rem;
  font-weight: 800;
  margin-top: 1px;
}

/* Stats */
.lp-stats {
  background: linear-gradient(135deg, #00464D, #027B84 55%, #0a5f68);
  color: #fff;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.lp-stats::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  right: -100px; top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 161, 1, .22), transparent 70%);
}
.lp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.lp-stat { text-align: center; }
.lp-stat .num {
  font-family: var(--lp-num);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--lp-gold-bright);
  display: block;
  margin-bottom: 6px;
}
.lp-stat span { font-size: .9rem; color: rgba(255,255,255,.78); }

/* Process */
.lp-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
  counter-reset: step;
}
.lp-step {
  padding: 26px 22px;
  position: relative;
}
.lp-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--lp-num);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--lp-gold);
  display: block;
  margin-bottom: 14px;
}
.lp-step h3 {
  font-family: var(--lp-display);
  font-size: 1.05rem;
  margin: 0 0 8px;
}
.lp-step p {
  margin: 0;
  color: var(--lp-muted);
  font-size: .9rem;
  line-height: 1.55;
}

/* Opportunities */
.lp-opp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.lp-opp {
  padding: 0;
  overflow: hidden;
}
.lp-opp-top {
  height: 140px;
  background:
    linear-gradient(135deg, rgba(2,30,34,.88), rgba(2,123,132,.5)),
    url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?auto=format&fit=crop&w=800&q=70') center/cover;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  color: #fff;
}
.lp-opp-top h3 {
  font-family: var(--lp-display);
  font-size: 1.15rem;
  margin: 0;
}
.lp-opp-body { padding: 22px; }
.lp-opp-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.lp-tag {
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 8px;
  background: rgba(2, 123, 132, .28);
  color: #7eeef4;
  border: 1px solid rgba(46, 196, 206, .25);
}
.lp-tag-gold {
  background: rgba(249, 161, 1, .18);
  color: var(--lp-gold-bright);
  border: 1px solid rgba(249, 161, 1, .28);
}
.lp-opp-body p {
  margin: 0 0 16px;
  color: var(--lp-muted);
  font-size: .9rem;
  line-height: 1.55;
}

/* Insights / chart visual */
.lp-insights-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  margin-top: 48px;
}
.lp-chart-card {
  padding: 28px;
  background: linear-gradient(155deg, rgba(18, 64, 72, .88), rgba(8, 40, 46, .95));
  border-radius: var(--lp-radius);
  border: 1px solid var(--lp-line);
  box-shadow: var(--lp-shadow);
}
.lp-chart-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.lp-chart-head h3 {
  font-family: var(--lp-display);
  margin: 0 0 4px;
  font-size: 1.1rem;
}
.lp-chart-head p { margin: 0; color: var(--lp-muted); font-size: .85rem; }
.lp-candles {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  height: 180px;
  padding: 12px 4px;
  background:
    linear-gradient(180deg, transparent 49%, var(--lp-line) 49%, var(--lp-line) 51%, transparent 51%),
    linear-gradient(90deg, transparent, rgba(2,123,132,.08));
  border-radius: 12px;
}
.lp-candle {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  position: relative;
}
.lp-candle-wick {
  width: 2px;
  background: #8a9aab;
  position: absolute;
}
.lp-candle-body {
  width: 70%;
  max-width: 18px;
  border-radius: 3px;
  position: relative;
  z-index: 1;
}
.lp-candle.up .lp-candle-body { background: linear-gradient(180deg, #2d9f6f, #1f7a54); }
.lp-candle.down .lp-candle-body { background: linear-gradient(180deg, #d45b5b, #b33a3a); }
.lp-insight-list { display: flex; flex-direction: column; gap: 14px; }
.lp-insight-item {
  padding: 18px 20px;
}
.lp-insight-item h4 {
  margin: 0 0 6px;
  font-size: .98rem;
  font-family: var(--lp-display);
}
.lp-insight-item p {
  margin: 0;
  font-size: .88rem;
  color: var(--lp-muted);
  line-height: 1.5;
}

/* Testimonials */
.lp-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.lp-testi {
  padding: 28px 24px;
}
.lp-stars {
  color: var(--lp-gold);
  letter-spacing: 2px;
  font-size: .9rem;
  margin-bottom: 14px;
}
.lp-testi blockquote {
  margin: 0 0 20px;
  font-size: .98rem;
  line-height: 1.65;
  color: var(--lp-ink);
}
.lp-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lp-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lp-gold-bright), var(--lp-gold));
  color: #1a1200;
  font-weight: 700;
  display: grid; place-items: center;
  font-size: .9rem;
}
.lp-testi-author strong { display: block; font-size: .92rem; }
.lp-testi-author span { font-size: .8rem; color: var(--lp-muted); }

/* FAQ */
.lp-faq {
  max-width: 760px;
  margin: 48px auto 0;
}
.lp-faq-item {
  background: rgba(10, 44, 49, .85);
  border: 1px solid var(--lp-line);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .2s;
}
.lp-faq-item.open { border-color: rgba(46, 196, 206, .35); }
.lp-faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 20px;
  font-family: var(--lp-font);
  font-size: 1rem;
  font-weight: 650;
  color: var(--lp-ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.lp-faq-q span {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(2, 123, 132, .3);
  color: var(--lp-gold);
  display: grid; place-items: center;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform .25s var(--lp-ease);
}
.lp-faq-item.open .lp-faq-q span { transform: rotate(45deg); }
.lp-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--lp-ease), padding .35s ease;
  padding: 0 20px;
  color: var(--lp-muted);
  font-size: .95rem;
  line-height: 1.65;
}
.lp-faq-item.open .lp-faq-a {
  max-height: 220px;
  padding: 0 20px 18px;
}

/* Contact */
.lp-contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  margin-top: 48px;
}
.lp-contact-info {
  padding: 32px 28px;
  background: linear-gradient(160deg, #00464D, #027B84);
  color: #fff;
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow);
}
.lp-contact-info h3 {
  font-family: var(--lp-display);
  margin: 0 0 10px;
  font-size: 1.4rem;
}
.lp-contact-info > p {
  color: rgba(255,255,255,.75);
  line-height: 1.6;
  margin: 0 0 28px;
}
.lp-contact-row {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  font-size: .95rem;
}
.lp-contact-row strong { display: block; font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; opacity: .7; margin-bottom: 2px; }
.lp-form {
  padding: 32px 28px;
  background: linear-gradient(155deg, rgba(18, 64, 72, .88), rgba(8, 40, 46, .95));
  border-radius: var(--lp-radius);
  border: 1px solid var(--lp-line);
  box-shadow: var(--lp-shadow);
}
.lp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.lp-field { margin-bottom: 14px; }
.lp-field label {
  display: block;
  font-size: .82rem;
  font-weight: 650;
  margin-bottom: 6px;
  color: var(--lp-muted);
}
.lp-field input,
.lp-field select,
.lp-field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--lp-line);
  background: rgba(2, 22, 26, .75);
  font-family: var(--lp-font);
  font-size: .95rem;
  color: var(--lp-ink);
  transition: border-color .2s, box-shadow .2s;
}
.lp-field input:focus,
.lp-field select:focus,
.lp-field textarea:focus {
  outline: none;
  border-color: #2ec4ce;
  box-shadow: 0 0 0 3px rgba(2, 123, 132, .25);
  background: rgba(2, 28, 32, .92);
}
.lp-field textarea { min-height: 110px; resize: vertical; }
.lp-form-note {
  font-size: .8rem;
  color: var(--lp-muted);
  margin: 12px 0 0;
  line-height: 1.5;
}

/* Footer */
.lp-footer {
  background: #02161a;
  color: rgba(255,255,255,.7);
  padding: 56px 0 28px;
  border-top: 1px solid var(--lp-line);
}
.lp-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.lp-footer-logo {
  height: 40px;
  margin-bottom: 14px;
}
.lp-footer p { font-size: .9rem; line-height: 1.6; margin: 0; max-width: 280px; }
.lp-footer h4 {
  color: #fff;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 16px;
}
.lp-footer ul { list-style: none; margin: 0; padding: 0; }
.lp-footer li { margin-bottom: 10px; }
.lp-footer a { color: rgba(255,255,255,.7); font-size: .9rem; transition: color .2s; }
.lp-footer a:hover { color: var(--lp-gold-bright); }
.lp-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: .8rem;
}
.lp-disclaimer {
  max-width: 640px;
  line-height: 1.5;
  opacity: .65;
}

/* Reveal */
.lp-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s var(--lp-ease), transform .6s var(--lp-ease);
}
.lp-reveal.in { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 991px) {
  .lp-nav-links, .lp-nav-cta .lp-btn-ghost { display: none; }
  .lp-nav.open .lp-nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 20px; right: 20px;
    background: rgba(10, 44, 49, .98);
    border: 1px solid var(--lp-line);
    padding: 18px;
    border-radius: 16px;
    box-shadow: var(--lp-shadow);
    align-items: flex-start;
  }
  .lp-nav.open .lp-nav-links a { color: rgba(255,255,255,.9); }
  .lp-nav-toggle { display: grid; place-items: center; }
  .lp-services-grid,
  .lp-opp-grid,
  .lp-testi-grid,
  .lp-process { grid-template-columns: 1fr 1fr; }
  .lp-split,
  .lp-insights-grid,
  .lp-contact-grid { grid-template-columns: 1fr; }
  .lp-stats-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .lp-footer-grid { grid-template-columns: 1fr 1fr; }
  .lp-hero-inner { padding-top: 110px; }
  .lp-nav.scrolled .lp-nav-links a,
  .lp-nav .lp-nav-links a { color: inherit; }
}

@media (max-width: 640px) {
  .lp-section { padding: 64px 0; }
  .lp-services-grid,
  .lp-opp-grid,
  .lp-testi-grid,
  .lp-process,
  .lp-stats-grid,
  .lp-footer-grid,
  .lp-form-row { grid-template-columns: 1fr; }
  .lp-hero h1 { max-width: none; }
  .lp-nav-cta .lp-btn-primary { padding: 10px 14px; font-size: .85rem; }
}

@media (prefers-reduced-motion: reduce) {
  .lp-reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
