/* Evraka office.evraka.ai – DataWise-style SaaS landing */
:root {
  --green: #015162;
  --green-dark: #033a47;
  --green-light: #B2E6F0;
  --green-soft: rgba(1, 81, 98, 0.06);
  --text: #111827;
  --text-muted: #6b7280;
  --bg: #ffffff;
  --bg-subtle: #f9fafb;
  --border: #e5e7eb;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 40px -10px rgba(1, 81, 98, 0.2);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max-width: 1200px;
  --max-width-narrow: 720px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 600ms ease, transform 600ms ease;
  will-change: opacity, transform;
}

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

.reveal--delay-1 {
  transition-delay: 80ms;
}

.reveal--delay-2 {
  transition-delay: 160ms;
}

.reveal--delay-3 {
  transition-delay: 240ms;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0.875rem 1.5rem;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 1.125rem;
}

.site-logo img {
  height: 32px;
  width: auto;
  display: block;
}

.site-logo sup {
  font-size: 0.65em;
  font-weight: 500;
  opacity: 0.9;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.15s;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.lang-switcher {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 0.875rem;
}

.lang-toggle {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  padding: 0.25rem 0.75rem;
  font: inherit;
  font-size: 0.8125rem;
  color: var(--text-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.lang-toggle::after {
  content: "";
  width: 8px;
  height: 8px;
  border-left: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(-45deg) translateY(-1px);
}

.lang-toggle:hover,
.lang-toggle:focus {
  color: var(--text);
  border-color: var(--green-light);
}

.lang-menu {
  position: absolute;
  top: 120%;
  right: 0;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 0.35rem;
  display: none;
  min-width: 140px;
  z-index: 120;
}

.lang-menu a {
  text-decoration: none;
  color: var(--text-muted);
  padding: 0.15rem 0.4rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  display: block;
  font-size: 0.8125rem;
}

.lang-menu a:hover,
.lang-menu a:focus {
  color: var(--text);
  border-color: var(--border);
}

.lang-menu a.is-active {
  color: var(--green);
  border-color: var(--green-light);
  background: var(--green-soft);
}

.lang-switcher:focus-within .lang-menu {
  display: block;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--green);
}

.nav-cta {
  background: var(--green);
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: background 0.15s;
}

.nav-cta:hover {
  background: var(--green-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 98;
  opacity: 0;
  transition: opacity 0.2s;
}

.nav-overlay.is-open {
  display: block;
  opacity: 1;
}

.nav-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  height: 100dvh;
  width: 280px;
  max-width: 100%;
  background: rgba(17, 24, 39, 0.98);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.22);
  z-index: 99;
  padding: max(4.25rem, env(safe-area-inset-top) + 3.5rem) 1.5rem 1.5rem;
  flex-direction: column;
  gap: 1rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.nav-drawer[aria-hidden="false"] {
  display: flex;
}

.nav-drawer a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 0;
}

.nav-drawer a:hover,
.nav-drawer a:focus {
  color: var(--green-light);
}

.nav-drawer .nav-cta {
  margin-top: 0.5rem;
  text-align: center;
}

.nav-drawer .lang-toggle {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.78);
}

