/* ============================================
   iOrganize — Premium CSS Theme
   ============================================ */

/* --- Variables --- */
:root {
  /* Neuromarketing palette */
  --bg: #FFFFFF;
  --bg-alt: #F8FAFC;
  --bg-card: #FFFFFF;
  --fg: #0F172A;
  --fg-muted: #475569;
  --fg-light: #94A3B8;
  --accent: #10B981;
  --accent-hover: #059669;
  --accent-light: #ECFDF5;
  --accent-mid: #A7F3D0;
  --accent-indigo: #6366F1;
  --accent-indigo-hover: #4F46E5;
  --accent-indigo-light: #EEF2FF;
  --accent-indigo-mid: #C7D2FE;
  --gold: #8B6914;
  --gold-light: #FDF6E2;
  --gold-mid: #D4A017;
  --white: #FFFFFF;
  /* Shared tokens */
  --primary-dark: #0F172A;
  --border: rgba(15,23,42,0.07);
  --border-strong: rgba(15,23,42,0.12);
  /* Design tokens per spec */
  --card-radius: 16px;
  --card-shadow: 0 8px 32px rgba(0,0,0,0.12);
  --card-padding: 32px;
  --section-spacing: 80px;
  --font-h1: 48px;
  --font-h2: 32px;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-xs: 0 1px 2px rgba(15,23,42,0.04);
  --shadow-sm: 0 2px 8px rgba(15,23,42,0.06);
  --shadow-md: 0 6px 24px rgba(15,23,42,0.08);
  --shadow-lg: 0 16px 48px rgba(15,23,42,0.10);
  --shadow-xl: 0 32px 80px rgba(15,23,42,0.12);
  --shadow-accent: 0 8px 32px rgba(16,185,129,0.18);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4 { font-family: 'Inter', system-ui, sans-serif; font-weight: 600; line-height: 1.15; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* --- Animation --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.25); }
  50%       { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
}
.animate-fade-up { animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.animate-fade-in { animation: fadeIn 0.5s ease forwards; }

/* ============================================
   NEUROMARKETING LANDING — Hero + Double Path
   ============================================ */
.lp-new {
  min-height: 100vh;
  background: var(--bg);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.lp-new-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
}
.lp-new-nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.lp-new-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.lp-new-logo-mark {
  width: 34px;
  height: 34px;
  background: var(--accent);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-new-logo-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.lp-new-logo-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 400;
  margin-left: 4px;
}
.lp-new-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lp-new-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}
.lp-new-nav-cta:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow-accent);
  transform: translateY(-1px);
}
.lp-new-nav-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--fg-muted);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1.5px solid var(--border-strong);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.lp-new-nav-ghost:hover {
  background: var(--bg-alt);
  border-color: var(--fg-light);
}

/* Hero */
.lp-new-hero {
  padding: 80px 0 var(--section-spacing);
  display: flex;
  align-items: center;
  min-height: 640px;
  position: relative;
  overflow: hidden;
}
.lp-new-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.lp-new-hero-blob-1 {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,0.08) 0%, transparent 70%);
  top: -80px;
  right: -60px;
  filter: blur(80px);
}
.lp-new-hero-blob-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.06) 0%, transparent 70%);
  bottom: -40px;
  left: 4%;
  filter: blur(60px);
}
.lp-new-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15,23,42,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 70% 40%, black 20%, transparent 80%);
}
.lp-new-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.lp-new-hero-content {
  animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.lp-new-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 28px;
  background: var(--bg-alt);
  padding: 6px 14px 6px 10px;
  border-radius: 100px;
  border: 1px solid var(--border);
}
.lp-new-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-glow 2.5s ease-in-out infinite;
  flex-shrink: 0;
}
.lp-new-hero-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 20px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.lp-new-hero-lede {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
  font-weight: 400;
}
.lp-new-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(16,185,129,0.3);
}
.lp-new-hero-cta:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow-accent);
  transform: translateY(-2px);
}
.lp-new-hero-cta:active { transform: translateY(0); }
.lp-new-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.lp-new-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--fg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 100px;
  box-shadow: var(--shadow-xs);
}
.lp-new-badge-icon { color: var(--accent); display: flex; align-items: center; flex-shrink: 0; }

/* Hero Visual */
.lp-new-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 0.8s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.lp-new-hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
}
.lp-new-hero-img {
  width: 100%;
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  display: block;
  border: 1px solid var(--border);
}

