:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-2: #f7f9fc;
  --text: #0b1220;
  --muted: #556277;
  --muted-2: #7a879b;
  --border: rgba(15, 23, 42, 0.12);
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
  --shadow-soft: 0 8px 24px rgba(15, 23, 42, 0.1);
  --blue: #2563eb;
  --blue-2: #1d4ed8;
  --blue-3: #1a2f62;
  --focus: rgba(37, 99, 235, 0.35);
  --radius: 16px;
  --radius-sm: 12px;
  --container: 1120px;
  --gutter: 20px;
  --header-h: 72px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --dur: 260ms;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  margin: 0;
  font-family: "Lato", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 18px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 10px;
}
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: absolute;
  left: 12px;
  top: 10px;
  z-index: 9999;
  padding: 10px 12px;
  background: var(--text);
  color: #fff;
  border-radius: 10px;
  transform: translateY(-140%);
  transition: transform var(--dur) var(--ease);
}
.skip-link:focus {
  transform: translateY(0);
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  /* Safe-area aware padding (mobile notch / iOS insets) */
  padding-left: max(var(--gutter), env(safe-area-inset-left));
  padding-right: max(var(--gutter), env(safe-area-inset-right));
}
/* Header + navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 160px;
}
.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--blue), rgba(37, 99, 235, 0.35));
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.08);
  background-image: url('../imgs/casper-logo-transparent.png');
}
.brand-name {
  font-weight: 700;
  letter-spacing: 0.2px;
}
.brand-logo {
  height: 45px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: 14px;
  /* keep menu aligned left, next to the brand */
  margin-right: 40px;
  /* space between nav links and language switch */
}
.nav-link {
  position: relative;
  padding: 10px 10px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.nav-link:hover {
  color: var(--text);
  background: rgba(37, 99, 235, 0.08);
}
.nav-link[aria-current="page"] {
  color: var(--text);
  background: rgba(37, 99, 235, 0.12);
}
.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  /* keep toggle at far right on mobile */
}
.nav-toggle-bars {
  width: 18px;
  height: 2px;
  background: var(--text);
  position: relative;
  border-radius: 999px;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}
.nav-toggle-bars::before {
  top: -6px;
}
.nav-toggle-bars::after {
  top: 6px;
}
@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }
  .nav-links {
    position: absolute;
    top: calc(var(--header-h) - 6px);
    right: max(var(--gutter), env(safe-area-inset-right));
    left: max(var(--gutter), env(safe-area-inset-left));
    display: grid;
    gap: 4px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-soft);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
  }
  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-link {
    padding: 12px 12px;
  }
}
.center-content {
  margin: auto;
}
/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(64px + 10px) 0 84px;
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../imgs/hero-bg.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 90% at 30% 20%, rgba(37, 99, 235, 0.22), transparent 60%), linear-gradient(135deg, rgba(10, 14, 20, 0.7), rgba(10, 14, 20, 0.48) 60%, rgba(37, 99, 235, 0.22));
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 22px;
}
.eyebrow {
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
}
.hero-title {
  margin: 0 0 12px;
  max-width: 60vw;
  font-size: clamp(34px, 3.5vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.hero-subtitle {
  margin: 0 0 22px;
  max-width: 60vw;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 1.4vw, 18px);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
  margin-top: 80px;
  justify-content: center;
}
.hero .highlights-grid {
  margin-top: 48px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 960px) {
  .hero .highlights-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), border-color var(--dur) var(--ease);
  will-change: transform;
}
.btn-xl {
  padding: 10px 30px;
  font-size: 16px;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.5) 50%, transparent 80%);
  transition: left 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: none;
}
.btn:hover::before {
  left: 100%;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.22);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.32);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}
.btn-secondary:hover {
  transform: translateY(-2px) scale(1.02);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 24px rgba(255, 255, 255, 0.12);
}
.btn-glass {
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 24px rgba(10, 14, 20, 0.25);
}
.btn-glass:hover {
  transform: translateY(-2px) scale(1.02);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 32px rgba(10, 14, 20, 0.35);
  color: #fff;
}
.hero-metrics {
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 920px;
}
.metric {
  margin: 0;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(10, 14, 20, 0.2);
  backdrop-filter: blur(10px);
}
.metric dt {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.01em;
}
.metric dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}
@media (max-width: 860px) {
  .hero {
    padding: 52px 0 92px;
  }
}
/* Scroll indicator */
.scroll-indicator {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  z-index: 100;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  opacity: 0.65;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), background var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.scroll-indicator:hover {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}
.scroll-indicator.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.scroll-indicator-icon {
  width: 16px;
  height: 16px;
  border-right: 3px solid var(--muted-2);
  border-bottom: 3px solid var(--muted-2);
  transform: rotate(45deg);
  transition: border-color var(--dur) var(--ease);
  position: relative;
  z-index: 1;
}
.scroll-indicator:hover .scroll-indicator-icon {
  border-color: #fff;
}
@media (prefers-reduced-motion: no-preference) {
  .scroll-indicator:not(:hover) {
    animation: gentle-bounce 1.8s var(--ease) infinite;
  }
  @keyframes gentle-bounce {
    0%,
    100% {
      transform: translateX(-50%) translateY(0) scale(1);
    }
    50% {
      transform: translateX(-50%) translateY(-4px) scale(1);
    }
  }
}
/* Sections */
.section {
  padding: 84px 0;
}
/* Ensure anchored headings don't hide beneath sticky header */
section[id] {
  scroll-margin-top: calc(var(--header-h) + 18px);
}
.highlights {
  padding-top: 40px;
  padding-bottom: 60px;
}
/* Old standalone highlights section styles (now moved into hero) */
.section-alt {
  background-color: var(--surface-2);
}
.section-header {
  margin-bottom: 30px;
  max-width: var(--container);
}
.section-title {
  margin: 0 0 10px;
  font-size: clamp(26px, 2.6vw, 34px);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.section-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}