.nav-drawer .lang-toggle:hover,
.nav-drawer .lang-toggle:focus {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.nav-drawer .lang-menu {
  background: rgba(17, 24, 39, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  left: 0;
  right: auto;
}

.nav-drawer .lang-menu a {
  color: rgba(255, 255, 255, 0.78);
}

.nav-drawer .lang-menu a:hover,
.nav-drawer .lang-menu a:focus {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
}

.nav-drawer .lang-menu a.is-active {
  color: var(--green-light);
  border-color: rgba(178, 230, 240, 0.35);
  background: rgba(178, 230, 240, 0.1);
}

.nav-close {
  position: absolute;
  top: 0.9rem;
  right: 0.85rem;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  font: inherit;
  font-size: 1.5rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-close:hover,
.nav-close:focus {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.nav-close:focus {
  outline: 2px solid var(--green-light);
  outline-offset: 2px;
}

/* Hero */
.hero {
  padding: 4rem 1.5rem 5rem;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin: 0 0 1.25rem;
  letter-spacing: -0.03em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero-tagline {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin: 0 0 2rem;
  line-height: 1.65;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 1.5rem;
}

.hero-marketplace {
  margin-bottom: 1.25rem;
}

.marketplace-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 0.875rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  box-shadow: var(--shadow);
  transition: border-color 0.15s, transform 0.1s;
}

.marketplace-link:hover,
.marketplace-link:focus {
  border-color: var(--green);
  transform: translateY(-1px);
}

.marketplace-link:focus {
  outline: 2px solid var(--green-light);
  outline-offset: 2px;
}

.marketplace-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 auto;
}

.marketplace-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.marketplace-icon--store {
  width: 1.5rem;
  height: 1.5rem;
}

/* Cloud startup program badges (wordmarks in assets/partners/) */
.partner-strip {
  margin-top: 1rem;
}

.partner-strip-caption {
  margin: 0 0 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  line-height: 1.35;
}

.partner-strip-lead {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}

.partner-strip-program-names {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.site-footer .partner-strip-lead {
  color: rgba(255, 255, 255, 0.92);
}

.site-footer .partner-strip-program-names {
  color: rgba(255, 255, 255, 0.55);
}

.partner-badges {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem 0.75rem;
}

.partner-badges li {
  margin: 0;
}

.partner-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: #fff;
  line-height: 0;
  box-shadow: var(--shadow);
}

.partner-badge--linked {
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.partner-badge--linked:hover,
.partner-badge--linked:focus-visible {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
}

.partner-badge--linked:focus-visible {
  outline: 2px solid var(--green-light);
  outline-offset: 2px;
}

.partner-badge-logo {
  display: block;
  height: 1.5rem;
  width: auto;
  max-width: min(220px, 100%);
}

.partner-badge-logo--gcp {
  height: 1.625rem;
  max-width: min(230px, 100%);
}

/* Microsoft for Startups official partner badge (PNG) */
.partner-badge-logo--mfs-badge {
  height: 3rem;
  width: auto;
  max-width: min(300px, 100%);
  object-fit: contain;
}

.site-footer .partner-strip {
  margin-top: 1rem;
}

.site-footer .partner-badge {
  border-color: rgba(255, 255, 255, 0.22);
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 640px;
}

.hero-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.875rem 1rem;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--text);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.hero-highlights li::before {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: var(--green);
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: #fff;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.15s, transform 0.1s;
  box-shadow: var(--shadow);
}

.cta-primary:hover,
.cta-primary:focus {
  background: var(--green-dark);
  color: #fff;
}

.cta-primary:focus {
  outline: 2px solid var(--green-light);
  outline-offset: 2px;
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  color: var(--green);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--border);
  transition: border-color 0.15s, color 0.15s;
}

.cta-secondary:hover,
.cta-secondary:focus {
  border-color: var(--green);
  color: var(--green-dark);
}

.hero-visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 420px;
  margin-left: auto;
}

.hero-visual .split-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 260px;
  background: linear-gradient(135deg, var(--green-soft) 0%, var(--green-light) 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-animation-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.hero-word-animation {
  width: min(100%, 300px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(1, 81, 98, 0.15);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 1rem 1.1rem;
}

.hero-word-animation--i18n {
  width: min(100%, 330px);
}

.hero-word-animation--i18n .hero-word-static {
  font-size: 0.84rem;
  line-height: 1.3;
}

.hero-word-animation--i18n .hero-word-rotator {
  height: 1.55rem;
}

.hero-word-animation--i18n .hero-word-rotator span {
  font-size: 0.94rem;
}

.hero-word-static {
  margin: 0 0 0.55rem;
  font-size: 0.9rem;
  line-height: 1.35;
  color: var(--green-dark);
  font-weight: 600;
}

.hero-word-rotator {
  position: relative;
  height: 1.4rem;
  overflow: hidden;
}

.hero-word-rotator span {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(12px);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
  animation: heroWordPop 5.5s linear infinite;
}

.hero-word-rotator span:nth-child(1) { animation-delay: 0s; }
.hero-word-rotator span:nth-child(2) { animation-delay: 1.1s; }
.hero-word-rotator span:nth-child(3) { animation-delay: 2.2s; }
.hero-word-rotator span:nth-child(4) { animation-delay: 3.3s; }
.hero-word-rotator span:nth-child(5) { animation-delay: 4.4s; }

@keyframes heroWordPop {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  8% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  18% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  24% {
    opacity: 0;
    transform: translateY(-10px) scale(1.01);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px) scale(1.01);
  }
}

.hero-visual-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 8px;
}

.hero-visual-grid span {
  background: linear-gradient(135deg, var(--green-soft) 0%, var(--green-light) 100%);
  border-radius: var(--radius-sm);
}

.hero-visual-grid span:nth-child(odd) {
  border-radius: 50%;
}

/* Section layout */
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.section-subtitle,
.section-lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0 auto 3rem;
  max-width: 560px;
  line-height: 1.65;
}

/* Intro */
.intro {
  padding: 4rem 1.5rem;
  background: var(--bg-subtle);
}

