/* aDintelle — modern SaaS (Stripe / Linear / Vercel–inspired) */

:root {
  /* Surface & Glass */
  --bg: #fdfdfd;
  --bg-alt: #ffffff;
  --surface: #ffffff;
  --glass: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.5);
  
  /* Casing from logo */
  --accent: #00A2AE;
  --accent-hover: #008C96;
  --accent-muted: #40B9C3;
  --accent-soft: #f0fbfc;
  --accent-ring: rgba(0, 162, 174, 0.2);
  
  --text: #0f172a;
  --text-muted: #475569;
  --text-subtle: #94a3b8;
  
  --border: rgba(15, 23, 42, 0.05);
  --border-strong: rgba(15, 23, 42, 0.1);
  --sep: rgba(15, 23, 42, 0.04);
  
  /* Premium Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-premium: 0 0 0 1px rgba(0, 0, 0, 0.03), 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 10px 30px -5px rgba(0, 0, 0, 0.1);

  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 32px;
  
  --max: 1200px;
  --narrow: 760px;
  --gutter: clamp(1.5rem, 5vw, 2.5rem);
  
  --section-y: clamp(5rem, 12vw, 8rem);
  
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Plus Jakarta Sans", var(--font);
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

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

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

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

html {
  scroll-behavior: smooth;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Section separators — single hairline between major blocks */
main > section:not(.hero) {
  border-top: 1px solid var(--sep);
}

h1,
h2,
h3,
.how-step-title,
.security-item-title,
.trust-item-body h3,
.section-label,
.logo,
.btn,
.nav a,
.cta-heading {
  font-family: var(--font-display);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 0.75rem 1rem;
  background: var(--surface);
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.narrow {
  max-width: var(--narrow);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--glass);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 1.5rem;
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-width: 42px;
  height: 38px;
  padding: 0 0.4rem;
  border-radius: 12px;
  background: linear-gradient(145deg, #00A2AE 0%, #008C96 40%, #01363A 100%);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  box-shadow: 0 2px 8px rgba(0, 162, 174, 0.35);
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
  letter-spacing: -0.03em;
}

.wordmark-ad {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  display: inline-block;
  letter-spacing: -0.04em;
}

.wordmark-intelle {
  color: var(--text);
  font-weight: 700;
  display: inline-block;
  letter-spacing: -0.04em;
}

.logo .wordmark-intelle {
  color: var(--text);
}

.lead .wordmark-ad,
.section-desc .wordmark-ad {
  color: var(--accent);
}

.lead .wordmark-intelle,
.section-desc .wordmark-intelle {
  color: var(--text);
}

.wordmark--hero {
  letter-spacing: -0.035em;
}

.wordmark--footer .wordmark-ad {
  background: linear-gradient(135deg, #40B9C3 0%, #00A2AE 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wordmark--footer .wordmark-intelle {
  color: #f8fafc;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.35rem;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color 0.15s ease;
}

.nav a:hover {
  color: var(--text);
}

.btn-header {
  padding: 0.5rem 1rem !important;
  font-size: 0.8125rem !important;
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 4.5rem) 0 clamp(3.5rem, 7vw, 5rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(0, 162, 174, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(0, 162, 174, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 40% 60%, rgba(0, 162, 174, 0.08) 0%, transparent 60%),
    #ffffff;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3%3Ffilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--border-strong) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at center, black, transparent 96%);
  opacity: 0.6;
}

.hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

@media (max-width: 992px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }
}

.hero-content {
  flex: 1.2;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.prism-container {
  position: relative;
  width: 320px;
  height: 320px;
  transform-style: preserve-3d;
  animation: float 6s ease-in-out infinite;
}

.prism {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  transform: translate(-50%, -50%) rotateY(20deg) rotateX(10deg);
  border-radius: 20px;
}

.prism--main {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  opacity: 0.15;
  filter: blur(20px);
}

.prism--accent {
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, var(--accent) 0%, #01363A 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: translate(-30%, -30%) rotateY(-10deg) rotateX(5deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
}

.prism--glass {
  width: 140px;
  height: 140px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transform: translate(-70%, -70%) rotateY(30deg) rotateX(15deg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.visual-node {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--accent-muted);
  border-radius: 50%;
  opacity: 0.4;
  animation: float 4s ease-in-out infinite alternate;
}

.node-1 { top: 10%; left: 80%; animation-delay: 0s; }
.node-2 { top: 70%; left: 10%; animation-delay: 1s; }
.node-3 { top: 85%; left: 75%; animation-delay: 2s; }


.hero h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.125rem, 5vw, 3.125rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--text);
}

.hero-title-rest {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.92em;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: -0.025em;
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.5rem 1.25rem;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--sep);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
}

.cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  max-width: 100%;
}