/* Double Path Section */
.lp-new-double-path {
  padding: var(--section-spacing) 0;
  background: var(--bg-alt);
}
.lp-new-dp-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
}
.lp-new-dp-header {
  text-align: center;
  margin-bottom: 56px;
}
.lp-new-dp-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-indigo);
  margin-bottom: 14px;
}
.lp-new-dp-headline {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 16px;
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.lp-new-dp-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto;
}
.lp-new-dp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* HubHome card — white */
.lp-new-card {
  border-radius: var(--card-radius);
  padding: var(--card-padding);
  border: 1.5px solid var(--border);
  box-shadow: var(--card-shadow);
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
}
.lp-new-card:hover {
  box-shadow: 0 16px 56px rgba(0,0,0,0.18);
  transform: translateY(-4px);
}
.lp-new-card.home {
  background: var(--bg-card);
  border-color: rgba(16,185,129,0.2);
  border-left: 5px solid var(--accent);
}
.lp-new-card.home:hover { border-color: rgba(16,185,129,0.4); }

/* HubBiz card — cream */
.lp-new-card.biz {
  background: #FDF6E2;
  border-color: rgba(99,102,241,0.2);
  border-left: 5px solid var(--accent-indigo);
}
.lp-new-card.biz:hover { border-color: rgba(99,102,241,0.4); }

.lp-new-card-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
  width: fit-content;
}
.lp-new-card.home .lp-new-card-badge {
  background: var(--accent-light);
  color: var(--accent);
}
.lp-new-card.biz .lp-new-card-badge {
  background: var(--accent-indigo-light);
  color: var(--accent-indigo);
}
.lp-new-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.lp-new-card-body {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  flex: 1;
}
.lp-new-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s;
  width: fit-content;
}
.lp-new-card.home .lp-new-card-cta {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(16,185,129,0.3);
}
.lp-new-card.home .lp-new-card-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16,185,129,0.38);
}
.lp-new-card.biz .lp-new-card-cta {
  background: var(--accent-indigo);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(99,102,241,0.3);
}
.lp-new-card.biz .lp-new-card-cta:hover {
  background: var(--accent-indigo-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(99,102,241,0.38);
}

/* Nuovo Footer */
.lp-new-footer {
  padding: 48px 0 36px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.lp-new-footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
}
.lp-new-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.lp-new-footer-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
}
.lp-new-footer-rule {
  height: 1px;
  background: var(--border);
  margin-bottom: 20px;
}
.lp-new-footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.lp-new-footer-legal-link {
  font-size: 0.78rem;
  color: var(--fg-light);
  text-decoration: none;
  transition: color 0.2s;
}
.lp-new-footer-legal-link:hover { color: var(--accent-indigo); }
.lp-new-footer-sep { color: var(--fg-light); font-size: 0.78rem; }
.lp-new-footer-copy { font-size: 0.8rem; color: var(--fg-light); }

/* Responsive */
@media (max-width: 900px) {
  .lp-new-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .lp-new-hero-visual { display: none; }
  .lp-new-dp-grid { grid-template-columns: 1fr; }
  .lp-new-nav-tagline { display: none; }
  .lp-new-nav { padding: 0 24px; }
  .lp-new-hero { padding: 60px 0 64px; }
  .lp-new-double-path { padding: 64px 0; }
}
@media (max-width: 600px) {
  .lp-new-hero-cta-wrap { flex-direction: column; align-items: stretch; }
  .lp-new-hero-cta { text-align: center; justify-content: center; }
  .lp-new-hero-badges { flex-direction: column; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(27,79,216,0.25); }
  50%       { box-shadow: 0 0 0 8px rgba(27,79,216,0); }
}
.animate-fade-up { animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.animate-fade-in { animation: fadeIn 0.5s ease forwards; }

/* --- Layout helpers --- */
.section-inner { max-width: 1120px; margin: 0 auto; padding: 0 40px; }
.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248,247,244,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-mark {
  width: 34px;
  height: 34px;
  background: var(--accent);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(27,79,216,0.3);
}
.logo-word {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 400;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}
.nav-cta:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow-accent);
  transform: translateY(-1px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 80px;
  display: flex;
  align-items: center;
  min-height: 700px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.hero-blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(27,79,216,0.10) 0%, transparent 70%);
  top: -120px; right: -80px;
}
.hero-blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,148,11,0.07) 0%, transparent 70%);
  bottom: -60px; left: 5%;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14,14,14,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,14,14,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 70% 40%, black 20%, transparent 80%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}
