:root {
  --bg: #05060a;
  --bg-alt: #0d1020;
  --panel: rgba(255, 255, 255, 0.05);
  --text: #f4f7ff;
  --muted: #9aa6c5;
  --blue: #00d1ff;
  --purple: #8b2cff;
  --pink: #d946ef;
  --gradient: linear-gradient(135deg, var(--blue), var(--purple) 58%, var(--pink));
  --shadow-soft: 0 16px 45px rgba(4, 7, 18, 0.42);
  --container: min(1340px, calc(100% - 3.5rem));
  --radius: 24px;
  --radius-sm: 18px;
  --header-height: 56px;

  /* Touch target minimum */
  --touch-min: 44px;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  /* Prevent font-size adjustment on orientation change */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(0, 209, 255, 0.15), transparent 26%),
    radial-gradient(circle at 85% 12%, rgba(139, 44, 255, 0.18), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(217, 70, 239, 0.1), transparent 24%),
    var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 110px 110px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 80%);
  opacity: 0.18;
  pointer-events: none;
  z-index: -1;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.delivery-content h3,
.testimonial-meta strong,
.leader-name,
.modal-title {
  overflow-wrap: anywhere;
}

.section {
  padding: 92px 0;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  inset: 18px auto auto 0;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 209, 255, 0.08), transparent 70%);
  pointer-events: none;
  animation: sectionGlow 6s ease-in-out infinite alternate;
}

/* ==============================
   FOOTER
   ============================== */
.footer {
  position: relative;
  padding: 44px 0 26px;
  margin-top: 20px;
  background: linear-gradient(180deg, rgba(13, 16, 32, 0.1), rgba(5, 6, 10, 0.92));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--gradient);
  opacity: 0.45;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.footer-brand,
.footer-links,
.footer-contact {
  position: relative;
  z-index: 1;
}

.footer-logo img {
  width: clamp(92px, 11vw, 120px);
  margin-bottom: 16px;
}

.footer-brand p,
.footer-contact p {
  margin: 0;
  color: var(--muted);
  max-width: 34ch;
}

.footer-links h3,
.footer-contact h3 {
  margin: 0 0 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.02rem;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: var(--muted);
  width: fit-content;
  min-height: var(--touch-min);
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: var(--text);
  transform: translateX(4px);
}

.footer-contact {
  display: grid;
  gap: 14px;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: var(--touch-min);
  padding: 0 22px;
  border-radius: 999px;
  background: var(--gradient);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 10px 28px rgba(93, 0, 255, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(93, 0, 255, 0.36);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.88rem;
}

/* ==============================
   SCROLL PROGRESS
   ============================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gradient);
  z-index: 9999;
  width: 0%;
  box-shadow: 0 0 8px rgba(0, 209, 255, 0.7);
  transition: width 0.1s linear;
}

/* ==============================
   HEADER / NAV
   ============================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 6, 10, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 1px 0 rgba(0, 209, 255, 0.08), 0 4px 24px rgba(0, 0, 0, 0.3);
}

.navbar {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand img {
  width: clamp(80px, 10vw, 115px);
  animation: logoDrift 4s ease-in-out infinite;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 13px;
  min-height: var(--touch-min);
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-links a:focus-visible {
  outline: none;
  color: #fff;
  background: rgba(0, 209, 255, 0.12);
  box-shadow: 0 0 0 1px rgba(0, 209, 255, 0.26), 0 0 0 4px rgba(0, 209, 255, 0.1);
}

.nav-links a.active {
  color: #fff;
  background: rgba(0, 209, 255, 0.1);
  box-shadow: 0 0 0 1px rgba(0, 209, 255, 0.2);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  height: var(--touch-min);
  padding: 0 18px;
  border-radius: 999px;
  background: var(--gradient);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(93, 0, 255, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(93, 0, 255, 0.45);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 13px;
  right: 13px;
  height: 1px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  border-radius: 999px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

/* Hamburger */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background 0.2s ease;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ==============================
   HERO
   ============================== */
.hero {
  min-height: calc(100vh - var(--header-height));
  max-height: 900px;
  display: flex;
  align-items: center;
  overflow: clip;
  padding: 40px 0;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 209, 255, 0.18), transparent 18%),
    radial-gradient(circle at 75% 25%, rgba(139, 44, 255, 0.1), transparent 18%),
    radial-gradient(circle at 50% 80%, rgba(217, 70, 239, 0.14), transparent 24%);
  animation: backdropShift 12s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