.cta-group .btn-primary {
  white-space: normal;
  line-height: 1.35;
  text-align: center;
  padding-left: 1.15rem;
  padding-right: 1.15rem;
}

.cta-hint {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--text-muted);
  text-align: left;
  max-width: 22rem;
}

.cta-hint--on-dark {
  color: #94a3b8;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-subtle);
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
}

.hero-trust li:not(:last-child)::after {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  margin: 0 1rem;
  border-radius: 50%;
  background: var(--border-strong);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.15s ease, color 0.15s ease;
}

.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 14px -2px rgba(0, 162, 174, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: none;
}

.btn-primary:hover::before {
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  100% {
    left: 100%;
  }
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -4px rgba(0, 162, 174, 0.5);
}

.btn-primary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border-strong);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
  background: var(--accent-soft);
  border-color: var(--accent-muted);
  color: var(--accent-hover);
}

.btn-secondary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Sections */
.section {
  padding: var(--section-y) 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-label {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-head {
  text-align: center;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.section-head .section-label {
  color: var(--accent);
}

.section-head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.875rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: var(--text);
}

.section-desc {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.125rem;
  line-height: 1.65;
}

#about .section-label,
#contact .section-label {
  text-align: center;
}

#about h2,
#contact .contact-card h2 {
  text-align: center;
}

#about {
  text-align: center;
}

#about h2 {
  margin-bottom: 1.25rem;
}

#contact .section-label {
  margin-bottom: 1rem;
}

.section h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.875rem, 3.25vw, 2.375rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.lead {
  margin: 0 auto;
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.75;
  text-align: center;
  max-width: 42rem;
}

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

.mb-0 {
  margin-bottom: 0;
}

/* Cards */
.card {
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

/* Feature grid */
#features {
  background: var(--bg-alt);
}

#contact {
  background: var(--bg-alt);
}

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

.feature-card {
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: var(--accent-muted);
  box-shadow: 0 30px 60px -15px rgba(0, 162, 174, 0.12);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--accent-soft), #fff);
  color: var(--accent);
  margin-bottom: 1.125rem;
  border: 1px solid rgba(29, 78, 216, 0.12);
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}

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

/* How it works — alternate band on canvas */
.section-how {
  background: var(--bg);
}

.how-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
}

@media (min-width: 900px) {
  .how-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    align-items: stretch;
  }

  .how-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 2.25rem;
    right: -0.625rem;
    width: 1.25rem;
    height: 2px;
    background: linear-gradient(90deg, #cbd5e1, #e2e8f0);
    z-index: 0;
  }
}