.hero-content { animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 28px;
  background: var(--bg-alt);
  padding: 6px 14px 6px 10px;
  border-radius: 100px;
  border: 1px solid var(--border);
}
.eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-glow 2.5s ease-in-out infinite;
  flex-shrink: 0;
}
.hero-headline {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 20px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.hero-headline-accent {
  color: var(--accent);
  position: relative;
}
.hero-lede {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
  font-weight: 400;
}
.hero-privacy-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--fg);
  background: var(--accent-light);
  border: 1.5px solid var(--accent-mid);
  border-radius: 100px;
  padding: 7px 14px;
  margin-bottom: 28px;
  width: fit-content;
}
.privacy-icon { color: var(--accent); flex-shrink: 0; }
.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--fg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 100px;
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.2s, transform 0.2s;
}
.hero-badge:hover { box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.badge-icon { color: var(--accent); display: flex; align-items: center; flex-shrink: 0; }
.hero-cta-wrap {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 36px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(27,79,216,0.25);
}
.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow-accent);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--fg-muted);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 14px 20px;
  border-radius: 12px;
  border: 1.5px solid var(--border-strong);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.btn-ghost:hover {
  background: var(--bg-alt);
  border-color: var(--fg-light);
  transform: translateY(-1px);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 0.8s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-visual-inner {
  position: relative;
  width: 100%;
  max-width: 480px;
}
.hero-card-main {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: 32px;
  border: 1px solid var(--border);
  position: relative;
  z-index: 2;
}
.hcm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.hcm-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.hcm-badge {
  font-size: 0.72rem;
  font-weight: 600;
  background: #DCFCE7;
  color: #15803D;
  padding: 4px 10px;
  border-radius: 100px;
}
.hcm-rows { display: flex; flex-direction: column; gap: 14px; }
.hcm-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.hcm-row-left { display: flex; align-items: center; gap: 10px; }
.hcm-row-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hcm-row-icon.blue { background: var(--accent-light); color: var(--accent); }
.hcm-row-icon.amber { background: var(--gold-light); color: var(--gold); }
.hcm-row-icon.green { background: #DCFCE7; color: #15803D; }
.hcm-row-label { font-size: 0.82rem; font-weight: 500; color: var(--fg); }
.hcm-row-meta { font-size: 0.75rem; color: var(--fg-light); font-weight: 400; }
.hcm-row-right { display: flex; align-items: center; gap: 6px; }
.hcm-amount { font-size: 0.88rem; font-weight: 700; color: var(--fg); }
.hcm-status {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 100px;
}
.hcm-status.done { background: #DCFCE7; color: #15803D; }
.hcm-status.pending { background: #FEF9EC; color: #92400E; }
.hcm-status.progress { background: var(--accent-light); color: var(--accent); }

/* Floating AI indicator */
.hero-ai-float {
  position: absolute;
  bottom: -16px;
  right: -16px;
  z-index: 10;
  animation: float 4s ease-in-out infinite;
}
.hai-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
}
.hai-icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hai-info { display: flex; flex-direction: column; }
.hai-name { font-size: 0.82rem; font-weight: 700; color: var(--fg); }
.hai-status-text { font-size: 0.72rem; color: var(--fg-muted); }

/* Decorative dots */
.hero-deco {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  z-index: 1;
  opacity: 0.4;
}

/* ============================================
   WHAT IT DOES
   ============================================ */
.what-it-does {
  background: var(--bg-alt);
  padding: 120px 0;
}
.wid-headline-block {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}
.wid-headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}
.wid-subheadline {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.65;
}
.wid-three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.wid-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  cursor: default;
}
.wid-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--border-strong);
}
.wid-icon { margin-bottom: 24px; }
.wid-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}
.wid-card-body {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ============================================
   FEATURES
   ============================================ */
.features {
  padding: 120px 0;
  background: var(--bg);
}
.features-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
}
.feature-card {
  padding: 40px 36px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.feature-card:nth-child(2n) { border-right: none; }
.feature-card:nth-last-child(-n+2) { border-bottom: none; }
.feature-card:hover { background: var(--accent-light); }
.feature-marker {
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.2s;
}
.feature-card:hover .feature-marker { background: var(--accent); }
.feature-card:hover .feature-marker svg path { stroke: white; }
.feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}
.feature-body {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ============================================
   HUBBIZ COMPLIANCE
   ============================================ */
.hubbiz-compliance {
  background: #0E0E0E;
  padding: 100px 0;
}
.hubbiz-inner { max-width: 1120px; margin: 0 auto; padding: 0 40px; }
.hubbiz-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 14px;
}
.hubbiz-headline {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.hubbiz-subheadline {
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  max-width: 540px;
  margin-bottom: 56px;
  line-height: 1.65;
}
.hubbiz-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.hubbiz-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.hubbiz-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}
.hubbiz-icon { margin-bottom: 16px; opacity: 0.9; }
.hubbiz-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.hubbiz-card-body {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
}
.hubbiz-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #0E0E0E;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.hubbiz-cta:hover {
  background: #B88409;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,148,11,0.25);
}