.owner-grid,
.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  align-items: start;
}

.hero h1,
.section-heading h2,
.owner-copy h2,
.mission-card h2,
.glass-panel h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 14ch;
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  margin-bottom: 14px;
}

.hero-text,
.owner-copy p,
.section-heading p,
.mission-card p,
.glass-panel p,
.owner-card p {
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: #d7e0ff;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--gradient);
  box-shadow: 0 0 18px rgba(0, 209, 255, 0.5);
  animation: eyebrowGlow 2.5s ease-in-out infinite alternate;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.hero-copy {
  padding-top: 28px;
  position: relative;
  z-index: 1;
}

.hero-copy > * {
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-copy > :nth-child(1) { animation-delay: 0.1s; }
.hero-copy > :nth-child(2) { animation-delay: 0.22s; }
.hero-copy > :nth-child(3) { animation-delay: 0.34s; }
.hero-copy > :nth-child(4) { animation-delay: 0.46s; }
.hero-copy > :nth-child(5) { animation-delay: 0.58s; }
.hero-copy > :nth-child(6) { animation-delay: 0.70s; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #dfe8ff;
  font-size: 0.82rem;
  animation: badgePulse 3s ease-in-out infinite;
}

.hero-badges span:nth-child(2) { animation-delay: 1s; }
.hero-badges span:nth-child(3) { animation-delay: 2s; }

.hero-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.strip-item {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.8s;
}

.strip-item:nth-child(2) { animation-delay: 0.95s; }
.strip-item:nth-child(3) { animation-delay: 1.1s; }

.strip-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.strip-item strong {
  font-size: 0.98rem;
  font-weight: 600;
}

/* ==============================
   BUTTONS
   ============================== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--touch-min);
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--gradient);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 10px 35px rgba(93, 0, 255, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

.button:hover::after {
  left: 160%;
}

.button:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 16px 42px rgba(93, 0, 255, 0.4);
}

.button:active {
  transform: scale(0.97);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

/* ==============================
   GLASS CARDS
   ============================== */
.glass-card,
.glass-panel,
.mission-card,
.owner-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.glass-panel,
.mission-card,
.owner-image,
.owner-card {
  border-radius: var(--radius);
}

.glass-panel,
.mission-card,
.owner-card {
  padding: 28px;
}

.mission-card {
  min-height: 330px;
}

.hero-visual {
  position: relative;
  min-height: 420px;
}

.glass-panel {
  position: relative;
  overflow: hidden;
}

/* Shine borders on hover */
.glass-panel::before,
.owner-image::before,
.mission-card::before,
.delivery-card::before,
.testimonial-card::before,
.owner-card::before,
.highlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  border-radius: inherit;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.glass-panel::after,
.delivery-card::after,
.testimonial-card::after,
.owner-card::after,
.highlight-card::after,
.mission-card::after {
  content: "";
  position: absolute;
  inset: -120% auto auto -35%;
  width: 55%;
  height: 260%;
  transform: rotate(18deg);
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.glass-panel:hover::after,
.delivery-card:hover::after,
.testimonial-card:hover::after,
.owner-card:hover::after,
.highlight-card:hover::after,
.mission-card:hover::after {
  opacity: 1;
}

.glass-panel:hover::before,
.delivery-card:hover::before,
.testimonial-card:hover::before,
.owner-card:hover::before,
.highlight-card:hover::before,
.mission-card:hover::before {
  opacity: 1;
}

/* ==============================
   STATUS PILL
   ============================== */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #d9e7ff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #38ff9c;
  box-shadow: 0 0 14px rgba(56, 255, 156, 0.75);
  animation: statusPulse 2s ease-in-out infinite;
}

.signal-row {
  display: flex;
  gap: 18px;
  margin-top: 20px;
  padding: 16px 0 4px;
}

.signal-stat strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.signal-stat span {
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-points {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.mini-card {
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: fadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.mini-card:hover {
  transform: translateX(6px);
  border-color: rgba(0, 209, 255, 0.3);
}

.mini-card:nth-child(1) { animation-delay: 0.3s; }
.mini-card:nth-child(2) { animation-delay: 0.5s; }
.mini-card:nth-child(3) { animation-delay: 0.7s; }

.mini-card span {
  display: block;
  margin-bottom: 8px;
  color: #c4d0ef;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.mini-card strong {
  font-size: 0.98rem;
  font-weight: 600;
}

/* ==============================
   ORBS
   ============================== */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  animation: float 6s ease-in-out infinite;
}

.orb-one {
  width: 180px;
  height: 180px;
  top: -30px;
  right: 10%;
  background: radial-gradient(circle, rgba(0, 209, 255, 0.9), rgba(0, 209, 255, 0.05));
}

.orb-two {
  width: 220px;
  height: 220px;
  bottom: -20px;
  left: -30px;
  background: radial-gradient(circle, rgba(139, 44, 255, 0.45), rgba(139, 44, 255, 0.02));
  animation-delay: -3s;
}

/* ==============================
   OWNER / LEADERSHIP
   ============================== */
.owner-section {
  padding-top: 20px;
  padding-bottom: 60px;
}

.leadership-heading {
  grid-template-columns: 1fr;
  margin-bottom: 52px;
}

.leader-block {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 52px;
  align-items: start;
  margin-bottom: 0;
}

.leader-block-reverse {
  grid-template-columns: 1fr 340px;
}

.leader-block-reverse .leader-image-wrap {
  order: 2;
}

.leader-block-reverse .leader-copy {
  order: 1;
}

.leader-image-wrap {
  position: relative;
  border-radius: var(--radius);
  padding: 14px;
  overflow: hidden;
}

.leader-image-wrap img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.leader-role-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--pink));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(0, 209, 255, 0.35);
}

.leader-role-badge--purple {
  background: linear-gradient(135deg, var(--purple), var(--blue));
  box-shadow: 0 4px 16px rgba(139, 44, 255, 0.35);
}

.leader-copy h2 {
  font-size: clamp(1.4rem, 2.6vw, 2.4rem);
  margin: 0 0 16px;
}

.leader-name-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.leader-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.leader-title-tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-size: 0.78rem;
}