.how-step {
  position: relative;
  z-index: 1;
  padding: 1.5rem 1.35rem 1.6rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.how-step:hover {
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.how-step-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.how-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(145deg, var(--accent), #4338ca);
  box-shadow: 0 2px 8px rgba(0, 162, 174, 0.35);
}

.how-step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(145deg, #eff6ff, #fff);
  color: var(--accent);
  border: 1px solid rgba(29, 78, 216, 0.12);
}

.how-step-visual {
  margin-bottom: 1.1rem;
  padding: 0.85rem 0.75rem;
  border-radius: var(--radius);
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-step-visual--connect {
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.875rem;
}

.how-v-google {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #4285f4;
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
}

.how-v-arrow {
  color: var(--text-subtle);
  font-weight: 600;
  font-size: 0.875rem;
}

.how-v-app {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--accent), #3730a3);
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: -0.02em;
}

.how-step-visual--grant {
  flex-direction: column;
  gap: 0.65rem;
}

.how-v-checklist {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  max-width: 140px;
}

.how-v-line {
  display: block;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(90deg, #e2e8f0, #cbd5e1);
}

.how-v-line--short {
  width: 65%;
  align-self: flex-start;
}

.how-v-badges {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: center;
}

.how-v-badges span {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.25rem 0.45rem;
  border-radius: 4px;
  background: #fff;
  border: 1px solid #e2e8f0;
  color: var(--text-muted);
}

.how-step-visual--insights {
  flex-direction: column;
  gap: 0.5rem;
}

.how-v-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 40px;
  width: 100%;
  max-width: 160px;
}

.how-v-bars i {
  flex: 1;
  height: var(--h);
  border-radius: 3px 3px 1px 1px;
  background: linear-gradient(180deg, #c7d2fe, #6366f1);
  min-height: 20%;
}

.how-v-line-chart {
  width: 100%;
  max-width: 160px;
  height: 32px;
  color: var(--accent);
}

.how-v-line-chart svg {
  display: block;
  width: 100%;
  height: 100%;
}

.how-step-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.3;
}

.how-step-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.62;
  color: var(--text-muted);
}

/* Product preview — dashboard mockup */
.section-preview {
  background: linear-gradient(180deg, var(--bg-muted) 0%, var(--bg) 50%, var(--bg-muted) 100%);
}

.wordmark--dash .wordmark-ad {
  color: #a5b4fc;
}

.wordmark--dash .wordmark-intelle {
  color: #f8fafc;
}

.dashboard-mockup {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
}

.dash-chrome {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  padding: 0.65rem 1rem 0.65rem 0.85rem;
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  color: #e2e8f0;
  font-size: 0.8125rem;
}

.dash-chrome-dots {
  display: flex;
  gap: 6px;
}

.dash-chrome-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #475569;
}

.dash-chrome-dots span:nth-child(1) {
  background: #f87171;
}

.dash-chrome-dots span:nth-child(2) {
  background: #fbbf24;
}

.dash-chrome-dots span:nth-child(3) {
  background: #4ade80;
}

.dash-chrome-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  flex: 1;
  min-width: 0;
}

.dash-chrome-logo {
  font-family: var(--font-display);
}

.dash-chrome-sep {
  opacity: 0.45;
  font-weight: 400;
}

.dash-chrome-meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.dash-pill {
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #94a3b8;
}

.dash-live {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.35);
}

.dash-live-label {
  font-size: 0.75rem;
  color: #94a3b8;
}

.dash-body {
  padding: 1.25rem 1.25rem 1.5rem;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 12%);
}

.dash-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.dash-source-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}

.dash-source-tag--ga {
  background: var(--accent-soft);
  color: #4338ca;
  border: 1px solid rgba(79, 70, 229, 0.2);
}

.dash-source-tag--dv {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid rgba(22, 101, 52, 0.2);
}

.dash-source-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.dash-source-tag--ga .dash-source-dot {
  background: var(--accent);
}

.dash-source-tag--dv .dash-source-dot {
  background: #22c55e;
}

.cta-interjection {
  margin-top: 5rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
}

.cta-interjection p {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item[open] {
  border-color: var(--accent-muted);
  box-shadow: var(--shadow-premium);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
}

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.how-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 993px) {
  .how-steps::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border-strong) 20%, var(--border-strong) 80%, transparent);
    z-index: 0;
  }
}

.how-step {
  position: relative;
  z-index: 1;
}

.dash-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.dash-kpi {
  padding: 1rem 1rem 0.95rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.dash-kpi-label {
  margin: 0 0 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-subtle);
}

.dash-kpi-value {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.2;
}

.dash-kpi-delta {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
}

.dash-kpi-delta--up {
  color: #15803d;
}

.dash-panels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 800px) {
  .dash-panels {
    grid-template-columns: 1.35fr 1fr;
    align-items: stretch;
  }
}