/* ============================================
   PRICING
   ============================================ */
.pricing-section {
  padding: 120px 0;
  background: var(--white);
}
.pricing-header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 48px;
}
.pricing-headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.025em;
}
.pricing-subheadline {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.6;
}
.plan-toggle-wrap {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  background: var(--bg-alt);
  border-radius: 999px;
  padding: 5px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--border);
}
.plan-toggle-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 12px 36px;
  border-radius: 999px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.25s ease, box-shadow 0.25s ease;
  min-width: 150px;
}
.plan-toggle-btn.active {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.toggle-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.plan-toggle-btn.active .toggle-label { color: var(--accent); }
.toggle-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fg);
}
.toggle-price span { font-size: 0.72rem; font-weight: 500; color: var(--fg-muted); }
.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 760px;
  margin: 0 auto;
}
.plan-card {
  border-radius: 16px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  padding: 36px 32px;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.plan-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.20); transform: translateY(-4px); }

/* HubHome — white card, orange accent border */
.plan-card-active {
  border: 1.5px solid rgba(255,107,53,0.25);
  border-left: 5px solid #FF6B35;
  background: #FFFFFF;
  box-shadow: 0 8px 40px rgba(0,0,0,0.22), 0 0 0 1px rgba(255,107,53,0.08);
}
.plan-card-active:hover {
  box-shadow: 0 16px 56px rgba(0,0,0,0.28), 0 0 32px rgba(255,107,53,0.12);
  border-left-color: #E85A24;
  border-color: rgba(255,107,53,0.35);
}

/* HubBiz — cream card, bronze accent border */
.plan-card-other {
  border: 1.5px solid rgba(139,105,20,0.25);
  border-left: 5px solid #8B6914;
  background: #FDF6E2;
  box-shadow: 0 8px 40px rgba(0,0,0,0.22), 0 0 0 1px rgba(139,105,20,0.08);
}
.plan-card-other:hover {
  box-shadow: 0 16px 56px rgba(0,0,0,0.28), 0 0 32px rgba(139,105,20,0.12);
  border-left-color: #6B4F0F;
  border-color: rgba(139,105,20,0.35);
}