.leader-story {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0 0 12px;
}

.leader-qualities {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: grid;
  gap: 10px;
}

.leader-qualities li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: #d8e3ff;
  padding: 12px 14px;
  min-height: var(--touch-min);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.leader-qualities li:hover {
  background: rgba(0, 209, 255, 0.05);
  border-color: rgba(0, 209, 255, 0.2);
}

.leader-qualities li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 0 8px rgba(0, 209, 255, 0.6);
}

.leader-closing {
  font-size: 0.95rem;
  font-style: italic;
  color: #c4d0ef;
  border-left: 2px solid;
  border-image: var(--gradient) 1;
  padding-left: 16px;
  margin: 0;
  line-height: 1.7;
}

.leader-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 209, 255, 0.25), rgba(139, 44, 255, 0.25), transparent);
  margin: 60px 0;
  position: relative;
}

.leader-divider::after {
  content: '✦';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--bg);
  padding: 0 16px;
  color: rgba(0, 209, 255, 0.5);
  font-size: 0.9rem;
}

/* ==============================
   SECTION HEADINGS
   ============================== */
.owner-copy h2,
.section-heading h2,
.mission-card h2,
.glass-panel h2 {
  font-size: clamp(1.7rem, 3.5vw, 3.2rem);
}

.mission-card h2 {
  font-size: clamp(1rem, 1.8vw, 1.6rem);
}

