:root {
  /* Core Shell */
  --bg: #090D0A;
  --header-bg: #131913;
  --panel-bg: rgba(15, 19, 15, 0.92);
  --border: #3B4332;
  
  /* Text */
  --text-primary: #E6EDF3;
  --text-secondary: #A5AD98;
  --text-accent: #D7BA68;
  --text-warm: #F4ECD2;

  /* Surfaces */
  --card-bg: #111713;
  --card-border: #3B4332;
  --input-bg: #0C1110;

  /* Primary Actions (Gold) */
  --btn-start: #9E8034;
  --btn-end: #CFB158;
  --btn-border: #E0C573;
  --btn-hover: #E0BF60;

  /* Success Actions */
  --success-text: #96B97A;
  --progress-bar: #C6A84F;
  
  /* Grid & Layout Settings */
  --max-width: 1000px;
  --font-logo: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body.cookie-consent-open {
  overflow: hidden;
}

/* Background Effects */
.background-effects {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  animation: float 10s ease-in-out infinite alternate;
}

.orb-1 {
  background: var(--btn-end);
  width: 500px;
  height: 500px;
  top: -100px;
  left: -100px;
}

.orb-2 {
  background: var(--success-text);
  width: 400px;
  height: 400px;
  bottom: -50px;
  right: -50px;
  animation-delay: -5s;
}

.noise {
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.85" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.05"/%3E%3C/svg%3E');
  mix-blend-mode: overlay;
  opacity: 0.4;
}

@keyframes float {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(30px) scale(1.1); }
}