.intro .section-lead {
  margin-bottom: 0;
}

/* Expandable product copy (first carousel slide, TR) */
.carousel-details {
  margin-top: 1rem;
  text-align: left;
}

.carousel-details > summary {
  cursor: pointer;
  list-style: none;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
  user-select: none;
}

.carousel-details > summary::-webkit-details-marker {
  display: none;
}

.carousel-details > summary::marker {
  content: '';
}

.carousel-details-panel {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.carousel-details-lead {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.75rem;
  line-height: 1.35;
}

.carousel-details .product-overview-body p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.72;
  margin: 0 0 1rem;
}

.carousel-details .product-overview-body p:last-child {
  margin-bottom: 0;
}

.carousel-overview {
  max-width: 860px;
  margin: 1rem auto 0;
}

.carousel-overview .carousel-details {
  margin-top: 0;
  text-align: center;
}

.carousel-overview .carousel-details-panel {
  text-align: left;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.125rem;
}

/* Split sections */
.split {
  padding: 4rem 1.5rem;
}

.carousel {
  overflow: hidden;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.carousel-shell {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 1rem;
  align-items: center;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.carousel-track {
  display: flex;
  width: 100%;
  transform: translateX(0);
  transition: transform 450ms ease;
}

.carousel-slide {
  flex: 0 0 100%;
}

.carousel-slide .split-inner {
  max-width: none;
  margin: 0;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 2rem;
}

.carousel-slide .split-content {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.carousel-slide .split-image-placeholder {
  width: min(100%, 960px);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
}

.carousel-nav {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  cursor: pointer;
  position: relative;
  transition: transform 0.1s, border-color 0.15s, background 0.15s;
}

.carousel-nav:hover,
.carousel-nav:focus {
  border-color: var(--green-light);
  background: #fff;
}

.carousel-nav:active {
  transform: translateY(1px);
}

.carousel-nav:focus {
  outline: 2px solid var(--green-light);
  outline-offset: 2px;
}

.carousel-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--green-dark);
  border-bottom: 2px solid var(--green-dark);
  transform: rotate(135deg);
}

.carousel-nav--next::before {
  transform: rotate(-45deg);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(1, 81, 98, 0.25);
  background: rgba(1, 81, 98, 0.12);
  cursor: pointer;
  padding: 0;
}

.carousel-dot[aria-selected="true"] {
  background: var(--green);
  border-color: var(--green);
}

.carousel-dot:focus {
  outline: 2px solid var(--green-light);
  outline-offset: 2px;
}

.split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split-right .split-inner {
  direction: rtl;
}

.split-right .split-inner > * {
  direction: ltr;
}

.split-content h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.split-content p {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  line-height: 1.65;
}

.split-image-placeholder {
  aspect-ratio: 4/3;
  max-width: 100%;
  background: linear-gradient(145deg, var(--green-soft) 0%, var(--green-light) 50%);
  border-radius: var(--radius-lg);
}

.split-video {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: inherit;
  object-fit: cover;
}

.security-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.security-icon {
  width: 160px;
  height: 146px;
  border-radius: 999px;
  background: rgba(1, 81, 98, 0.12);
  border: 1px solid rgba(1, 81, 98, 0.24);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

/* Spotlight (features grid) */
.spotlight {
  padding: 4rem 1.5rem 5rem;
  background: var(--bg);
}

.spotlight-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.spotlight-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.spotlight-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--green-light);
}

.spotlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--green-soft);
  color: var(--green);
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
}

.spotlight-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.spotlight-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* Transform section (two large cards) */
.transform {
  padding: 4rem 1.5rem 5rem;
}

.transform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.transform-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.transform-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--green-light);
}

.transform-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--green-soft);
  color: var(--green);
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
}