.dash-panel {
  padding: 1rem 1.1rem 1.1rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.dash-panel-head {
  margin-bottom: 0.85rem;
}

.dash-panel-title {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.dash-panel-sub {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.dash-chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-bottom: 0.65rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-muted);
}

.dash-legend-swatch {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  margin-right: 0.35rem;
  vertical-align: -1px;
}

.dash-legend-swatch--imp {
  background: linear-gradient(180deg, #93c5fd, #60a5fa);
}

.dash-legend-swatch--conv {
  background: var(--accent);
}

.dash-chart-area {
  position: relative;
}

.dash-chart-svg {
  display: block;
  width: 100%;
  height: 120px;
  border-radius: 8px;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.dash-chart-x {
  display: flex;
  justify-content: space-between;
  margin-top: 0.35rem;
  padding: 0 0.15rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

.dash-mini-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 44px;
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--border);
}

.dash-mini-bar {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.dash-mini-bar i {
  display: block;
  width: 100%;
  max-width: 28px;
  height: var(--h);
  min-height: 18%;
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, #c7d2fe 0%, #6366f1 100%);
  opacity: 0.9;
}

.dash-mini-bar:nth-child(even) i {
  background: linear-gradient(180deg, #a5b4fc 0%, var(--accent) 100%);
  opacity: 0.95;
}

.dash-panel--dv360 {
  display: flex;
  flex-direction: column;
}

.dash-dv-stats {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.dash-dv-stats li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.8125rem;
}

.dash-dv-stats li:last-of-type {
  border-bottom: none;
}

.dash-dv-stat-label {
  color: var(--text-muted);
}

.dash-dv-stat-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.dash-dv-ring {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

.dash-donut {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.dash-donut-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.dash-table-card {
  margin-bottom: 1.25rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.dash-panel-head--table {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem 0;
  margin-bottom: 0 !important;
}

.dash-table-badge {
  flex-shrink: 0;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.5rem;
  border-radius: 6px;
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.dash-table-scroll {
  overflow-x: auto;
}

.dash-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
}

.dash-table thead {
  background: #f8fafc;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.dash-table th {
  text-align: left;
  padding: 0.65rem 1.1rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

.dash-table th.num,
.dash-table td.num {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.dash-table td {
  padding: 0.7rem 1.1rem;
  border-bottom: 1px solid #f1f5f9;
  color: var(--text);
}

.dash-table tbody tr:hover {
  background: #fafbfc;
}

.dash-table tbody tr:last-child td {
  border-bottom: none;
}

.dash-billing {
  padding: 1.1rem 1.15rem 1.2rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f8fafc 0%, #fff 50%, #f1f5f9 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.dash-billing-head {
  margin-bottom: 1rem;
}

.dash-billing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

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

.dash-billing-stat {
  padding: 0.65rem 0;
}

.dash-billing-label {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 0.35rem;
}

.dash-billing-value {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.dash-billing-pill {
  display: inline-block;
  margin-top: 0.15rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.dash-billing-stat--ok {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

@media (max-width: 640px) {
  .dash-kpis {
    grid-template-columns: 1fr;
  }

  .dash-chrome-title {
    order: 3;
    width: 100%;
    padding-left: 1.5rem;
  }

  .dash-body {
    padding: 1rem 0.85rem 1.15rem;
  }
}

/* Data card */
.data-card {
  max-width: var(--narrow);
  margin-left: auto;
  margin-right: auto;
  padding: 2rem 2rem 2rem 2.25rem;
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-lg);
}

.data-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  color: var(--text);
}

.data-list li {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 1.75rem;
  line-height: 1.55;
}

.data-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.85;
}

.data-list li:last-child {
  margin-bottom: 0;
}

.data-list strong {
  color: var(--text);
  font-weight: 600;
}

/* What data we access */
.section-what-data {
  background: var(--bg-alt);
}

.what-data-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.what-data-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.what-data-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid #f1f5f9;
}

.what-data-item:last-child {
  border-bottom: none;
}

.what-data-check {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-top: 0.1rem;
  border-radius: 10px;
  background: linear-gradient(145deg, #ecfdf5, #f0fdf4);
  color: #047857;
  border: 1px solid #a7f3d0;
}

.what-data-copy {
  min-width: 0;
}

.what-data-title {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 0.35rem;
}

.what-data-detail {
  display: block;
  font-size: 0.9375rem;
  line-height: 1.58;
  color: var(--text-muted);
}

.what-data-notice {
  margin: 0;
  padding: 1.1rem 1.5rem 1.2rem;
  background: linear-gradient(180deg, var(--accent-soft) 0%, #fafafa 100%);
  border-top: 1px solid rgba(79, 70, 229, 0.12);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.55;
  color: #3730a3;
  text-align: center;
}

/* Security */
.section-security {
  background: var(--bg);
}

.security-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .security-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.security-item {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.4rem 1.55rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.security-item:hover {
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.security-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: linear-gradient(135deg, white 0%, var(--accent-soft) 100%);
  color: var(--accent);
  border: 1px solid rgba(0, 162, 174, 0.15);
  box-shadow: 0 4px 10px -2px rgba(0, 162, 174, 0.1);
}

.security-item:nth-child(2) .security-icon {
  background: linear-gradient(145deg, #f0fdf4 0%, #fff 100%);
  color: #15803d;
  border-color: rgba(22, 101, 52, 0.18);
}

.security-item:nth-child(3) .security-icon {
  background: linear-gradient(145deg, #fff7ed 0%, #fff 100%);
  color: #c2410c;
  border-color: rgba(194, 65, 12, 0.15);
}

.security-item:nth-child(4) .security-icon {
  background: linear-gradient(145deg, #eef2ff 0%, #fff 100%);
  color: #4338ca;
  border-color: rgba(67, 56, 202, 0.15);
}

.security-item-title {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.3;
}

.security-item-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.62;
  color: var(--text-muted);
}

.security-item-text strong {
  color: var(--text);
  font-weight: 600;
}

/* Trust & Compliance — OAuth / API (Stripe / Cloud–style panel) */
.trust-compliance-section {
  background: linear-gradient(180deg, #eef2ff 0%, var(--bg-muted) 45%, var(--bg) 100%);
}

.trust-panel {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  overflow: hidden;
}

.trust-panel-lead {
  margin: 0;
  padding: 1.75rem 2rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  background: linear-gradient(180deg, #fafbfc 0%, #fff 100%);
  border-bottom: 1px solid var(--border);
}

.trust-panel-lead strong {
  color: var(--text);
  font-weight: 600;
}

.trust-panel-lead .wordmark-ad {
  color: var(--accent);
}

.trust-panel-lead .wordmark-intelle {
  color: var(--text);
}

.trust-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item--full {
    grid-column: 1 / -1;
  }
}

.trust-item {
  display: flex;
  gap: 1.125rem;
  align-items: flex-start;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s ease;
}

.trust-item:last-child {
  border-bottom: none;
}

@media (min-width: 768px) {
  .trust-item:not(.trust-item--full):nth-child(odd) {
    border-right: 1px solid var(--border);
  }

  .trust-item--full {
    border-right: none;
  }
}

.trust-item:hover {
  background: rgba(248, 250, 252, 0.85);
}

.trust-item-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, white 0%, var(--accent-soft) 100%);
  color: var(--accent);
  border: 1px solid rgba(0, 162, 174, 0.12);
  box-shadow: var(--shadow-sm);
}

.trust-item-body h3 {
  margin: 0 0 0.4rem;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.3;
}

.trust-item-body p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.62;
  color: var(--text-muted);
}

.trust-item-body strong {
  color: var(--text);
  font-weight: 600;
}

.trust-inline-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(29, 78, 216, 0.35);
  transition: color 0.15s ease, border-color 0.15s ease;
}

.trust-inline-link:hover {
  color: var(--accent-hover);
  border-bottom-color: rgba(30, 64, 175, 0.55);
}

.trust-item-body .wordmark-ad {
  color: var(--accent);
}

.trust-item-body .wordmark-intelle {
  color: var(--text);
}

/* Compliance */
.compliance-card {
  position: relative;
  padding: 2.25rem 2rem;
  text-align: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.info-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 3rem 2.5rem;
  text-align: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 
    0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 2px 4px -1px rgba(0, 0, 0, 0.03),
    0 0 0 1px rgba(0, 0, 0, 0.01);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.info-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--accent-muted);
  box-shadow: 
    0 20px 25px -5px rgba(0, 0, 0, 0.05),
    0 10px 10px -5px rgba(0, 0, 0, 0.02),
    0 0 15px rgba(0, 162, 174, 0.1);
}

.info-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 1.5rem 0 0.75rem;
  color: var(--text);
  letter-spacing: -0.01em;
}

.info-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.info-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--surface);
  color: var(--accent);
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 162, 174, 0.1);
}

.info-card-icon::before {
  content: "";
  position: absolute;
  inset: -8px;
  background: radial-gradient(circle, rgba(0, 162, 174, 0.12), transparent 70%);
  border-radius: inherit;
  z-index: -1;
  transition: transform 0.4s ease;
}

.info-card:hover .info-card-icon::before {
  transform: scale(1.5);
}

.info-contact-meta {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--sep);
  width: 100%;
}

.info-contact-meta strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.info-contact-meta a {
  font-size: 0.875rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.info-contact-meta a:hover {
  text-decoration: underline;
}

@media (max-width: 992px) {
  .info-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
}

.compliance-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1.25rem;
  border-radius: 16px;
  background: linear-gradient(135deg, white 0%, var(--accent-soft) 100%);
  color: var(--accent);
  border: 1px solid rgba(0, 162, 174, 0.15);
  box-shadow: 0 8px 16px -4px rgba(0, 162, 174, 0.1);
}

.compliance-card h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
}

.compliance-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.inline-link {
  color: var(--accent);
  font-weight: 500;
  word-break: break-all;
  text-decoration: none;
  border-bottom: 1px solid rgba(29, 78, 216, 0.35);
  transition: border-color 0.15s ease, color 0.15s ease;
}

.inline-link:hover {
  color: var(--accent-hover);
  border-bottom-color: var(--accent-hover);
}

/* Contact */
.contact-card {
  padding: 2.25rem 2rem;
  border-radius: var(--radius-xl);
}

.contact-card h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
}

.contact-dl {
  margin: 0;
}

.contact-dl > div {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.contact-dl > div:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-dl dt {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-subtle);
  margin-bottom: 0.35rem;
}

.contact-dl dd {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text);
}

.contact-dl a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}