/* Glow behind the grid — makes cards feel elevated above dark hero */
.pricing-section .plans-grid { position: relative; z-index: 1; }
.pricing-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 60%, rgba(255,107,53,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.plan-card-inner { display: flex; flex-direction: column; }
.plan-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
  width: fit-content;
}
.plan-badge.home { background: #DCFCE7; color: #15803D; }
.plan-badge.biz { background: var(--accent-light); color: var(--accent); }
.plan-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0F1F4B;
  margin-bottom: 4px;
  letter-spacing: -0.015em;
}
.plan-tagline { font-size: 0.88rem; color: #3A3A3A; margin-bottom: 24px; }
.plan-price-wrap { display: flex; align-items: baseline; gap: 4px; margin-bottom: 28px; }
.plan-price { font-size: 2.6rem; font-weight: 700; color: #0F1F4B; letter-spacing: -0.03em; }
.plan-period { font-size: 0.88rem; color: #3A3A3A; font-weight: 500; }
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.plan-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--fg);
}
.plan-check { color: var(--accent); font-weight: 700; flex-shrink: 0; }
.plan-cta {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  cursor: pointer;
  letter-spacing: -0.01em;
}
/* HubHome CTA — orange */
.plan-cta-primary {
  background: #FF6B35;
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(255,107,53,0.35);
}
.plan-cta-primary:hover {
  background: #E85A24;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,107,53,0.40);
}

/* HubBiz CTA — dark bronze/gold */
.plan-cta-secondary {
  background: #8B6914;
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(139,105,20,0.30);
}
.plan-cta-secondary:hover {
  background: #6B4F0F;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139,105,20,0.38);
}

/* ============================================
   FAQ ACCORDION (Pricing section)
   ============================================ */
.faq-wrap {
  max-width: 760px;
  margin: 64px auto 0;
}
.faq-title {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item:has(.faq-answer:not([hidden])) {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fg);
  text-align: left;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-chevron {
  flex-shrink: 0;
  color: var(--fg-muted);
  transition: transform 0.3s ease, color 0.2s;
}
.faq-item:has(.faq-answer:not([hidden])) .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}
.faq-answer {
  padding: 0 20px 18px;
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
  animation: faqSlideDown 0.25s ease forwards;
}
@keyframes faqSlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  padding: 100px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.testimonials-header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 56px;
}
.testimonials-headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.025em;
}
.testimonials-subheadline {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.65;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  padding: 32px;
  transition: box-shadow 0.25s ease;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(14,14,14,0.10);
}
.testimonial-stars {
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: #C9940B;
  margin-bottom: 18px;
}
.testimonial-quote {
  font-size: 0.92rem;
  font-style: italic;
  color: var(--fg);
  line-height: 1.7;
  margin-bottom: 24px;
}
.testimonial-author { display: flex; flex-direction: column; gap: 2px; }
.testimonial-author-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--fg);
}
.testimonial-author-role {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  font-weight: 500;
}
.testimonial-author-location {
  font-size: 0.75rem;
  color: var(--fg-light);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  background: var(--fg);
  padding: 120px 0;
  color: var(--white);
}
.how-it-works .section-eyebrow { color: var(--gold); }
.hiw-headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 64px;
  letter-spacing: -0.025em;
}
.hiw-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.hiw-step { flex: 1; position: relative; }
.step-number {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 16px;
  line-height: 1;
  letter-spacing: -0.04em;
}
.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.step-body-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}
.hiw-connector {
  flex-shrink: 0;
  padding: 0 32px;
  display: flex;
  align-items: center;
  align-self: center;
}
.hiw-connector svg { opacity: 0.3; }

/* ============================================
   MANIFESTO
   ============================================ */