.owner-card {
  margin-top: 24px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: 30px;
  align-items: end;
  max-width: none;
  margin-bottom: 34px;
}

.mission-heading {
  align-items: center;
}

.section-heading p:last-child {
  margin: 0;
}

.owner-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

/* ==============================
   DELIVERIES
   ============================== */
.deliveries-section {
  padding-top: 46px;
}

.testimonials-section {
  padding-top: 50px;
}

.testimonials-carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.deliveries-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

/* ==============================
   TESTIMONIALS
   ============================== */
.testimonials-grid {
  display: flex;
  gap: 18px;
  align-items: stretch;
}

.testimonials-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px 2px 12px;
  /* Better touch scrolling on iOS */
  -webkit-overflow-scrolling: touch;
}

.testimonials-viewport::-webkit-scrollbar {
  display: none;
}

.testimonials-nav {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.testimonials-nav span {
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-1px);
}

.testimonials-nav:hover {
  transform: translateY(-1px);
  background: rgba(0, 209, 255, 0.12);
}

.testimonials-nav:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
}

/* Swipe hint indicator dots */
.testimonials-dots {
  display: none;
  gap: 6px;
  justify-content: center;
  padding: 12px 0 4px;
}

.testimonials-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: background 0.3s ease, transform 0.3s ease;
}

.testimonials-dots span.active {
  background: var(--blue);
  transform: scale(1.4);
}

/* ==============================
   DELIVERY CARDS
   ============================== */
.delivery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  cursor: pointer;
  opacity: 0;
}

.delivery-card.is-visible {
  animation: cardEntrance 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.deliveries-grid .delivery-card:nth-child(1) { animation-delay: 0.05s; }
.deliveries-grid .delivery-card:nth-child(2) { animation-delay: 0.10s; }
.deliveries-grid .delivery-card:nth-child(3) { animation-delay: 0.15s; }
.deliveries-grid .delivery-card:nth-child(4) { animation-delay: 0.20s; }
.deliveries-grid .delivery-card:nth-child(5) { animation-delay: 0.25s; }
.deliveries-grid .delivery-card:nth-child(6) { animation-delay: 0.30s; }
.deliveries-grid .delivery-card:nth-child(7) { animation-delay: 0.35s; }
.deliveries-grid .delivery-card:nth-child(8) { animation-delay: 0.40s; }
.deliveries-grid .delivery-card:nth-child(9) { animation-delay: 0.45s; }
.deliveries-grid .delivery-card:nth-child(10) { animation-delay: 0.50s; }
.deliveries-grid .delivery-card:nth-child(11) { animation-delay: 0.55s; }
.deliveries-grid .delivery-card:nth-child(12) { animation-delay: 0.60s; }

.delivery-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(0, 209, 255, 0.35);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(0, 209, 255, 0.15);
}

.testimonial-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  flex: 0 0 calc((100% - 36px) / 3);
  scroll-snap-align: start;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 44, 255, 0.24);
  box-shadow: 0 18px 44px rgba(8, 12, 26, 0.5);
}

.card-img-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(0, 209, 255, 0.07), rgba(139, 44, 255, 0.1));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.card-img-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 18px,
    rgba(255, 255, 255, 0.015) 18px,
    rgba(255, 255, 255, 0.015) 19px
  );
}

.card-img-icon {
  font-size: 2.2rem;
  line-height: 1;
  position: relative;
  z-index: 1;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.delivery-card:hover .card-img-icon {
  transform: scale(1.25) rotate(-5deg);
}

.card-img-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  position: relative;
  z-index: 1;
}

.delivery-content {
  position: relative;
  z-index: 1;
  padding: 18px 18px 20px;
}

.delivery-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: #dfe7ff;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-mark {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3.4rem;
  line-height: 0.8;
  color: rgba(0, 209, 255, 0.7);
  margin-bottom: 16px;
  animation: quoteGlow 3s ease-in-out infinite;
}

