/* State Electric V3 landing page styles — ported to V5
   (only the / landing marketing-page styles; the CRM app chrome is in app.css) */

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:'Inter',system-ui,sans-serif;line-height:1.55;-webkit-font-smoothing:antialiased}
a{text-decoration:none}

.landing {
  min-height:100vh; display:flex; flex-direction:column;
  background:#0a0f1e; color:#e2e8f0;
  font-family:'Inter',system-ui,sans-serif;
}

/* Top Bar */
.land-top {
  display:flex; align-items:center; justify-content:space-between;
  padding:20px 40px;
  backdrop-filter:blur(10px);
  background:rgba(10,15,30,0.8);
  position:fixed;top:0;left:0;right:0;z-index:100;
  border-bottom:1px solid rgba(251,191,36,0.1);
}
.land-brand {
  font-weight:900; letter-spacing:3px; font-size:16px;
  background:linear-gradient(135deg,#fbbf24 0%,#f59e0b 50%,#fbbf24 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.land-brand span {
  -webkit-text-fill-color:#94a3b8; font-weight:400; letter-spacing:0.5px; margin-left:8px; font-size:12px;
}
.land-login-link {
  color:#fbbf24; cursor:pointer; font-size:14px; text-decoration:none;
  padding:8px 22px; border-radius:999px;
  border:1px solid rgba(251,191,36,0.5); transition:all 0.3s ease;
  font-weight:500; letter-spacing:0.5px;
}
.land-login-link:hover {
  background:rgba(251,191,36,0.15); border-color:#fbbf24; box-shadow:0 0 20px rgba(251,191,36,0.2);
}

/* Hero Section */
.land-hero {
  flex:1; display:grid; grid-template-columns:1fr;
  gap:40px; align-items:center;
  padding:160px 48px 80px;
  max-width:1280px; margin:0 auto; width:100%;
  position:relative; border-radius:0 0 0 0;
  min-height:820px;
  background-color:#0a0f1e;
  background-image:url('/static/img/crew2.png');
  background-position:center 20px; background-repeat:no-repeat;
  background-size:cover;
}
.land-hero::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(
    180deg,
    rgba(10,15,30,0.7) 0%,
    rgba(10,15,30,0.4) 30%,
    rgba(10,15,30,0.5) 60%,
    rgba(10,15,30,0.95) 100%
  );
  z-index:1;
}
.land-hero > div { position:relative; z-index:2; max-width:680px; }
.land-hero h1 {
  font-size:52px; line-height:1.08; margin:0 0 20px;
  color:#fff; font-weight:800; letter-spacing:-0.5px;
}
.land-hero h1 em {
  color:#fbbf24; font-style:normal; font-weight:900;
  background:linear-gradient(135deg,#fbbf24,#f59e0b);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.land-hero p.lead {
  font-size:19px; line-height:1.7; color:#cbd5e1;
  margin:0 0 32px; max-width:540px; font-weight:400;
}
.land-badges { display:flex; gap:12px; flex-wrap:wrap; }
.land-badge {
  background:rgba(251,191,36,0.08); border:1px solid rgba(251,191,36,0.25);
  color:#fbbf24; padding:10px 18px; border-radius:999px;
  font-size:13px; font-weight:600; backdrop-filter:blur(4px);
  transition:all 0.3s ease;
}
.land-badge:hover {
  background:rgba(251,191,36,0.18); border-color:#fbbf24;
  transform:translateY(-2px); box-shadow:0 4px 12px rgba(251,191,36,0.15);
}

/* Story Section */
.land-story {
  background:#fff; color:#1c1e21;
  padding:80px 48px;
  position:relative;
}
.land-story::before {
  content:''; position:absolute; top:0; left:0; right:0; height:4px;
  background:linear-gradient(90deg, transparent, #fbbf24, transparent);
}
.land-story-inner {
  max-width:1060px; margin:0 auto;
  display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start;
}
.land-story h2 {
  font-size:34px; margin:0 0 16px; color:#0f172a; font-weight:800; line-height:1.15;
}
.land-story p {
  font-size:16px; line-height:1.75; color:#475569; margin:0 0 16px; font-weight:400;
}
.land-story .pull {
  font-size:21px; font-weight:600; color:#0f172a;
  border-left:4px solid #fbbf24; padding:4px 0 4px 20px; margin:16px 0 24px;
  line-height:1.5;
}

/* Value Cards */
.land-values { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:8px; }
.land-value {
  background:#f8fafc; border:1px solid #e2e8f0; border-radius:16px;
  padding:28px; transition:all 0.35s cubic-bezier(0.4,0,0.2,1);
  position:relative; overflow:hidden;
}
.land-value::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg,#fbbf24,#f59e0b);
  transform:scaleX(0); transform-origin:left; transition:transform 0.35s ease;
}
.land-value:hover {
  transform:translateY(-8px); box-shadow:0 20px 40px rgba(15,23,42,0.1);
  border-color:rgba(251,191,36,0.3); background:#fff;
}
.land-value:hover::before { transform:scaleX(1); }
.land-value .v-ico {
  font-size:28px; width:56px;height:56px;
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,rgba(251,191,36,0.15),rgba(245,158,11,0.05));
  border-radius:14px; margin-bottom:16px;
}
.land-value h3 { margin:0 0 8px; font-size:17px; color:#0f172a; font-weight:700; }
.land-value p { font-size:14px; color:#64748b; margin:0; line-height:1.6; font-weight:400; }

/* Logo Section */
.land-logo-section {
  background:linear-gradient(180deg,#0f172a 0%,#1e293b 100%);
  color:#e2e8f0; padding:80px 48px;
  position:relative; overflow:hidden;
}
.land-logo-section::before {
  content:''; position:absolute; width:600px; height:600px;
  background:radial-gradient(circle, rgba(251,191,36,0.04) 0%, transparent 70%);
  top:-200px; right:-100px; pointer-events:none;
}
.land-logo-inner {
  max-width:1060px; margin:0 auto; position:relative; z-index:2;
  display:grid; grid-template-columns:320px 1fr; gap:56px; align-items:center;
}
.land-logo-img {
  border-radius:20px; overflow:hidden; background:#fff; padding:24px;
  border:1px solid rgba(251,191,36,0.15);
  box-shadow:0 20px 60px rgba(0,0,0,0.4);
  transition:transform 0.4s ease;
}
.land-logo-img:hover { transform:scale(1.02) rotate(0deg); }
.land-logo-img img { width:100%; height:auto; object-fit:contain; }

.land-logo-text h2 {
  font-size:32px; margin:0 0 8px; font-weight:800;
  background:linear-gradient(135deg,#fbbf24,#f59e0b);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.land-logo-text .logo-since {
  font-size:14px; color:#64748b; margin:0 0 6px; letter-spacing:2px; font-weight:600; text-transform:uppercase;
}
.land-logo-text .logo-tagline {
  font-size:20px; color:#e2e8f0; margin:0 0 28px; font-weight:500;
}
.land-logo-text .logo-tagline em {
  color:#fbbf24; font-style:italic; font-weight:600;
}
.logo-values { display:flex; flex-direction:column; gap:16px; }
.logo-value {
  background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.08);
  border-radius:14px; padding:18px 20px;
  transition:all 0.3s ease;
}
.logo-value:hover {
  background:rgba(255,255,255,0.08); border-color:rgba(251,191,36,0.2);
  transform:translateX(4px);
}
.logo-value strong {
  font-size:15px; color:#fbbf24; display:block; margin-bottom:6px; font-weight:700;
}
.logo-value p { font-size:14px; color:#94a3b8; margin:0; line-height:1.55; font-weight:400; }

/* Footer */
.land-foot {
  background:#070b16; color:#64748b; text-align:center;
  padding:28px 40px; font-size:13px; font-weight:400;
  border-top:1px solid rgba(251,191,36,0.08);
}
.land-foot b { color:#fbbf24; }

@media (max-width: 768px) {
  .land-hero, .land-story-inner { grid-template-columns:1fr; }
  .land-hero {
    padding:24px;
    min-height:auto;
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
  }
  .land-story { padding:36px 22px; }
  .land-values { grid-template-columns:1fr; }
  .land-hero h1 { font-size:32px; }
  .land-logo-section { padding:36px 22px; }
  .land-logo-inner { grid-template-columns:1fr; gap:24px; text-align:center; }
  .land-logo-img { max-width:260px; margin:0 auto; }
}