.manifesto {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--gold-light) 0%, #FFF9ED 50%, var(--accent-light) 100%);
}
.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 0 40px;
}
.manifesto-quote-mark { margin-bottom: 32px; }
.manifesto-text {
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.55;
  margin-bottom: 24px;
  font-style: normal;
  letter-spacing: -0.015em;
}
.manifesto-attribution {
  font-size: 0.88rem;
  color: var(--fg-muted);
  font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 48px 0 36px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
}
.footer-tagline { font-size: 0.88rem; color: var(--fg-muted); }
.footer-rule {
  height: 1px;
  background: var(--border);
  margin-bottom: 20px;
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-legal-link {
  font-size: 0.78rem;
  color: var(--fg-light);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal-link:hover { color: var(--accent); }
.footer-legal-sep { color: var(--fg-light); font-size: 0.78rem; }
.footer-copy { font-size: 0.8rem; color: var(--fg-light); }

/* ============================================
   VIDEO DEMO CARDS — Landing page
   ============================================ */
.lp-vid-card {
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.lp-vid-card:hover {
  box-shadow: 0 16px 56px rgba(0,0,0,0.18);
  transform: translateY(-4px);
}

.lp-vid-thumb {
  transition: transform 0.2s;
}
.lp-vid-thumb:hover .lp-vid-play {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.lp-vid-play {
  transition: transform 0.2s, box-shadow 0.2s;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hubbiz-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { border-right: none; }
  .feature-card:nth-last-child(-n+2) { border-bottom: none; }
  .feature-card:nth-child(n+3) { border-top: 1px solid var(--border); }
  .features-grid { border-bottom: none; }
  .feature-card:nth-child(n+3) { border-bottom: 1px solid var(--border); }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { display: none; }
  .wid-three-col { grid-template-columns: 1fr; gap: 16px; }
  .hiw-steps { flex-direction: column; gap: 40px; }
  .hiw-connector { display: none; }
  .nav-tagline { display: none; }
  .plans-grid { grid-template-columns: 1fr; max-width: 440px; }
  .plan-toggle-wrap { width: 100%; }
  .plan-toggle-btn { flex: 1; min-width: unset; }
  .section-inner { padding: 0 24px; }
  .nav { padding: 0 24px; }
  .footer-inner { padding: 0 24px; }
  .hubbiz-inner { padding: 0 24px; }
  .hero { padding: 72px 0 64px; }
  .what-it-does { padding: 80px 0; }
  .features { padding: 80px 0; }
  .pricing-section { padding: 80px 0; }
  .how-it-works { padding: 80px 0; }
  .manifesto { padding: 80px 0; }
  .hubbiz-compliance { padding: 80px 0; }
}
@media (max-width: 600px) {
  .hero-badge-row { flex-direction: column; }
  .hero-cta-wrap { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { text-align: center; justify-content: center; }
  .hubbiz-grid { grid-template-columns: 1fr; }
  .plan-card { padding: 28px 24px; }
}

/* ============================================
   DUAL LANDING PAGES — HubHome / HubBiz
   ============================================ */

/* --- Homepage routing (/ ) --- */
.landing-home {
  min-height: 100vh;
  background: var(--primary-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  font-family: 'Inter', system-ui, sans-serif;
}
.landing-home-header {
  text-align: center;
  margin-bottom: 64px;
}
.landing-home-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}
.landing-home-logo-mark {
  width: 48px; height: 48px;
  background: var(--accent-gold);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.landing-home-logo-name {
  font-size: 1.5rem; font-weight: 800; color: var(--white);
  letter-spacing: -0.02em;
}
.landing-home-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}
.landing-home-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.65;
}
.landing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  width: 100%;
}
.landing-card {
  background: #FFFFFF;
  border: 1.5px solid rgba(14,14,14,0.08);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  text-decoration: none;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
}
.landing-card.home {
  border-left: 5px solid #FF6B35;
}
.landing-card.biz {
  background: #FDF6E2;
  border-left: 5px solid #8B6914;
}
.landing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 56px rgba(0,0,0,0.26);
}
.landing-card-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  font-size: 2rem;
}
.landing-card.home .landing-card-icon { background: rgba(255,107,53,0.12); }
.landing-card.biz .landing-card-icon { background: rgba(139,105,20,0.12); }
.landing-card-label {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 12px;
}
.landing-card.home .landing-card-label { color: #FF6B35; }
.landing-card.biz .landing-card-label { color: #8B6914; }
.landing-card-title {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700; color: #0F1F4B;
  margin-bottom: 12px; line-height: 1.15; letter-spacing: -0.02em;
}
.landing-card-desc {
  font-size: 0.88rem; color: #3A3A3A;
  line-height: 1.6; margin-bottom: 32px;
}
.landing-card-price {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 24px;
}
.landing-card-price-amount {
  font-size: 2rem; font-weight: 700; color: #0F1F4B;
}
.landing-card-price-period { font-size: 0.85rem; color: #3A3A3A; }
.landing-card-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 0.9rem; font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s;
  margin-top: auto;
}
.landing-card.home .landing-card-cta {
  background: var(--accent-gold); color: var(--primary-dark);
}
.landing-card.home .landing-card-cta:hover {
  background: var(--accent-gold-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,160,23,0.35);
}
.landing-card.biz .landing-card-cta {
  background: var(--accent); color: var(--white);
}
.landing-card.biz .landing-card-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,79,216,0.35);
}

/* --- HubHome & HubBiz shared landing styles --- */
.landing-page { background: var(--white); min-height: 100vh; font-family: 'Inter', system-ui, sans-serif; }
.landing-page .inline-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 40px; background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 1px 0 rgba(14,14,14,0.06);
}
.landing-page .inline-nav-logo {
  font-weight: 700; font-size: 1.1rem; color: var(--fg);
  text-decoration: none; display: flex; align-items: center; gap: 10px;
  letter-spacing: -0.01em;
}
.landing-page .inline-nav-logo-mark {
  width: 36px; height: 36px;
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
}
.landing-page .nav-back { font-size: 0.88rem; color: var(--fg-muted); text-decoration: none; font-weight: 500; }
.landing-page .nav-back:hover { color: var(--fg); }
.landing-page .nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent-gold); color: var(--primary-dark);
  font-size: 0.85rem; font-weight: 700;
  padding: 10px 22px; border-radius: 10px;
  text-decoration: none; transition: background 0.2s, transform 0.15s;
}
.landing-page .nav-cta:hover { background: var(--accent-gold-mid); transform: translateY(-1px); }