.testimonial-card p {
  margin: 0 0 24px;
  color: #d8e3ff;
  font-size: 0.98rem;
}

.testimonial-meta {
  display: grid;
  gap: 3px;
}

.testimonial-meta strong {
  font-size: 1rem;
  font-weight: 600;
}

.testimonial-meta span {
  color: var(--muted);
  font-size: 0.85rem;
}

.delivery-content h3 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  line-height: 1.15;
}

.delivery-content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ==============================
   HIGHLIGHT & ICON BADGE
   ============================== */
.highlight-card {
  border-radius: var(--radius-sm);
  padding: 18px 20px;
}

.highlight-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.highlight-card strong {
  font-size: 0.98rem;
  font-weight: 600;
}

.icon-badge {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 30px rgba(0, 209, 255, 0.12);
  animation: iconBadgePulse 4s ease-in-out infinite;
}

.icon-badge svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: #8ddcff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mission-card,
.owner-card,
.highlight-card,
.mini-card,
.strip-item,
.testimonial-card {
  position: relative;
  z-index: 1;
}

/* ==============================
   REVEAL ANIMATION
   ============================== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.is-visible .delivery-card,
.reveal.is-visible.delivery-card,
.reveal.is-visible.testimonial-card,
.reveal.is-visible .testimonial-card {
  animation: cardEntrance 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.tilt-card {
  will-change: transform;
}

.tilt-card > * {
  transform: translateZ(0);
}

/* ==============================
   KEYFRAMES
   ============================== */
@keyframes cardEntrance {
  0% { opacity: 0; transform: translateY(32px) scale(0.96); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -14px, 0); }
}

@keyframes backdropShift {
  0% { opacity: 0.8; filter: hue-rotate(0deg); }
  100% { opacity: 1; filter: hue-rotate(15deg); }
}

@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 14px rgba(56, 255, 156, 0.75), 0 0 0 0 rgba(56, 255, 156, 0.4); }
  50% { box-shadow: 0 0 20px rgba(56, 255, 156, 1), 0 0 0 6px rgba(56, 255, 156, 0); }
}

@keyframes iconBadgePulse {
  0%, 100% { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 30px rgba(0, 209, 255, 0.12); }
  50% { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 42px rgba(0, 209, 255, 0.38); }
}

@keyframes eyebrowGlow {
  0% { width: 28px; opacity: 0.6; }
  100% { width: 50px; opacity: 1; }
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translate3d(0, 24px, 0); }
  100% { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes softFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 rgba(0, 209, 255, 0); transform: translateY(0); }
  50% { box-shadow: 0 0 18px rgba(0, 209, 255, 0.12); transform: translateY(-2px); }
}

@keyframes quoteGlow {
  0%, 100% { opacity: 0.72; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-3px); }
}

@keyframes logoDrift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes sectionGlow {
  0% { opacity: 0.4; transform: scale(0.94); }
  100% { opacity: 0.8; transform: scale(1.08); }
}

/* ==============================
   REDUCED MOTION
   ============================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* ==============================
   RESPONSIVE 1200px
   ============================== */
@media (max-width: 1200px) {
  .container {
    width: min(100% - 2.4rem, 100%);
  }

  .deliveries-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .leader-block {
    grid-template-columns: 300px 1fr;
    gap: 36px;
  }

  .leader-block-reverse {
    grid-template-columns: 1fr 300px;
  }
}

/* ==============================
   RESPONSIVE 960px (Tablet)
   ============================== */
