/* --------------------------------------------------
   Livecom Landingpage Main stylesheet
   Clean, Premium, Fully Responsive SaaS Aesthetic
   -------------------------------------------------- */

:root {
  --bg: #0b0b0e;
  --bg2: #0f0f13;
  --panel: #151519;
  --panel2: #1b1b21;
  --border: #26262e;
  --border2: #33333d;
  --orange: #F5661A;
  --orange2: #ff8a3d;
  --text: #f4f4f6;
  --mut: #a6a6b0;
  --mut2: #7c7c88;
  --maxw: 1120px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg);
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Decorative background glowing radial-gradients */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(900px 520px at 75% -8%, rgba(245, 102, 26, 0.14), transparent 60%),
    radial-gradient(760px 500px at 15% 15%, rgba(245, 102, 26, 0.08), transparent 55%),
    linear-gradient(180deg, #0c0c10, #0a0a0d);
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
}

h1 {
  font-size: clamp(28px, 6.5vw, 56px);
}

h2 {
  font-size: clamp(24px, 4vw, 38px);
}

h3 {
  font-weight: 600;
}

p {
  color: var(--mut);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

/* Layout Wrapper */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: clamp(48px, 7vw, 96px) 0;
}

/* Utilities */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange2);
  font-weight: 600;
  margin-bottom: 12px;
}

.mut {
  color: var(--mut);
}

.orange {
  color: var(--orange);
}

/* Sticky Navigation Header */
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(11, 11, 14, 0.75);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s var(--ease);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.01em;
  color: #fff;
}

.logo .wm .o {
  color: var(--orange);
}

.mark {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

/* Badges / Chips */
.chip {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange2);
  border: 1px solid rgba(245, 102, 26, 0.35);
  background: rgba(245, 102, 26, 0.06);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.tagpill {
  display: inline-block;
  margin-bottom: 20px;
}

.soon {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange2);
  border: 1px solid rgba(245, 102, 26, 0.35);
  border-radius: 999px;
  padding: 2px 8px;
  margin-left: 8px;
  font-weight: 600;
  vertical-align: middle;
  background: rgba(245, 102, 26, 0.08);
}

/* Premium Buttons styling */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 999px;
  cursor:pointer;
  border: 1px solid transparent;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
  white-space: nowrap;
}

.btn.primary {
  background: linear-gradient(135deg, #ff7a2a, #F5661A);
  color: #fff;
  box-shadow: 0 8px 24px rgba(245, 102, 26, 0.25);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(245, 102, 26, 0.38);
}

.btn.primary:active {
  transform: translateY(0);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border2);
  color: var(--text);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--mut);
}

.btn.sm {
  padding: 10px 20px;
  font-size: 14px;
}

nav .btn.sm {
  display: none;
}

@media(min-width: 640px) {
  nav .btn.sm {
    display: inline-flex;
  }
}

/* Hero Section */
.hero {
  text-align: center;
  padding-top: clamp(40px, 6vw, 76px);
  padding-bottom: clamp(56px, 8vw, 100px);
}

.hero h1 {
  margin: 16px auto 0;
  max-width: 18ch;
  white-space: normal;
  line-height: 1.1;
}

.hero .sub {
  margin: 24px auto 0;
  max-width: 58ch;
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--mut);
  line-height: 1.6;
}

.cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

.trust {
  margin-top: 36px;
  display: inline-flex;
  align-items: center;
  text-align: left;
  gap: 12px;
  color: var(--mut);
  font-size: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  padding: 10px 20px;
  border-radius: 999px;
  max-width: 100%;
}

.trust b {
  color: var(--text);
  font-weight: 600;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(245, 102, 26, 0.2);
  flex: 0 0 auto;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0px rgba(245, 102, 26, 0.4); }
  70% { box-shadow: 0 0 0 6px rgba(245, 102, 26, 0); }
  100% { box-shadow: 0 0 0 0px rgba(245, 102, 26, 0); }
}

/* Dashboard Mockup Screenshot Frame */
.shot {
  margin: clamp(40px, 6vw, 68px) auto 0;
  max-width: 1000px;
  position: relative;
  border-radius: 16px;
}

.shot::after {
  content: "";
  position: absolute;
  inset: auto 8% -36px 8%;
  height: 100px;
  z-index: -1;
  background: radial-gradient(60% 100% at 50% 0, rgba(245, 102, 26, 0.3), transparent 70%);
  filter: blur(28px);
}