.transform-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.transform-card p {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* CTA block */
.cta-block {
  padding: 4rem 1.5rem;
  text-align: center;
  background: linear-gradient(160deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
}

.cta-block .section-inner {
  max-width: var(--max-width-narrow);
}

.cta-block h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.cta-block p {
  margin: 0 0 1.5rem;
  opacity: 0.95;
  font-size: 1.0625rem;
}

.cta-block .cta-primary {
  background: #fff;
  color: var(--green);
}

.cta-block .cta-primary:hover,
.cta-block .cta-primary:focus {
  background: var(--green-light);
  color: var(--green-dark);
}

.demo-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.demo-form-row {
  display: flex;
  flex-direction: column;
  min-width: 230px;
  max-width: 280px;
  text-align: left;
}

.demo-form-row label {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  opacity: 0.9;
}

.demo-form-row input {
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-sm);
  border: none;
  outline: none;
  font: inherit;
}

.demo-form-row input::placeholder {
  opacity: 0.7;
}

.demo-form .cta-primary {
  align-self: flex-end;
}

.demo-form-message {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
}

.demo-form-message--success {
  color: #d1fae5;
}

.demo-form-message--error {
  color: #fee2e2;
}

.cta-large {
  padding: 0.875rem 2rem;
  font-size: 1.0625rem;
}

/* Footer */
.site-footer {
  padding: 2.5rem 1.5rem 0;
  background: var(--text);
  color: rgba(255, 255, 255, 0.9);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .site-logo {
  color: #fff;
  margin-bottom: 0.5rem;
}

.footer-brand .site-logo img {
  height: 28px;
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer-columns {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 1rem;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
  transition: color 0.15s;
}

.footer-col a:hover,
.footer-col a:focus {
  color: #fff;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem 2rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Legacy footer (privacy page) */
.site-footer .site-footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 1.5rem;
}

.site-footer .footer-links {
  display: flex;
  gap: 1.5rem;
}

.site-footer .footer-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.9375rem;
}

.site-footer .footer-links a:hover,
.site-footer .footer-links a:focus {
  color: #fff;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 1.5rem;
  background: var(--text);
  color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner--visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-banner-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  flex: 1;
  min-width: 200px;
}

.cookie-banner-text a {
  color: var(--green-light);
  text-decoration: underline;
}

.cookie-banner-text a:hover,
.cookie-banner-text a:focus {
  color: #fff;
}

.cookie-banner-accept {
  flex-shrink: 0;
  cursor: pointer;
  border: none;
  font: inherit;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-banner-essential {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: rgba(255, 255, 255, 0.95);
  font: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.cookie-banner-essential:hover,
.cookie-banner-essential:focus {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Privacy page */
.privacy-page main {
  padding: 3rem 1.5rem 4rem;
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.privacy-page h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.privacy-page .last-updated {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 2rem;
}

.privacy-page h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.privacy-page p,
.privacy-page ul {
  margin: 0 0 1rem;
  color: var(--text);
}

.privacy-page ul {
  padding-left: 1.5rem;
}

.privacy-page a {
  color: var(--green);
  text-decoration: none;
}

.privacy-page a:hover {
  text-decoration: underline;
}

.privacy-page code {
  background: var(--bg-subtle);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.9em;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.9375rem;
}

.cookie-table th,
.cookie-table td {
  text-align: left;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  vertical-align: top;
}

.cookie-table th {
  background: var(--bg-subtle);
  font-weight: 600;
  color: var(--text);
}

.cookie-table td {
  color: var(--text);
}

@media (max-width: 640px) {
  .cookie-table th,
  .cookie-table td {
    display: block;
    width: 100%;
  }
  .cookie-table th {
    border-bottom: none;
  }
  .cookie-table td {
    border-top: none;
  }
  .cookie-table tr {
    border-bottom: 1px solid var(--border);
  }
}

/* 404 page */
.error-page {
  text-align: center;
  padding: 5rem 1.5rem;
}

.error-page h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.error-page p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .eyebrow {
    justify-content: center;
  }

  .hero-tagline {
    max-width: none;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-highlights {
    max-width: none;
    margin: 0 auto;
  }

  .hero-visual {
    margin-left: auto;
    margin-right: auto;
    max-width: 320px;
  }

  .split-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .carousel-shell {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .carousel-nav {
    display: none;
  }

  .carousel-slide .split-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .split-right .split-inner {
    direction: ltr;
  }

  .split-content {
    text-align: center;
  }

  .split-image-placeholder {
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .site-nav {
    display: none;
  }

  .header-right {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-drawer {
    width: min(92vw, 360px);
  }

  .hero {
    padding: 3rem 1rem 4rem;
  }

  .hero-content .cta-primary {
    width: 100%;
  }

  .hero-content .cta-secondary {
    width: 100%;
  }

  .hero-marketplace {
    margin-bottom: 1rem;
  }

  .marketplace-link {
    width: 100%;
    justify-content: center;
  }

  .partner-badges {
    justify-content: center;
  }

  .partner-strip-caption {
    text-align: center;
    align-items: center;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .intro,
  .split,
  .spotlight,
  .transform {
    padding: 3rem 1rem 4rem;
  }

  .cta-block {
    padding: 3rem 1.5rem;
  }

  .demo-form {
    flex-direction: column;
    align-items: stretch;
  }

  .demo-form .cta-primary {
    width: 100%;
    align-self: stretch;
  }

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

  .footer-columns {
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .nav-drawer {
    width: 100vw;
  }

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