.contact-dl a:hover {
  border-bottom-color: rgba(79, 70, 229, 0.45);
}

/* CTA band */
.section-cta {
  padding-bottom: 0;
}

.section-cta-band {
  margin-top: 0;
  padding: clamp(3.5rem, 8vw, 5rem) 0 clamp(4rem, 8vw, 5.5rem);
  background: linear-gradient(165deg, #0f172a 0%, #1e1b4b 42%, #0f172a 100%);
  color: #e2e8f0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section-cta-band .cta-heading {
  margin: 0 0 0.75rem;
  font-size: clamp(1.625rem, 3.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.2;
  color: #f8fafc;
}

.section-cta-band .cta-sub {
  margin: 0 auto 1.75rem;
  max-width: 26rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #94a3b8;
}

.section-cta-band .btn-primary {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.section-cta-band .cta-hint {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-cta-band .cta-group {
  align-items: center;
}

/* Footer */
.site-footer {
  padding: 3.5rem 0 2rem;
  background: linear-gradient(180deg, #020617 0%, #0f172a 100%);
  color: #94a3b8;
  border-top: 1px solid #1e293b;
}

.footer-inner {
  max-width: var(--max);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 2.5rem 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #1e293b;
}

.footer-brand {
  min-width: 0;
}

.footer-name {
  margin: 0 0 0.75rem;
  font-size: 1.125rem;
}

.footer-tagline {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  max-width: 22rem;
  color: #64748b;
}

.footer-nav {
  min-width: 0;
}

.footer-heading {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-list a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-list a:hover {
  color: #fff;
}

.footer-company {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.5;
}

.footer-compliance {
  margin-top: 2rem;
  padding: 1.15rem 1.25rem 1.2rem;
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--accent-muted);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.02) inset;
}

.footer-compliance p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: #94a3b8;
}

.footer-compliance strong {
  color: #e2e8f0;
  font-weight: 600;
}

.footer-bottom {
  padding-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-meta {
  margin: 0;
  font-size: 0.8125rem;
  color: #64748b;
}

@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
    gap: 1rem;
  }

  .header-right {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 1rem;
  }

  .nav {
    justify-content: center;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
  }

  .btn-header {
    align-self: center;
  }

  .hero {
    padding-top: 3rem;
    padding-bottom: 3.5rem;
  }

  .hero-trust li:not(:last-child)::after {
    margin: 0 0.65rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
  }

  .footer-nav--contact {
    padding-bottom: 0;
  }
}