.team-intro {
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.7;
  color: var(--muted);
}
.grid {
  display: grid;
  gap: 16px;
}
.features-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1080px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}
.problem-grid {
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 960px) {
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 0 0 rgba(15, 23, 42, 0);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  will-change: transform;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(37, 99, 235, 0.25);
}
.card-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #e8eef9;
}
.card-body {
  padding: 18px 18px 20px;
}
.card-title {
  margin: 0 0 6px;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.card-text {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.card-meta {
  margin: 0 0 10px;
  color: var(--muted-2);
  font-weight: 700;
  font-size: 13px;
}
/* Problem cards - no images, muted background */
.problem-card {
  background: var(--muted-2);
  border-color: rgba(15, 23, 42, 0.12);
  min-height: 200px;
  display: flex;
  flex-direction: column;
}
.problem-card .card-body {
  padding: 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.problem-card .card-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}
.problem-card .card-text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(15, 23, 42, 0.75);
}
.problem-card:hover {
  background: rgba(100, 116, 139, 0.12);
  transform: translateY(-4px);
}
/* Solution section */
.solution-image {
  margin: 42px auto 52px;
  max-width: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
  padding: 8px;
  background: rgba(255, 255, 255, 0.5);
}
.solution-image img {
  width: auto;
  height: auto;
  max-height: 250px;
  max-width: 100%;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}
.solution-image figcaption {
  margin-top: 12px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}
@media (max-width: 620px) {
  .solution-image {
    max-width: 90vw;
    margin: 32px auto 42px;
    padding: 8px;
  }
  .solution-image img {
    max-height: 180px;
  }
  .solution-image figcaption {
    font-size: 12px;
    margin-top: 10px;
  }
}
.solution-grid {
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 960px) {
  .solution-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.justify-text {
  text-align: justify;
}
.solution-card {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(37, 99, 235, 0.15);
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
.solution-card .card-body {
  padding: 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.solution-card .card-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
}
.solution-card:hover {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.12);
}
.feature-list {
  margin: 0;
  padding: 0 0 0 20px;
  list-style: none;
}
.feature-list li {
  position: relative;
  padding-left: 8px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}
.feature-list li:last-child {
  margin-bottom: 0;
}
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: -20px;
  color: var(--blue);
  font-weight: 700;
}
/* Glass card (glassmorphism style) */
.glass-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 24px;
  padding: 28px 24px;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(10, 14, 20, 0.25);
  text-align: center;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.glass-card:hover {
  transform: translateY(-4px) scale(1.02);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 42px rgba(10, 14, 20, 0.35);
}
.glass-card dt {
  margin: 0 0 8px;
  font-weight: 800;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: -0.01em;
}
.glass-card dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.6;
}
.glass-card .card-icon {
  font-size: 60px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
  display: block;
  transition: transform var(--dur) var(--ease), color var(--dur) var(--ease);
}
.glass-card:hover .card-icon {
  transform: scale(1.1);
  color: #ffffff;
}
/* About layout */
.split {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: start;
  margin-top: 10px;
}
@media (max-width: 920px) {
  .split {
    grid-template-columns: 1fr;
  }
}
.subsection-title {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.body-text {
  margin: 0;
  color: var(--muted);
  text-align: justify;
}
.subheader-text {
  color: var(--muted);
  align-items: center;
}
.split-media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.split-media figcaption {
  padding: 12px 14px;
  font-size: 13px;
  color: var(--muted-2);
}
.callout {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 14px;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(15, 23, 42, 0.02));
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}
.callout i {
  flex-shrink: 0;
  font-size: 20px;
  color: var(--blue);
  margin-top: 2px;
}
.callout p {
  margin: 0;
  color: var(--muted);
}
@media (max-width: 760px) {
  .callout {
    padding: 16px;
    font-size: 14px;
    gap: 10px;
  }
  .callout i {
    font-size: 18px;
  }
}
.content-block {
  margin-top: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--surface);
}
.table-wrap {
  margin-top: 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: auto;
}
.table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.table th,
.table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-size: 14px;
}
.table thead th {
  color: var(--muted-2);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(15, 23, 42, 0.02);
}
.table tbody tr:hover td,
.table tbody tr:hover th {
  background: rgba(37, 99, 235, 0.04);
}
/* Team */
.team-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 960px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}
.team-card {
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  padding-top: 24px;
}
.team-card .card-body {
  padding: 20px 24px 24px;
}
.avatar {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #e8eef9;
}
.team-avatar {
  border-radius: 50%;
  margin: 0 auto;
  max-width: 200px;
  display: block;
  padding: 16px;
}
.team-bio-preview {
  margin-top: 16px;
}
.team-bio-preview .team-bio-text {
  margin-bottom: 0;
}
.team-bio-full {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s var(--ease), opacity 0.3s var(--ease);
}
.team-card.expanded .team-bio-full {
  max-height: 800px;
  opacity: 1;
}
.team-bio-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}
.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 0;
  background: none;
  border: none;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: color var(--dur) var(--ease);
}
.read-more-btn:hover {
  color: var(--blue-hover);
}
.read-more-icon {
  font-size: 12px;
  transition: transform 0.3s var(--ease);
}
.read-more-btn[aria-expanded="true"] .read-more-icon {
  transform: rotate(180deg);
}
@media (max-width: 960px) {
  .team-avatar {
    max-width: 180px;
    padding: 12px;
  }
}
.contact-form-wrapper {
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
  padding: 32px;
  margin: auto;
  width: 60vw;
}
@media (max-width: 960px) {
  .contact-form-wrapper {
    width: 85vw;
    padding: 28px;
  }
}
@media (max-width: 620px) {
  .contact-form-wrapper {
    width: 92vw;
    padding: 24px 20px;
    border-radius: 20px;
  }
}
.contact-form-vertical {
  display: grid;
  gap: 20px;
}
.field {
  display: grid;
  gap: 8px;
}
/* Contact Info Card */
.contact-info-card {
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  padding: 32px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}
.contact-info-title {
  margin: 0 0 24px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
}
.contact-info-section {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.contact-info-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.contact-info-label {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.contact-info-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
}
.contact-info-link {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
.contact-info-link:hover {
  color: var(--blue-2);
  text-decoration: underline;
}
.contact-info-note {
  margin-top: 24px;
  padding: 16px;
  background: rgba(37, 99, 235, 0.04);
  border-left: 3px solid var(--blue);
  border-radius: 8px;
}
.contact-info-note p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}
.label {
  font-weight: 800;
  color: #5e6c82;
  letter-spacing: -0.01em;
  font-size: 14px;
}
.input,
.textarea {
  width: 100%;
  border-radius: 18px;
  border: 2px solid rgba(15, 23, 42, 0.14);
  background: #fff;
  padding: 16px 18px;
  font: inherit;
  font-size: 18px;
  color: #3b4656;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.textarea {
  resize: vertical;
  min-height: 180px;
  padding-top: 18px;
}
.input::placeholder,
.textarea::placeholder {
  color: rgba(59, 70, 86, 0.65);
}
.input:focus,
.textarea:focus {
  outline: none;
  border-color: rgba(37, 99, 235, 0.65);
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.12);
}
.btn-wide {
  width: 100%;
  justify-content: center;
  margin-top: 18px;
  border-radius: 999px;
  padding: 16px 20px;
  font-size: 18px;
}
.contact-disclaimer {
  margin: 16px 0 0;
  color: #64748b;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.inline-link {
  color: var(--blue);
  font-weight: 700;
}
.inline-link:hover {
  text-decoration: underline;
}
/* Footer */
.footer {
  background: var(--blue-3);
  color: rgba(255, 255, 255, 0.9);
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-inner {
  display: grid;
  gap: 22px;
  align-items: start;
}
.footer-top {
  display: grid;
  gap: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  justify-items: center;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}
.footer-brand .brand-logo {
  height: 48px;
}
.round-image {
  border-radius: 50%;
  /* makes it perfectly circular */
  object-fit: cover;
  /* keeps the image proportioned and cropped if needed */
}
.footer-bottom {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 860px) {
  .footer-bottom {
    grid-template-columns: 1fr;
  }
}
.footer-tagline {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  max-width: 70ch;
}
.footer-nav {
  display: grid;
  gap: 8px;
  justify-items: start;
  align-content: start;
}
.footer-link {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
  font-size: 14px;
}
.footer-link:hover {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: underline;
  text-decoration-color: rgba(37, 99, 235, 0.75);
}
.footer-contact {
  display: grid;
  gap: 10px;
  justify-items: start;
}
.footer-heading {
  margin: 0 0 2px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
}
.footer-item {
  margin: 0;
  display: grid;
  gap: 4px;
}
.footer-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 800;
}
.footer-value {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.6;
}
.footer-legal {
  justify-items: flex-start;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  padding-top: 10px;
}
.footer-legal-line {
  margin: 0;
}
/* footer-legal stays left-aligned on all sizes */
/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 500ms var(--ease), transform 500ms var(--ease), visibility 0s 500ms;
}
[data-reveal].is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 500ms var(--ease), transform 500ms var(--ease), visibility 0s 0s;
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }
  .btn,
  .card,
  .scroll-indicator {
    transition: none !important;
    animation: none !important;
  }
}