/* Hero */
.lp-hero {
  padding: 80px 40px 72px;
  text-align: center;
  position: relative; overflow: hidden;
}
.lp-hero.home { background: linear-gradient(160deg, #F8F4E8 0%, var(--white) 60%); }
.lp-hero.biz { background: linear-gradient(160deg, #EDF2FC 0%, var(--white) 60%); }
.lp-hero-bg-blob {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(80px);
}
.lp-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 24px;
  padding: 6px 16px; border-radius: 100px;
}
.lp-hero.home .lp-hero-eyebrow { background: var(--accent-gold-light); color: var(--accent-gold); border: 1.5px solid var(--accent-gold-mid); }
.lp-hero.biz .lp-hero-eyebrow { background: var(--accent-light); color: var(--accent); border: 1.5px solid var(--accent-mid); }
.lp-hero-headline {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700; color: var(--fg);
  margin-bottom: 20px; line-height: 1.1; letter-spacing: -0.03em;
  max-width: 760px; margin-left: auto; margin-right: auto;
}
.lp-hero-sub {
  font-size: 1.05rem; color: var(--fg-muted);
  max-width: 600px; margin: 0 auto 40px; line-height: 1.7;
}
.lp-hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; border-radius: 14px;
  font-size: 1rem; font-weight: 700;
  text-decoration: none; transition: transform 0.15s, box-shadow 0.2s;
  min-height: 52px;
}
.lp-hero.home .lp-hero-cta {
  background: var(--accent-gold); color: var(--primary-dark);
  box-shadow: 0 6px 24px rgba(212,160,23,0.3);
}
.lp-hero.home .lp-hero-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(212,160,23,0.4); }
.lp-hero.biz .lp-hero-cta {
  background: var(--accent); color: var(--white);
  box-shadow: 0 6px 24px rgba(27,79,216,0.28);
}
.lp-hero.biz .lp-hero-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(27,79,216,0.38); }
.lp-hero-price-note {
  font-size: 0.88rem; color: var(--fg-muted); margin-top: 16px;
  font-weight: 500;
}

/* Feature cards */
.lp-features {
  padding: 80px 40px;
  background: var(--bg);
}
.lp-features-inner { max-width: 900px; margin: 0 auto; }
.lp-features-header { text-align: center; margin-bottom: 56px; }
.lp-section-eyebrow {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
}
.lp-section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700;
  color: var(--fg); margin-bottom: 14px; letter-spacing: -0.025em; line-height: 1.15;
}
.lp-section-sub { font-size: 1rem; color: var(--fg-muted); line-height: 1.65; }
.lp-features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.lp-feat-card {
  background: var(--bg-card); border-radius: var(--radius-lg);
  padding: 32px 28px; border: 1px solid var(--border);
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  display: flex; flex-direction: column; gap: 0;
}
.lp-feat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--border-strong); }
.lp-feat-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.5rem;
}
.lp-feat-icon.home { background: var(--accent-gold-light); }
.lp-feat-icon.biz { background: var(--accent-light); }
.lp-feat-title { font-size: 1rem; font-weight: 700; color: var(--fg); margin-bottom: 10px; letter-spacing: -0.01em; }
.lp-feat-body { font-size: 0.88rem; color: var(--fg-muted); line-height: 1.65; }

/* Security block */
.lp-security {
  padding: 80px 40px;
  background: var(--white);
}
.lp-security-inner { max-width: 820px; margin: 0 auto; }
.lp-security.home { background: linear-gradient(160deg, var(--white) 0%, #F8F4E8 100%); }
.lp-security.biz { background: linear-gradient(160deg, var(--white) 0%, #EDF2FC 100%); }
.lp-security-card {
  border-radius: var(--radius-xl); padding: 48px;
  display: flex; align-items: flex-start; gap: 28px;
}
.lp-security.home .lp-security-card { background: var(--accent-gold-light); border: 1.5px solid var(--accent-gold-mid); }
.lp-security.biz .lp-security-card { background: var(--accent-light); border: 1.5px solid var(--accent-mid); }
.lp-sec-icon {
  width: 56px; height: 56px; border-radius: 16px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
}
.lp-security.home .lp-sec-icon { background: var(--accent-gold); }
.lp-security.biz .lp-sec-icon { background: var(--accent); }
.lp-sec-content { flex: 1; }
.lp-sec-title { font-size: 1.1rem; font-weight: 700; color: var(--fg); margin-bottom: 12px; letter-spacing: -0.01em; }
.lp-sec-body { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.75; }

/* CTA section */
.lp-cta-section {
  padding: 80px 40px;
  text-align: center;
  background: var(--bg);
}
.lp-cta-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; color: var(--fg); margin-bottom: 16px; letter-spacing: -0.025em; }
.lp-cta-sub { font-size: 1rem; color: var(--fg-muted); margin-bottom: 40px; line-height: 1.65; }
.lp-cta-price { display: flex; align-items: baseline; justify-content: center; gap: 6px; margin-bottom: 12px; }
.lp-cta-price-amt { font-size: 2.4rem; font-weight: 700; color: var(--fg); }
.lp-cta-price-period { font-size: 0.88rem; color: var(--fg-muted); }
.lp-cta-note { font-size: 0.88rem; color: var(--fg-muted); margin-bottom: 32px; font-weight: 500; }
.lp-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 40px; border-radius: 14px;
  font-size: 1rem; font-weight: 700; text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s; min-height: 52px;
}
.lp-cta-btn.home {
  background: var(--accent-gold); color: var(--primary-dark);
  box-shadow: 0 6px 24px rgba(212,160,23,0.3);
}
.lp-cta-btn.home:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(212,160,23,0.4); }
.lp-cta-btn.biz {
  background: var(--accent); color: var(--white);
  box-shadow: 0 6px 24px rgba(27,79,216,0.28);
}
.lp-cta-btn.biz:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(27,79,216,0.38); }