/* Navigation */
.glass-nav {
  position: fixed;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 1180px;
  background: rgba(15, 19, 15, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(158, 128, 52, 0.2);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  z-index: 1000;
  transition: top 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.glass-nav:hover {
  background: rgba(15, 19, 15, 0.7);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.7), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.glass-nav.visible {
  top: 1.5rem;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 1.25rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo {
  height: 32px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(207, 177, 88, 0.2));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.nav-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 15px rgba(207, 177, 88, 0.4));
}

.nav-title {
  font-family: var(--font-logo);
  color: var(--text-warm);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-toggle:hover {
  border-color: rgba(224, 197, 115, 0.45);
  background: rgba(255, 255, 255, 0.05);
}

.nav-toggle:focus-visible {
  outline: 2px solid rgba(224, 197, 115, 0.55);
  outline-offset: 2px;
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-links {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  gap: clamp(1rem, 1.8vw, 1.8rem);
  align-items: center;
  min-width: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-account-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.78rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(224, 197, 115, 0.32);
  background:
    linear-gradient(180deg, rgba(207, 177, 88, 0.2), rgba(158, 128, 52, 0.12)),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: var(--text-warm);
  text-decoration: none;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.nav-account-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(224, 197, 115, 0.5);
  background:
    linear-gradient(180deg, rgba(207, 177, 88, 0.28), rgba(158, 128, 52, 0.16)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.nav-account-btn-active {
  border-color: rgba(224, 197, 115, 0.58);
  background:
    linear-gradient(180deg, rgba(224, 197, 115, 0.32), rgba(158, 128, 52, 0.2)),
    rgba(255, 255, 255, 0.04);
}

.nav-account-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  padding: 0.5rem 0.25rem;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--btn-hover);
  text-shadow: 0 0 8px rgba(224, 191, 96, 0.3);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

.cookie-consent-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(4, 7, 5, 0.76);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.cookie-consent-overlay[hidden] {
  display: none !important;
}

.cookie-consent-card {
  width: min(100%, 760px);
  padding: 2rem;
  border-radius: 28px;
  border: 1px solid rgba(224, 197, 115, 0.34);
  background:
    radial-gradient(circle at top left, rgba(224, 197, 115, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(20, 25, 20, 0.98), rgba(12, 16, 13, 0.98));
  box-shadow:
    0 34px 80px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.cookie-consent-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.78rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  border: 1px solid rgba(224, 197, 115, 0.22);
  background: rgba(224, 197, 115, 0.08);
  color: var(--text-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-consent-title {
  margin-bottom: 0.85rem;
  color: var(--text-warm);
  font-family: var(--font-logo);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.1;
}

.cookie-consent-copy {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
}

.cookie-consent-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.cookie-consent-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.cookie-consent-link:hover {
  color: var(--text-accent);
}

.cookie-consent-accept {
  min-width: 170px;
}

/* Hero Section */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  width: 100%;
}

.hero-content {
  flex: 1;
  text-align: left;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  text-align: left;
}

.brand-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  justify-content: center;
}

.brand-name {
  font-family: var(--font-logo);
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-warm);
  line-height: 1;
  letter-spacing: -0.02em;
}

.logo {
  width: 90px;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(207, 177, 88, 0.3));
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.badge {
  display: inline-block;
  background: rgba(43, 49, 38, 0.6);
  border: 1px solid var(--border);
  color: var(--text-warm);
  padding: 0.35rem 1.25rem;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  backdrop-filter: blur(10px);
}

.title {
  font-family: var(--font-logo);
  font-size: clamp(3rem, 6vw, 4.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.highlight {
  background: linear-gradient(135deg, var(--btn-start), var(--btn-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
}

.section-header .subtitle,
.demos-header .subtitle {
  margin: 0 auto;
}

/* Terminal Mockup */
.terminal-mockup {
  width: 100%;
  max-width: 800px;
  background: var(--input-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  animation: fadeUp 1s 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

.terminal-header {
  background: var(--header-bg);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.red { background: #A67062; }
.yellow { background: #C7A84D; }
.green { background: #96B97A; }

.terminal-title {
  margin-left: 1rem;
  color: var(--text-secondary);
  font-family: monospace;
  font-size: 0.9rem;
}

.terminal-body {
  padding: 1.5rem;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.95rem;
  color: var(--text-primary);
  min-height: 250px;
}

.typing-line {
  margin-bottom: 0.5rem;
}

.log-success { color: var(--success-text); }
.log-warn { color: var(--text-accent); }
.log-path { color: var(--text-secondary); }

/* Cursor effect */
.cursor {
  display: inline-block;
  width: 8px;
  height: 18px;
  background-color: var(--progress-bar);
  animation: blink 1s step-end infinite;
  vertical-align: middle;
  margin-left: 4px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Problems Section */
.problems-section {
  width: 100%;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-family: var(--font-logo);
  color: var(--text-warm);
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.problems-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

.problem-solution-card {
  display: flex;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.problem-solution-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.problem-solution-card:hover {
  border-color: var(--btn-border);
  box-shadow: 0 10px 30px rgba(15, 19, 15, 0.8), 0 0 20px rgba(207, 177, 88, 0.1);
  transform: translateY(-5px);
}

.ps-side {
  flex: 1;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.problem-side {
  background: linear-gradient(135deg, rgba(166, 112, 98, 0.04), transparent);
}

.solution-side {
  background: linear-gradient(135deg, transparent, rgba(150, 185, 122, 0.06));
}

.ps-divider {
  width: 1px;
  background: var(--border);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ps-arrow {
  position: absolute;
  width: 48px;
  height: 48px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.problem-solution-card:hover .ps-arrow {
  color: var(--text-warm);
  background: var(--btn-start);
  border-color: var(--btn-border);
  transform: scale(1.15);
  box-shadow: 0 0 15px rgba(207, 177, 88, 0.4);
}

.ps-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
}

.ps-badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 20px;
}

.badge-problem {
  color: #A67062;
  background: rgba(166, 112, 98, 0.1);
  border: 1px solid rgba(166, 112, 98, 0.25);
}

.badge-solution {
  color: #96B97A;
  background: rgba(150, 185, 122, 0.1);
  border: 1px solid rgba(150, 185, 122, 0.25);
}

.ps-side h3 {
  color: var(--text-primary);
  font-size: 1.4rem;
  font-family: var(--font-logo);
  line-height: 1.3;
}

.solution-side h3 {
  color: var(--text-warm);
}

.ps-side p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Connectivity Section */
.connectivity-section {
  width: 100%;
  margin-top: 2rem;
  margin-bottom: 2rem;
  animation: fadeUp 1s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

.connectivity-container {
  display: flex;
  align-items: center;
  gap: 4rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  overflow: hidden;
  padding: 3rem;
  position: relative;
  transition: all 0.3s ease;
}

.connectivity-container:hover {
  border-color: var(--btn-border);
  box-shadow: 0 10px 30px rgba(15, 19, 15, 0.8), 0 0 20px rgba(207, 177, 88, 0.1);
}

.connectivity-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.connectivity-block h2 {
  font-family: var(--font-logo);
  color: var(--text-warm);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.connectivity-block p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

.connectivity-icon {
  margin-bottom: 1rem;
  background: rgba(158, 128, 52, 0.1);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(158, 128, 52, 0.2);
}

.connectivity-visual {
  flex: 1.2;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.connectivity-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  border: 1px solid var(--card-border);
  transition: transform 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.connectivity-image:hover {
  transform: translateY(-5px);
  border-color: var(--btn-border);
}


/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 100%;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  border-color: var(--btn-border);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(15, 19, 15, 0.8), 0 0 20px rgba(207, 177, 88, 0.1);
}

.feature-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top center;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: filter 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.feature-image:hover {
  filter: brightness(1.1);
  transform: scale(1.02);
  border-color: var(--btn-border);
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.feature-icon {
  width: 24px;
  height: 24px;
  color: var(--text-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-title {
  color: var(--text-warm);
  font-size: 1.15rem;
}

.feature-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.pricing-container {
  padding-top: 2rem;
}

.pricing-page-hero {
  padding-top: 3rem;
}

.pricing-hero-header {
  margin-bottom: 2.5rem;
}

.pricing-hero-subtitle {
  max-width: 760px;
}

.pricing-grid-section {
  width: 100%;
  margin: 0 auto 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
  overflow: visible;
}

.pricing-card-featured {
  border-color: rgba(207, 177, 88, 0.45);
  box-shadow: 0 18px 40px rgba(8, 10, 9, 0.45), 0 0 0 1px rgba(207, 177, 88, 0.08) inset;
}

.pricing-card-badged {
  transform: translateY(-4px);
  box-shadow:
    0 22px 44px rgba(8, 10, 9, 0.5),
    0 0 0 1px rgba(207, 177, 88, 0.12) inset;
}

.pricing-card-enterprise {
  background:
    radial-gradient(circle at top right, rgba(207, 177, 88, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(19, 24, 20, 0.98), rgba(11, 16, 13, 0.98));
}

.pricing-badge {
  position: absolute;
  top: -0.95rem;
  right: 1.2rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.58rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(240, 214, 133, 0.44);
  background:
    linear-gradient(135deg, rgba(255, 232, 163, 0.98), rgba(207, 177, 88, 0.94));
  box-shadow:
    0 16px 34px rgba(11, 16, 13, 0.36),
    0 0 28px rgba(207, 177, 88, 0.18);
  color: #17130b;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-badge::before {
  content: "";
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  margin-right: 0.5rem;
  background: rgba(23, 19, 11, 0.82);
  box-shadow: 0 0 0 4px rgba(23, 19, 11, 0.08);
}

.pricing-card-top {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.pricing-card-title {
  margin: 0;
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  color: var(--text-primary);
}

.pricing-price-row {
  display: flex;
  align-items: flex-end;
  gap: 0.45rem;
}

.pricing-price {
  font-family: var(--font-logo);
  font-size: clamp(2.5rem, 4vw, 3.4rem);
  line-height: 0.95;
  color: var(--text-accent);
}

.pricing-price-currency {
  margin-right: 0.12em;
}

.pricing-price-suffix {
  color: var(--text-secondary);
  font-size: 0.95rem;
  padding-bottom: 0.45rem;
}

.pricing-sites {
  margin: 0;
  color: var(--text-primary);
  font-weight: 600;
}

.pricing-copy {
  margin-top: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.pricing-copy p:first-child {
  margin-top: 0;
}

.pricing-copy p:last-child {
  margin-bottom: 0;
}

.pricing-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.4rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.25s ease;
}

.secondary-btn:hover {
  border-color: var(--btn-border);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.pricing-notes-card {
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(207, 177, 88, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.015));
}

.pricing-notes-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(207, 177, 88, 0.08), transparent 30%, transparent 70%, rgba(150, 185, 122, 0.06));
  pointer-events: none;
}

.pricing-notes-header {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.9rem;
  max-width: 760px;
  margin-bottom: 2rem;
}

.pricing-notes-title {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.05;
  color: var(--text-warm);
}

.pricing-notes-intro {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}

.pricing-notes-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.pricing-note-item {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  min-height: 100%;
  padding: 1.25rem;
  border-radius: 20px;
  border: 1px solid rgba(207, 177, 88, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    rgba(8, 11, 9, 0.38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.pricing-note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(224, 197, 115, 0.18);
  background: linear-gradient(180deg, rgba(207, 177, 88, 0.16), rgba(158, 128, 52, 0.06));
  color: var(--text-accent);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.pricing-note-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-note-kicker {
  color: var(--text-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-notes-grid h3 {
  margin: 0 0 0.65rem;
  color: var(--text-primary);
  font-size: 1.28rem;
}

.pricing-note-item .feature-desc {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
}

.account-page-shell {
  max-width: 1200px;
  display: grid;
  gap: 1.8rem;
}

.auth-shell-card {
  display: flex;
  justify-content: center;
  padding: 2.2rem;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(18, 24, 18, 0.94), rgba(12, 16, 12, 0.98)),
    radial-gradient(circle at top center, rgba(207, 177, 88, 0.08), transparent 46%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 24px 56px rgba(0, 0, 0, 0.22);
}

.auth-form-shell,
.auth-state-shell {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.auth-form-shell {
  display: grid;
  gap: 1rem;
}

.auth-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.95rem;
}

.auth-input {
  width: 100%;
  min-height: 58px;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid rgba(207, 177, 88, 0.12);
  background: linear-gradient(180deg, rgba(15, 19, 15, 0.95), rgba(10, 14, 10, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.auth-input::placeholder {
  color: rgba(214, 222, 229, 0.45);
}

.auth-input:focus {
  border-color: rgba(207, 177, 88, 0.42);
  box-shadow:
    0 0 0 4px rgba(207, 177, 88, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transform: translateY(-1px);
}

.auth-form-actions {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
  padding-top: 0.25rem;
}

.auth-submit-btn {
  width: 100%;
  min-height: 58px;
  border-radius: 16px;
  font-size: 1rem;
}

.auth-form-note {
  text-align: center;
  padding-top: 0.25rem;
}

.auth-state-shell {
  display: grid;
  gap: 1rem;
  justify-items: center;
  text-align: center;
}

.auth-state-actions {
  padding-top: 0;
}

.account-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(220px, 320px);
  gap: 1.4rem;
  align-items: center;
  margin-top: 2.4rem;
}

.account-hero-copy {
  display: grid;
  gap: 0.9rem;
}

.account-hero-status {
  display: flex;
  justify-content: center;
}

.account-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.dashboard-kpi-card {
  position: relative;
  overflow: hidden;
  padding: 1.2rem;
  border-radius: 20px;
  border: 1px solid rgba(207, 177, 88, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    radial-gradient(circle at top right, rgba(207, 177, 88, 0.12), transparent 42%);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.dashboard-kpi-label {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--text-warm);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.dashboard-kpi-value {
  display: block;
  color: var(--text-primary);
  font-size: clamp(1.55rem, 2.3vw, 2.3rem);
  line-height: 1.05;
}

.dashboard-kpi-meta {
  margin: 0.7rem 0 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

.account-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
}

.dashboard-panel {
  display: grid;
  gap: 1.2rem;
}

.dashboard-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.dashboard-panel-header .feature-title {
  margin: 0.25rem 0 0;
}

.dashboard-ring {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(8, 12, 9, 0.96) 0 56%, transparent 57%),
    conic-gradient(var(--text-accent) 0 var(--usage), rgba(255, 255, 255, 0.06) var(--usage) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 0 0 0 1px rgba(207, 177, 88, 0.18),
    0 24px 60px rgba(0, 0, 0, 0.28);
}

.dashboard-ring-inner {
  width: 62%;
  height: 62%;
  border-radius: 50%;
  background: rgba(8, 12, 9, 0.92);
  border: 1px solid rgba(207, 177, 88, 0.12);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0.6rem;
}

.dashboard-ring-inner strong {
  display: block;
  color: var(--text-primary);
  font-size: 2.1rem;
  line-height: 1;
}

.dashboard-ring-inner span {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.4;
}

.dashboard-micro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.dashboard-micro-item {
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(207, 177, 88, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.dashboard-micro-item strong {
  display: block;
  color: var(--text-primary);
  line-height: 1.45;
}

.dashboard-micro-label {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--text-secondary);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.dashboard-form-stack,
.dashboard-field {
  display: grid;
  gap: 0.5rem;
}

.dashboard-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.dashboard-input {
  width: 100%;
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.92rem 1rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.dashboard-textarea {
  resize: vertical;
  min-height: 96px;
}

.dashboard-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(207, 177, 88, 0.24);
  background: rgba(207, 177, 88, 0.08);
  color: var(--text-accent);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.account-sites-panel {
  gap: 1.5rem;
}

.account-sites-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 1rem;
}

.account-sites-summary,
.account-sites-form-card,
.account-site-item {
  padding: 1.15rem;
  border-radius: 18px;
  border: 1px solid rgba(207, 177, 88, 0.14);
  background: rgba(255, 255, 255, 0.02);
}

.account-sites-form-card h3,
.account-site-item h3 {
  margin: 0;
  color: var(--text-primary);
  font-size: 1.05rem;
}

.dashboard-usage-bar {
  position: relative;
  height: 12px;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.dashboard-usage-bar span {
  position: absolute;
  inset: 0 auto 0 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(150, 185, 122, 0.9), rgba(207, 177, 88, 0.92));
}

.account-site-list {
  display: grid;
  gap: 1rem;
}

.account-site-form {
  display: grid;
  gap: 1rem;
}

.account-site-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.account-site-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.dashboard-empty-state,
.dashboard-empty-inline {
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px dashed rgba(207, 177, 88, 0.22);
  background: rgba(255, 255, 255, 0.018);
  color: var(--text-secondary);
}

.dashboard-empty-state h3 {
  margin: 0 0 0.45rem;
  color: var(--text-primary);
  font-size: 1.05rem;
}

.dashboard-empty-state p,
.dashboard-empty-inline {
  margin: 0;
  line-height: 1.7;
}

.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.88rem 1.2rem;
  border-radius: 14px;
  border: 1px solid rgba(166, 112, 98, 0.24);
  background: rgba(166, 112, 98, 0.08);
  color: #f0d7cf;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
}

.ghost-btn:hover {
  border-color: rgba(166, 112, 98, 0.36);
  background: rgba(166, 112, 98, 0.13);
  transform: translateY(-2px);
}

/* Videos Section */
.demos-section {
  width: 100%;
  margin-top: 2rem;
  animation: fadeUp 1s 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

.demos-header {
  text-align: center;
  margin-bottom: 3rem;
}

.demos-header h2 {
  font-family: var(--font-logo);
  color: var(--text-warm);
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.demos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.video-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.video-card:hover {
  border-color: var(--btn-border);
  box-shadow: 0 10px 30px rgba(15, 19, 15, 0.8);
}

.video-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--input-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--card-border);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: transform 0.3s ease, filter 0.3s ease;
  opacity: 0.8;
}

.video-placeholder:hover .video-thumb {
  transform: scale(1.02);
  filter: brightness(1.2);
}

.play-icon {
  position: absolute;
  width: 64px;
  height: 64px;
  background: rgba(158, 128, 52, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.3s ease, background 0.3s ease;
  backdrop-filter: blur(4px);
  cursor: pointer;
  z-index: 2;
}

.video-placeholder:hover .play-icon {
  transform: scale(1.1);
  background: var(--btn-end);
}

.video-info {
  padding: 1.5rem;
}

.video-title {
  color: var(--text-warm);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.video-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Footer / CTA */
.footer {
  width: 100%;
  display: grid;
  gap: 1.4rem;
  animation: fadeUp 1s 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

/* FAQ */
.faq-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.faq-layout {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.4fr);
  gap: 1.5rem;
  align-items: start;
}

.faq-intro-card {
  position: sticky;
  top: 6rem;
}

.faq-page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  text-decoration: none;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: transparent;
  border: none;
  color: var(--text-primary);
  padding: 1.35rem 1.5rem;
  font: inherit;
  font-size: 1.02rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-trigger:hover {
  color: var(--text-warm);
}

.faq-plus {
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(207, 177, 88, 0.2);
  background: rgba(207, 177, 88, 0.08);
  color: var(--text-accent);
  font-size: 1.35rem;
  line-height: 1;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.faq-item.open .faq-plus {
  transform: rotate(45deg);
  background: rgba(207, 177, 88, 0.16);
  border-color: rgba(207, 177, 88, 0.35);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 1.5rem 1.4rem;
  color: var(--text-secondary);
}

.faq-page-hero {
  width: 100%;
  text-align: center;
  display: grid;
  gap: 1rem;
  padding-top: 8rem;
}

.faq-page-hero .subtitle {
  max-width: 760px;
  margin: 0 auto;
}

.faq-page-grid {
  width: 100%;
  display: grid;
  gap: 1.25rem;
}

.faq-category {
  display: grid;
  gap: 1rem;
}

.faq-category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-category-title {
  font-family: var(--font-logo);
  font-size: 1.45rem;
  color: var(--text-warm);
}

.faq-category-note {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.cta-box {
  background: linear-gradient(180deg, var(--card-bg), var(--input-bg));
  border: 1px solid var(--btn-start);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--btn-end), transparent);
}

.cta-box h2 {
  font-family: var(--font-logo);
  color: var(--text-warm);
  margin-bottom: 0.5rem;
}

.cta-box p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.legal-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.legal-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.25s ease;
}

.legal-links a:hover {
  color: var(--text-accent);
}

.site-footer-shell {
  width: 100%;
  margin-top: 1.4rem;
  padding: 2rem;
  border: 1px solid rgba(207, 177, 88, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(18, 24, 18, 0.88), rgba(11, 15, 11, 0.96)),
    radial-gradient(circle at top left, rgba(207, 177, 88, 0.08), transparent 40%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 24px 60px rgba(0, 0, 0, 0.18);
  display: grid;
  gap: 2rem;
}

.site-footer-brand {
  display: grid;
  gap: 0.85rem;
  max-width: 480px;
}

.site-footer-logo-row {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.site-footer-logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.site-footer-title {
  font-family: var(--font-logo);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-warm);
}

.site-footer-copy {
  margin: 0;
  white-space: nowrap;
  color: var(--text-secondary);
  line-height: 1.8;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.site-footer-column {
  display: grid;
  gap: 0.65rem;
  align-content: start;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.02);
}

.site-footer-column h3 {
  margin: 0 0 0.2rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-warm);
}

.site-footer-column a,
.site-footer-note {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.site-footer-column a:hover {
  color: var(--text-accent);
}

.site-obfuscated-email {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  flex-wrap: wrap;
  color: var(--text-secondary);
  text-decoration: none;
}

.site-obfuscated-email:hover {
  color: var(--text-accent);
}

.site-obfuscated-separator {
  display: inline-flex;
  align-items: center;
  gap: 0.12rem;
  color: var(--text-accent);
}

.site-obfuscated-separator svg {
  width: 0.9rem;
  height: 0.9rem;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer-note {
  display: block;
}

.site-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(59, 67, 50, 0.7);
}

.site-footer-copyright,
.site-footer-signoff {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.site-footer-signoff {
  text-align: right;
}

.site-footer-heart {
  color: #d95b67;
}

.legal-page-shell {
  max-width: 1200px;
  display: grid;
  gap: 1.5rem;
}

.legal-page-hero {
  width: 100%;
  padding-top: 3rem;
}

.legal-article {
  display: grid;
  gap: 1.6rem;
}

.legal-article section {
  display: grid;
  gap: 0.75rem;
}

.legal-article h2 {
  margin: 0;
  color: var(--text-warm);
  font-family: var(--font-logo);
  font-size: 1.55rem;
}

.legal-article p,
.legal-article li {
  color: var(--text-secondary);
  line-height: 1.85;
}

.legal-article ul {
  margin: 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.55rem;
}

.legal-meta-note {
  padding: 1rem 1.15rem;
  border-radius: 16px;
  border: 1px solid rgba(207, 177, 88, 0.18);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-secondary);
  line-height: 1.7;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--btn-start), var(--btn-end));
  border: 1px solid var(--btn-border);
  color: #090D0A;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  opacity: 0.95;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.primary-btn:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.primary-btn[disabled] {
  cursor: not-allowed;
  opacity: 0.7;
  transform: none;
}

.secondary-btn {
  background: rgba(207, 177, 88, 0.08);
  border: 1px solid rgba(207, 177, 88, 0.2);
  color: var(--text-warm);
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

.secondary-btn:hover {
  border-color: var(--btn-border);
  background: rgba(207, 177, 88, 0.14);
  transform: translateY(-1px);
}

.site-notice {
  position: fixed;
  top: 110px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: min(720px, calc(100% - 32px));
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(15, 19, 15, 0.94);
  color: var(--text-primary);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(14px);
  animation: noticeDrop 0.28s ease-out;
  text-align: left;
}

.site-notice.success {
  border-color: rgba(150, 185, 122, 0.4);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(150, 185, 122, 0.08);
}

.site-notice.error {
  border-color: rgba(166, 112, 98, 0.4);
}

.site-notice-title {
  font-family: var(--font-logo);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-warm);
  margin-bottom: 0.35rem;
}

.site-notice-message {
  color: var(--text-primary);
  line-height: 1.55;
}

@keyframes noticeDrop {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

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

/* Image Preview Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(9, 13, 10, 0.9);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: flex;
  opacity: 1;
}

.modal-content {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
  border: 1px solid var(--border);
  transform: scale(0.95);
  transition: transform 0.3s ease;
  object-fit: contain;
}

.modal.show .modal-content {
  transform: scale(1);
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 40px;
  color: var(--text-secondary);
  font-size: 3rem;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 10000;
  line-height: 1;
}

.close-modal:hover {
  color: var(--text-warm);
}

/* Video Modal Content */
.video-modal-content {
  width: auto;
  height: auto;
  max-width: 95vw;
  max-height: 95vh;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
  border: 1px solid var(--border);
  transform: scale(0.95);
  transition: transform 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal-content video {
  max-width: 100%;
  max-height: 95vh;
  object-fit: contain;
  outline: none;
  display: block;
}

.modal.show .video-modal-content {
  transform: scale(1);
}

.close-video-modal {
  position: absolute;
  top: 20px;
  right: 40px;
  color: var(--text-secondary);
  font-size: 3rem;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 10000;
  line-height: 1;
}

.close-video-modal:hover {
  color: var(--text-warm);
}

/* ------------------------------------- */
/* Blog Section & Article Typography     */
/* ------------------------------------- */

.blog-hero {
  width: 100%;
  padding-top: 4rem;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.blog-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
}

.blog-card-image-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-bottom: 1px solid var(--card-border);
}

.blog-thumbnail {
  width: 100%;
  height: 100%;
  margin: 0;
  border: none;
  border-radius: 0;
  transform: scale(1.01);
}

.blog-card:hover .blog-thumbnail {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.blog-category {
  color: var(--text-accent);
  background: rgba(158, 128, 52, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-date {
  color: var(--text-secondary);
}

.blog-title {
  font-family: var(--font-logo);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
  color: var(--btn-hover);
}

.blog-excerpt {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.read-more {
  color: var(--text-warm);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: auto;
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.blog-card:hover .read-more {
  transform: translateX(5px);
  color: var(--btn-hover);
}

/* Article Page */
.article-container {
  max-width: 1200px;
  align-items: flex-start;
  padding-top: 8rem;
}

.back-link {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 1rem;
  cursor: pointer;
  padding: 0;
  margin-bottom: 2rem;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: var(--text-warm);
}

.article-wrapper {
  width: 100%;
  animation: fadeUp 1s 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

.article-header {
  margin-bottom: 3rem;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.article-title {
  font-family: var(--font-logo);
  color: var(--text-warm);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.article-hero-image {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.article-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  border: none;
  cursor: default;
}

.article-content {
  color: var(--text-primary);
  font-size: 1.1rem;
  line-height: 1.8;
}

.article-content p {
  margin-bottom: 1.5rem;
  color: #D1D9E0; /* Slightly brighter for reading */
}

.article-content .lead {
  font-size: 1.3rem;
  color: var(--text-warm);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.article-content h2 {
  font-family: var(--font-logo);
  color: var(--text-warm);
  font-size: 2rem;
  margin-top: 3.5rem;
  margin-bottom: 1.5rem;
}

.article-content h3 {
  font-family: var(--font-logo);
  color: var(--text-warm);
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.article-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  color: #D1D9E0;
}

.article-content figure {
  margin: 2rem 0;
}

.article-content img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.article-content a {
  color: var(--btn-hover);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.article-content code {
  background: rgba(158, 128, 52, 0.08);
  border: 1px solid rgba(207, 177, 88, 0.18);
  color: var(--text-warm);
  border-radius: 8px;
  padding: 0.1rem 0.4rem;
  font-size: 0.95em;
}

.article-content li {
  margin-bottom: 0.5rem;
}

.article-content strong {
  color: var(--text-primary);
  font-weight: 600;
}

.article-content blockquote {
  border-left: 4px solid var(--btn-start);
  background: var(--card-bg);
  padding: 1.5rem 2rem;
  margin: 2.5rem 0;
  border-radius: 0 12px 12px 0;
  font-family: var(--font-logo);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-accent);
}

.article-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.share-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-secondary);
}

.social-btn {
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.social-btn:hover {
  border-color: var(--btn-border);
  color: var(--text-warm);
  background: rgba(158, 128, 52, 0.1);
}

/* Responsiveness */
@media (max-width: 900px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-brand {
    justify-content: center;
    text-align: center;
  }

  .brand-info {
    align-items: center;
  }

  .subtitle {
    margin: 0 auto;
  }

  .hero-visual {
    justify-content: center;
    width: 100%;
  }

  .connectivity-container {
    flex-direction: column;
    padding: 2rem;
    gap: 2rem;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-intro-card {
    position: static;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .account-page-hero,
  .account-dashboard-grid,
  .account-sites-layout,
  .dashboard-form-grid,
  .auth-form-grid,
  .account-kpi-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-ring {
    width: 180px;
    height: 180px;
  }

  .pricing-notes-grid {
    grid-template-columns: 1fr;
  }

  .pricing-page-hero {
    padding-top: 2.5rem;
  }
}

@media (max-width: 980px) {
  .glass-nav {
    width: calc(100% - 1.5rem);
    padding: 0.85rem 1rem;
    border-radius: 28px;
  }

  .glass-nav.visible {
    top: 1rem;
  }

  .nav-container {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .nav-brand {
    order: 1;
    flex: 1 1 auto;
    min-width: 0;
  }

  .nav-brand-link {
    gap: 0.9rem;
  }

  .nav-logo {
    height: 36px;
  }

  .nav-title {
    font-size: 1.35rem;
  }

  .nav-toggle {
    display: inline-flex;
    order: 2;
    margin-left: 0;
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .nav-links {
    display: none;
    order: 3;
    width: 100%;
    flex: 0 0 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.45rem;
    margin-top: 1rem;
  }

  .nav-actions {
    display: none;
    order: 4;
    width: 100%;
    flex: 0 0 100%;
    margin-top: 0.85rem;
  }

  .glass-nav.menu-open {
    border-radius: 30px;
    background: rgba(15, 19, 15, 0.82);
  }

  .glass-nav.menu-open .nav-links {
    display: flex;
  }

  .glass-nav.menu-open .nav-actions {
    display: flex;
  }

  .nav-link {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 14px;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.03);
  }

  .nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(224, 197, 115, 0.18);
  }

  .nav-account-btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.15rem;
    border-radius: 16px;
  }

  .glass-nav.menu-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .glass-nav.menu-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .glass-nav.menu-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 2rem 1.5rem;
    gap: 3rem;
  }
  
  .terminal-mockup {
    display: none; /* Hide on mobile to save space */
  }

  .problem-solution-card {
    flex-direction: column;
  }
  
  .ps-divider {
    width: 100%;
    height: 1px;
  }
  
  .ps-arrow {
    transform: rotate(90deg);
  }
  
  .problem-solution-card:hover .ps-arrow {
    transform: rotate(90deg) scale(1.15);
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .demos-grid {
    grid-template-columns: 1fr;
  }

  .faq-trigger {
    padding: 1.15rem 1.1rem;
    font-size: 0.98rem;
  }

  .faq-answer p {
    padding: 0 1.1rem 1.15rem;
  }

  .faq-category-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer-shell {
    padding: 1.6rem;
  }

  .site-footer-copy {
    white-space: normal;
  }

  .auth-shell-card {
    padding: 1.5rem;
  }

  .auth-form-shell,
  .auth-state-shell {
    max-width: 100%;
  }

  .site-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer-signoff {
    text-align: left;
  }

  .pricing-actions {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-footer-shell {
    padding: 1.35rem;
    gap: 1.6rem;
  }

  .site-footer-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .site-footer-column {
    padding: 0.95rem 1rem;
  }
}