.frame {
  border: 1px solid var(--border2);
  border-radius: 16px;
  overflow: hidden;
  background: #0f0f13;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.65);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.frame:hover {
  transform: scale(1.01);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.75);
}

.bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #141419;
  border-bottom: 1px solid var(--border);
}

.bar i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}

.bar .u {
  margin: 0 auto;
  font-size: 11px;
  color: var(--mut2);
  background: #0c0c10;
  border: 1px solid var(--border);
  padding: 4px 16px;
  border-radius: 6px;
  letter-spacing: 0.02em;
}

.frame img {
  display: block;
  width: 100%;
  height: auto;
}

/* Features Logo Strip */
.strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px 32px;
  flex-wrap: wrap;
  color: var(--mut2);
  font-size: 14px;
  margin-top: 48px;
}

.strip b {
  color: var(--text);
  font-weight: 600;
}

.pill {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Section Header Layouts */
.head {
  max-width: 52ch;
  margin-bottom: 40px;
}

.head .eyebrow {
  margin-bottom: 12px;
}

.head p {
  color: var(--mut);
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.6;
}

/* Interactive Grid Cards */
.cards {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  margin-top: 40px;
}

@media(min-width: 768px) {
  .cards {
    grid-template-columns: 1fr 1fr;
  }
}

.card {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--panel), var(--bg2));
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 102, 26, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.card p {
  color: var(--mut);
  font-size: 15.5px;
  line-height: 1.6;
}

.card .ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  background: rgba(245, 102, 26, 0.1);
  border: 1px solid rgba(245, 102, 26, 0.25);
  color: var(--orange2);
  transition: transform 0.3s var(--ease);
}

.card:hover .ic {
  transform: scale(1.05);
}

/* Feature Pillars Layout (Images + Text side by side) */
.pillar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

@media(min-width: 900px) {
  .pillar {
    grid-template-columns: 1fr 1fr;
    gap: 68px;
  }
  .pillar.rev .txt {
    order: 2;
  }
}

.pillar h2 {
  margin-bottom: 12px;
}

.pillar .lead {
  color: var(--mut);
  font-size: 17px;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Tick List */
.tick {
  list-style: none;
  display: grid;
  gap: 14px;
}

.tick li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15.5px;
}

.tick .c {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-top: 2px;
  background: rgba(245, 102, 26, 0.12);
  border: 1px solid rgba(245, 102, 26, 0.35);
  color: var(--orange2);
}

.tick .c svg {
  width: 11px;
  height: 11px;
}

.tick b {
  font-weight: 600;
  color: #fff;
}

/* Statistics Layout */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

@media(min-width: 520px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.stat:hover {
  border-color: rgba(245, 102, 26, 0.3);
  transform: translateY(-2px);
}

.stat .n {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}

.stat .l {
  font-size: 12px;
  color: var(--mut2);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat .n small {
  font-size: 14px;
  color: var(--orange);
  font-weight: 600;
  margin-left: 2px;
}

/* Feature Grid 4 Column layout */
.grid4 {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  margin-top: 40px;
}

@media(min-width: 640px) {
  .grid4 {
    grid-template-columns: 1fr 1fr;
  }
}

@media(min-width: 980px) {
  .grid4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feat {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--panel), var(--bg2));
  border-radius: 16px;
  padding: 28px 24px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.feat:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 102, 26, 0.35);
}

.feat .ic {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: rgba(245, 102, 26, 0.1);
  border: 1px solid rgba(245, 102, 26, 0.25);
  color: var(--orange2);
}

.feat h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.feat p {
  color: var(--mut);
  font-size: 14px;
  line-height: 1.55;
}