/* Landing footer */
.lp-footer {
  padding: 40px;
  background: var(--white);
  border-top: 1px solid var(--border);
  text-align: center;
}
.lp-footer-inner { max-width: 900px; margin: 0 auto; }
.lp-footer-logo { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 24px; font-weight: 700; font-size: 1rem; color: var(--fg); text-decoration: none; }
.lp-footer-logo-mark { width: 32px; height: 32px; border-radius: 9px; background: var(--primary-dark); display: flex; align-items: center; justify-content: center; }
.lp-footer-links { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 16px; }
.lp-footer-link { font-size: 0.82rem; color: var(--fg-light); text-decoration: none; transition: color 0.2s; }
.lp-footer-link:hover { color: var(--accent); }
.lp-footer-sep { color: var(--fg-light); }
.lp-footer-copy { font-size: 0.8rem; color: var(--fg-light); }

/* Responsive */
@media (max-width: 768px) {
  .landing-home { padding: 32px 20px; }
  .landing-cards { grid-template-columns: 1fr; gap: 16px; }
  .landing-card { padding: 36px 28px; }
  .landing-home-title { font-size: 1.6rem; }
  .landing-home-logo-name { font-size: 1.2rem; }
  .landing-home-subtitle { font-size: 0.95rem; }
  .lp-hero { padding: 60px 24px 56px; }
  .lp-features { padding: 60px 24px; }
  .lp-security { padding: 60px 24px; }
  .lp-cta-section { padding: 60px 24px; }
  .lp-features-grid { grid-template-columns: 1fr; gap: 14px; }
  .lp-security-card { flex-direction: column; padding: 32px 28px; }
  .lp-footer { padding: 32px 24px; }
  .lp-footer-links { flex-wrap: wrap; gap: 10px; }
  .landing-page .inline-nav { padding: 16px 24px; }
}

/* ============================================
   AUTH MODALS
   ============================================ */
.auth-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(15, 23, 42, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: fadeIn 0.2s ease;
}
.auth-modal-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 36px;
  width: 100%;
  max-width: 440px;
  position: relative;
  box-shadow: 0 32px 80px rgba(15, 23, 42, 0.22);
  animation: fadeUp 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.auth-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--fg-muted);
  transition: background 0.2s, color 0.2s;
}
.auth-modal-close:hover { background: var(--border); color: var(--fg); }
.auth-modal-header { text-align: center; margin-bottom: 28px; }
.auth-modal-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 20px;
}
.auth-modal-logo-mark {
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth-modal-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.auth-modal-sub { font-size: 0.88rem; color: var(--fg-muted); }
.auth-field { margin-bottom: 16px; }
.auth-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
}
.auth-field input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.92rem;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--fg);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  box-sizing: border-box;
}
.auth-field input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}
.auth-field input::placeholder { color: var(--fg-light); }
.auth-error {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.82rem;
  color: #DC2626;
  margin-bottom: 14px;
}
.auth-submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 12px;
  border: none;
  background: var(--accent);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Inter', system-ui, sans-serif;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.28);
  margin-top: 8px;
  min-height: 50px;
}
.auth-submit-btn:hover:not(:disabled) {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
}
.auth-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.auth-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.auth-modal-footer {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--fg-muted);
}
.auth-modal-footer a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.auth-modal-footer a:hover { text-decoration: underline; }

@media (max-width: 480px) {
  .auth-modal-card { padding: 32px 24px; border-radius: 12px; }
}