@media (max-width: 960px) {
  .hero-grid,
  .owner-grid,
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .deliveries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonials-carousel {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
  }

  .testimonials-viewport {
    padding-inline: 0;
  }

  .testimonials-grid {
    gap: 16px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-strip,
  .owner-highlights {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero {
    min-height: auto;
    max-height: none;
    padding: 52px 0 40px;
  }

  .hero-visual {
    min-height: 0;
  }

  .signal-row {
    gap: 24px;
  }

  .testimonial-card {
    flex-basis: calc((100% - 16px) / 2);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  /* Leadership tablet */
  .leader-block,
  .leader-block-reverse {
    grid-template-columns: 260px 1fr;
    gap: 32px;
  }

  .leader-block-reverse {
    grid-template-columns: 1fr 260px;
  }
}

/* ==============================
   RESPONSIVE 820px (Mobile Nav)
   ============================== */
@media (max-width: 820px) {
  :root {
    --header-height: 56px;
    --container: min(100% - 2rem, 100%);
  }

  .section {
    padding: 72px 0;
  }

  .menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 1001;
  }

  .nav-panel {
    position: fixed;
    top: calc(var(--header-height) + 6px);
    right: 1rem;
    left: 1rem;
    display: grid;
    padding: 20px;
    border-radius: 24px;
    background: rgba(6, 8, 15, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    gap: 12px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
  }

  .nav-panel.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    width: 100%;
  }

  .nav-links li,
  .nav-links a {
    width: 100%;
  }

  .nav-links a {
    min-height: var(--touch-min);
    padding: 10px 16px;
    border-radius: 14px;
    font-size: 1rem;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
    height: var(--touch-min);
    font-size: 0.95rem;
    border-radius: 14px;
  }

  .brand img {
    width: 85px;
  }

  /* Hamburger animation */
  .menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  .menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Testimonials */
  .testimonials-section {
    padding-top: 42px;
  }

  .testimonials-nav {
    display: none;
  }

  .testimonials-carousel {
    grid-template-columns: 1fr;
  }

  .testimonials-dots {
    display: flex;
  }

  .testimonial-card {
    flex-basis: calc(100% - 40px);
    min-width: calc(100% - 40px);
    padding: 22px;
    scroll-snap-align: center;
  }

  .testimonials-grid {
    gap: 14px;
    padding: 0 4px;
  }

  /* Hero */
  .hero-copy {
    padding-top: 4px;
  }

  .hero-badges {
    gap: 8px;
  }

  .hero-badges span {
    font-size: 0.78rem;
    min-height: 36px;
  }

  /* Leadership */
  .leader-block,
  .leader-block-reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .leader-block-reverse .leader-image-wrap,
  .leader-block-reverse .leader-copy {
    order: unset;
  }

  .leader-image-wrap img {
    max-height: 600px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: top;
  }

  .leader-divider {
    margin: 40px 0;
  }

  /* Deliveries */
  .deliveries-grid {
    gap: 16px;
  }
}

/* ==============================
   RESPONSIVE 640px (Small Mobile)
   ============================== */
@media (max-width: 640px) {
  :root {
    --container: min(100% - 1.4rem, 100%);
  }

  .section {
    padding: 60px 0;
  }

  .section::before {
    width: 140px;
    height: 140px;
  }

  /* Hero */
  .hero {
    padding: 36px 0 40px;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
    max-width: none;
    letter-spacing: -0.03em;
  }

  .hero-text,
  .owner-copy p,
  .delivery-content p,
  .mission-card p {
    font-size: 0.94rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .button {
    width: 100%;
    justify-content: center;
  }

  .hero-strip {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-badges {
    gap: 8px;
  }

  /* Glass panels */
  .glass-panel,
  .mission-card,
  .owner-card {
    padding: 20px;
  }

  .mission-card {
    min-height: 240px;
  }

  /* Deliveries single column on small mobile */
  .deliveries-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .delivery-content {
    padding: 16px 16px 18px;
  }

  .delivery-content h3 {
    font-size: 1rem;
    line-height: 1.25;
  }

  /* Testimonials */
  .testimonial-card {
    flex-basis: calc(88vw);
    min-width: calc(88vw);
    padding: 20px;
  }

  .testimonial-card p {
    font-size: 0.92rem;
  }

  .quote-mark {
    font-size: 2.6rem;
    margin-bottom: 12px;
  }

  /* Signal */
  .signal-row {
    flex-wrap: wrap;
    gap: 14px;
  }

  .signal-stat strong {
    font-size: 1.3rem;
  }

  /* Leader */
  .leader-copy h2 {
    font-size: clamp(1.3rem, 7vw, 1.9rem);
  }

  .leader-role-badge {
    top: 14px;
    left: 14px;
    height: 24px;
    padding: 0 10px;
    font-size: 0.64rem;
  }

  .leader-image-wrap img {
    max-height: 360px;
  }

  .leader-name-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .leader-qualities li {
    font-size: 0.88rem;
    padding: 10px 12px;
  }

  /* Mission */
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  /* Section headings */
  .section-heading h2 {
    font-size: clamp(1.6rem, 8vw, 2.4rem);
  }

  /* Owner strip */
  .hero-strip,
  .owner-highlights {
    grid-template-columns: 1fr;
  }

  /* Mini cards */
  .mini-card {
    padding: 14px 16px;
  }

  /* Footer */
  .footer {
    padding: 36px 0 22px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-cta {
    width: 100%;
    justify-content: center;
  }

  .status-pill {
    font-size: 0.8rem;
  }
}

/* ==============================
   RESPONSIVE 420px (Very Small)
   ============================== */
@media (max-width: 420px) {
  .hero h1 {
    font-size: clamp(1.7rem, 8.5vw, 2.2rem);
  }

  .hero-badges span {
    font-size: 0.72rem;
    padding: 0 10px;
  }

  .card-img-icon {
    font-size: 1.8rem;
  }

  .delivery-tag {
    font-size: 0.68rem;
  }

  .eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.16em;
  }

  .leader-title-tag {
    font-size: 0.72rem;
  }

  .testimonial-card {
    flex-basis: 92vw;
    min-width: 92vw;
  }
}

/* ==============================
   MODAL
   ============================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 2000;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: linear-gradient(160deg, rgba(13, 16, 32, 0.98), rgba(8, 10, 22, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(0, 209, 255, 0.08);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  max-width: 920px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
  padding: 2.2rem;
  transform: scale(0.92) translateY(16px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  scrollbar-width: thin;
  scrollbar-color: var(--blue) rgba(255, 255, 255, 0.05);
}

.modal-content::-webkit-scrollbar {
  width: 4px;
}

.modal-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
}

.modal-content::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--blue), var(--purple));
  border-radius: 999px;
}

.modal-overlay.active .modal-content {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.4rem;
  color: var(--muted);
  cursor: pointer;
  width: var(--touch-min);
  height: var(--touch-min);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
  z-index: 2;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.modal-header {
  margin-bottom: 1.6rem;
  padding-right: 2.8rem;
}

.modal-tag {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 12px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: white;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.modal-title {
  font-size: clamp(1.2rem, 4vw, 1.75rem);
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.03em;
  color: var(--text);
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
}

.modal-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.modal-description {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.98rem;
  margin: 0;
  line-height: 1.7;
}

.modal-features,
.modal-impact {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 1.2rem 1.4rem;
}

.modal-details h3 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 0.8rem;
}

.modal-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.modal-details li {
  padding: 0.35rem 0 0.35rem 1.2rem;
  color: #c8d6f0;
  font-size: 0.9rem;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.modal-details li:last-child {
  border-bottom: none;
}

.modal-details li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* Modal mobile */
@media (max-width: 640px) {
  .modal-overlay {
    padding: 10px;
    align-items: flex-end;
  }

  .modal-content {
    border-radius: 24px 24px 16px 16px;
    padding: 1.4rem;
    max-height: 88vh;
    width: 100%;
  }

  .modal-details {
    grid-template-columns: 1fr;
  }

  .modal-description {
    grid-column: 1;
    font-size: 0.92rem;
  }

  .modal-title {
    font-size: 1.2rem;
  }

  .modal-features,
  .modal-impact {
    padding: 1rem;
  }

  .modal-header {
    padding-right: 2.5rem;
    margin-bottom: 1.2rem;
  }
}