/* Call-to-Action Band / Sections */
.band {
  border: 1px solid rgba(245, 102, 26, 0.3);
  border-radius: 24px;
  padding: clamp(32px, 6vw, 64px);
  background: radial-gradient(120% 140% at 0% 0%, rgba(245, 102, 26, 0.12), transparent 55%), linear-gradient(180deg, var(--panel), var(--bg2));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.band h2 {
  margin-bottom: 14px;
  line-height: 1.2;
}

.band p {
  color: var(--mut);
  max-width: 64ch;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.6;
}

/* Case Study / Erfolgsstory */
.case-study {
  border: 1px solid rgba(245, 102, 26, 0.3);
  border-radius: 24px;
  padding: clamp(32px, 6vw, 56px);
  background: radial-gradient(120% 140% at 100% 0%, rgba(245, 102, 26, 0.08), transparent 55%), linear-gradient(180deg, var(--panel), var(--bg2));
  text-align: left;
}

.case-header {
  margin-bottom: 36px;
  max-width: 68ch;
}

.case-header h2 {
  margin-bottom: 12px;
  line-height: 1.2;
}

.case-header p {
  color: var(--mut);
  font-size: 17px;
  line-height: 1.6;
}

.case-body {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}

@media(min-width: 768px) {
  .case-body {
    grid-template-columns: 1fr 1fr;
  }
}

@media(min-width: 1024px) {
  .case-body {
    grid-template-columns: 1.2fr 1.2fr 1.6fr;
    gap: 40px;
  }
}

.case-col h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange2);
  margin-bottom: 14px;
  font-weight: 600;
}

.case-col p {
  color: var(--mut);
  font-size: 15.5px;
  line-height: 1.65;
}

.case-col.highlight {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.case-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.case-stat .n {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.case-stat .n small {
  font-size: 16px;
  color: var(--orange);
}

.case-stat .l {
  font-size: 12px;
  color: var(--mut2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}


/* Waitlist Form container */
.waitwrap {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.formcard {
  border: 1px solid var(--border2);
  border-radius: 20px;
  padding: clamp(24px, 5vw, 40px);
  margin-top: 32px;
  background: linear-gradient(180deg, var(--panel2), var(--bg2));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

form.wl {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

form.wl input[type=email] {
  flex: 1 1 240px;
  min-width: 0;
  background: #09090c;
  border: 1px solid var(--border2);
  color: #fff;
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 16px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

form.wl input[type=email]:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245, 102, 26, 0.15);
}

form.wl button {
  flex: 1 0 auto;
}

@media(min-width: 500px) {
  form.wl button {
    flex: 0 0 auto;
  }
}

/* Honeypot field (hidden for users) */
.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.note {
  color: var(--mut2);
  font-size: 13px;
  margin-top: 16px;
}

.success {
  display: none;
  padding: 28px 24px;
  border-radius: 14px;
  background: rgba(245, 102, 26, 0.08);
  border: 1px solid rgba(245, 102, 26, 0.35);
  animation: fadeIn 0.4s var(--ease);
}

.success.show {
  display: block;
}

.success h3 {
  font-size: 21px;
  margin-bottom: 8px;
  color: var(--orange2);
}

.success p {
  color: var(--mut);
  font-size: 15px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Footer Section */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
  margin-top: 64px;
}

.foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--mut2);
  font-size: 14px;
}

.flinks {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.flinks a {
  color: var(--mut);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.flinks a:hover {
  color: var(--text);
  border-color: var(--orange);
}

/* Scroll Animations (IntersectionObserver Reveal States) */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* Legal Documents overlays / hash target modals */
.legal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  overflow-y: auto;
  background: rgba(7, 7, 10, 0.98);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: modalFadeIn 0.3s var(--ease);
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.legal:target {
  display: block;
}

body:has(.legal:target) {
  overflow: hidden;
}

.lwrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px 24px 120px;
}

.lhead {
  display: flex;
  justify-content: flex-end;
  position: sticky;
  top: 0;
  padding: 16px 0;
  background: linear-gradient(180deg, rgba(7, 7, 10, 0.99), rgba(7, 7, 10, 0.6));
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 10;
}

.legal h2 {
  font-size: clamp(26px, 4vw, 36px);
  margin: 12px 0 6px;
  color: #fff;
}

.legal .sub {
  color: var(--mut2);
  font-size: 14px;
  margin-bottom: 24px;
}

.legal h3 {
  font-size: 18px;
  margin: 28px 0 10px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  padding-bottom: 6px;
}

.legal p, .legal li {
  color: var(--mut);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal .lmeta {
  color: var(--text);
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
}

.legal a {
  color: var(--orange2);
  word-break: break-all;
  border-bottom: 1px dashed rgba(255, 122, 42, 0.4);
}

.legal a:hover {
  color: #fff;
  border-bottom-style: solid;
}
