:root {
  --bg: #f4f8ff;
  --surface: #ffffff;
  --surface-alt: #eef5ff;
  --ink: #0e2446;
  --muted: #5f7291;
  --primary: #0a66d7;
  --primary-dark: #084ea7;
  --accent: #00a8ff;
  --warm: #ff9f1a;
  --border: #d7e5f8;
  --shadow: 0 14px 32px rgba(8, 36, 74, 0.1);
  --radius: 14px;
  --max-width: 1140px;
  --cursor-x: 50vw;
  --cursor-y: 22vh;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  position: relative;
  font-family: "Poppins", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 100% -10%, rgba(10, 102, 215, 0.12), transparent 30%),
    radial-gradient(circle at -10% 50%, rgba(0, 168, 255, 0.1), transparent 30%),
    var(--bg);
  line-height: 1.6;
  overflow-x: clip;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background: url("assets/ai-circuit-bg.svg") center top / cover no-repeat;
  opacity: 0.28;
}

body::after {
  background:
    radial-gradient(
      300px circle at var(--cursor-x) var(--cursor-y),
      rgba(102, 170, 255, 0.22),
      rgba(102, 170, 255, 0) 74%
    ),
    url("assets/ai-wave-bg.svg") center bottom / cover no-repeat;
  opacity: 0.26;
  transition: background-position 0.26s ease;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: min(var(--max-width), 92vw); margin: 0 auto; }

.skip-link {
  position: absolute;
  left: 14px;
  top: -44px;
  z-index: 60;
  border-radius: 8px;
  border: 1px solid #9ec3f3;
  background: #f4f9ff;
  color: #0d4f97;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 0.68rem;
  transition: top 0.18s ease;
}

.skip-link:focus {
  top: 10px;
}

.topbar {
  background: linear-gradient(90deg, #072a5b, #0b3c79);
  color: #d9e9ff;
  font-size: 0.9rem;
}

.topbar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.1rem;
  padding: 0.56rem 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 25;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e3edfb;
}

.header::after {
  content: "";
  position: absolute;
  left: -20%;
  right: -20%;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(38, 146, 255, 0.7), rgba(0, 0, 0, 0));
  opacity: 0.62;
  animation: headerBeam 7.8s linear infinite;
  pointer-events: none;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.55rem;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 10px;
  background: #eef4ff;
}

.brand-text {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand-text span { color: var(--primary); }

.nav-toggle {
  display: none;
  border: 1px solid #d5e5fb;
  background: #f2f8ff;
  border-radius: 8px;
  font-size: 1.2rem;
  color: var(--ink);
  padding: 0.2rem 0.55rem;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
}

.nav {
  margin-left: auto;
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  font-weight: 500;
  color: #203f69;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(188, 210, 238, 0.55);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(237, 246, 255, 0.34));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.56),
    0 2px 10px rgba(23, 73, 140, 0.07);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.nav a::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
  pointer-events: none;
  opacity: 0.72;
}

.nav a:hover,
.nav a.active {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(233, 245, 255, 0.54));
  border-color: rgba(146, 181, 224, 0.72);
  color: var(--primary-dark);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 10px 22px rgba(18, 68, 136, 0.16);
  transform: translateY(-1px);
}

.nav a.contact-cta {
  background: linear-gradient(135deg, rgba(255, 179, 71, 0.96), rgba(255, 143, 31, 0.92));
  color: #fff;
  border-color: rgba(255, 154, 44, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 240, 212, 0.58),
    0 10px 22px rgba(255, 143, 31, 0.3);
}

.nav a.contact-cta:hover,
.nav a.contact-cta.active {
  background: linear-gradient(135deg, rgba(255, 191, 88, 0.97), rgba(255, 151, 31, 0.95));
  color: #fff;
  border-color: rgba(255, 162, 56, 0.95);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid #cfdff6;
  background: #f7faff;
  color: #1b4f8d;
  border-radius: 999px;
  padding: 0.24rem 0.65rem 0.24rem 0.24rem;
  min-width: 108px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.toggle-track {
  width: 48px;
  height: 26px;
  border-radius: 999px;
  padding: 2px;
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #d8e6fb, #cfe0f8);
  border: 1px solid #bfd2ee;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.toggle-knob {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff, #e9f2ff);
  border: 1px solid #c5d8f6;
  box-shadow: 0 2px 8px rgba(15, 48, 92, 0.24);
  transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease;
}

.toggle-label {
  line-height: 1;
  min-width: 38px;
  text-align: left;
}

.theme-toggle:hover {
  transform: translateY(-1px) scale(1.01);
  background: #ecf4ff;
  box-shadow: 0 10px 22px rgba(16, 64, 122, 0.18);
}

.theme-toggle:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(10, 102, 215, 0.28);
}

.theme-toggle.is-dark {
  border-color: #37639b;
  background: #132947;
  color: #dcecff;
}

.theme-toggle.is-dark .toggle-track {
  background: linear-gradient(135deg, #1d3f68, #20395e);
  border-color: #355882;
}

.theme-toggle.is-dark .toggle-knob {
  transform: translateX(22px);
  background: linear-gradient(135deg, #ffe08a, #ffc55a);
  border-color: #eeb24b;
  box-shadow: 0 3px 10px rgba(255, 179, 71, 0.4);
}

.hero {
  padding: 5rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.1rem;
  align-items: center;
}

.badge {
  display: inline-block;
  background: #e8f2ff;
  color: #0c58b0;
  border: 1px solid #cfe2ff;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.33rem 0.8rem;
}

h1, h2, h3 { line-height: 1.2; margin: 0 0 0.7rem; }
h1 { font-size: clamp(2rem, 4.8vw, 3.05rem); margin-top: 0.75rem; }
h2 { font-size: clamp(1.45rem, 3vw, 2.15rem); }
h3 { font-size: 1.08rem; }

p { margin: 0 0 1rem; color: var(--muted); }

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.1rem;
  border-radius: 10px;
  font-weight: 600;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -140% auto -140% -42%;
  width: 34%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0));
  transform: translateX(-160%) skewX(-16deg);
  pointer-events: none;
  opacity: 0;
  transition: transform 0.66s ease, opacity 0.3s ease;
}

.btn:hover::after {
  transform: translateX(260%) skewX(-16deg);
  opacity: 0.95;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(10, 102, 215, 0.22);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #0b6fe6, #0a58bc);
}

.btn-primary:hover { background: linear-gradient(135deg, #0b77f5, #0a5fca); }

.btn-secondary {
  background: #fff;
  border-color: #cde0fb;
  color: #19539a;
}

.btn-secondary:hover { background: #eff6ff; }

.hero-banner,
.ai-image,
.hero-card,
.card,
.kpi,
.timeline-item,
.contact-box,
.client-chip,
.founder-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-banner,
.ai-image { overflow: hidden; }

@keyframes floatY {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

@keyframes meshDrift {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  35% { transform: translate3d(-2.4%, 2.2%, 0) scale(1.05); }
  70% { transform: translate3d(2.2%, -2.8%, 0) scale(1.08); }
  100% { transform: translate3d(-1.4%, 1.2%, 0) scale(1.02); }
}

@keyframes meshPulse {
  0% { opacity: 0.42; filter: hue-rotate(0deg) saturate(1); }
  50% { opacity: 0.62; filter: hue-rotate(12deg) saturate(1.12); }
  100% { opacity: 0.45; filter: hue-rotate(0deg) saturate(1); }
}

@keyframes noiseShift {
  0% { background-position: 0 0; }
  25% { background-position: 80px 45px; }
  50% { background-position: 160px 5px; }
  75% { background-position: 220px 70px; }
  100% { background-position: 280px 25px; }
}

@keyframes sheenSweep {
  0% { transform: translateX(-140%) skewX(-16deg); opacity: 0; }
  20% { opacity: 0.3; }
  45% { opacity: 0.18; }
  100% { transform: translateX(220%) skewX(-16deg); opacity: 0; }
}

@keyframes headerBeam {
  0% { transform: translateX(-22%); }
  100% { transform: translateX(22%); }
}

@keyframes titleShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 55% 50%; }
  100% { background-position: 100% 50%; }
}

.hero-banner img,
.ai-image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.ai-image { margin-top: 0.8rem; }

.hero-card {
  margin-top: 0.8rem;
  padding: 0.95rem;
}

.hero-banner { animation: floatY 6s ease-in-out infinite; }
.ai-image { animation: floatY 7s ease-in-out infinite; }
.hero-card { animation: floatY 8s ease-in-out infinite; }

.hero-banner:hover,
.ai-image:hover,
.hero-card:hover {
  animation-play-state: paused;
}

.hero-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}

.hero-stat {
  border: 1px solid #dbe9fb;
  border-radius: 10px;
  padding: 0.75rem;
  background: #f7fbff;
}

.hero-stat strong {
  display: block;
  color: #0b5fc4;
  font-size: 1.22rem;
}

.home-hero-wrap {
  position: relative;
  padding: 4.4rem 0 3.2rem;
  overflow: clip;
  isolation: isolate;
  background:
    linear-gradient(178deg, rgba(255, 255, 255, 0.58), rgba(241, 248, 255, 0.94)),
    radial-gradient(120% 95% at 12% 18%, rgba(58, 148, 255, 0.16), rgba(58, 148, 255, 0) 62%),
    radial-gradient(100% 92% at 78% 12%, rgba(0, 168, 255, 0.16), rgba(0, 168, 255, 0) 66%),
    radial-gradient(90% 88% at 68% 84%, rgba(84, 122, 255, 0.13), rgba(84, 122, 255, 0) 68%);
}

.home-hero-wrap .container {
  width: min(1280px, 94vw);
  position: relative;
  z-index: 1;
}

.home-hero-wrap::before,
.home-hero-wrap::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.home-hero-wrap::before {
  width: min(620px, 56vw);
  height: min(620px, 56vw);
  right: -120px;
  top: -180px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 28%, rgba(10, 111, 230, 0.34), rgba(10, 111, 230, 0) 60%),
    radial-gradient(circle at 72% 72%, rgba(35, 193, 255, 0.26), rgba(35, 193, 255, 0) 68%);
  filter: blur(6px);
  animation: meshDrift 22s ease-in-out infinite alternate;
}

.home-hero-wrap::after {
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.7'/%3E%3C/svg%3E");
  background-size: 190px 190px;
  mix-blend-mode: soft-light;
  opacity: 0.12;
  animation: noiseShift 1.1s steps(4, end) infinite;
}

.home-hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1.28rem;
  align-items: stretch;
  isolation: isolate;
}

.home-hero::before,
.home-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.home-hero::before {
  width: min(440px, 40vw);
  height: min(440px, 40vw);
  left: -90px;
  bottom: -110px;
  background: radial-gradient(circle, rgba(0, 168, 255, 0.2), rgba(0, 168, 255, 0));
  animation: meshPulse 14s ease-in-out infinite;
}

.home-hero::after {
  width: min(340px, 34vw);
  height: min(340px, 34vw);
  right: 26%;
  top: -70px;
  background: radial-gradient(circle, rgba(102, 145, 255, 0.22), rgba(102, 145, 255, 0));
  animation: meshDrift 17s ease-in-out infinite alternate-reverse;
}

.home-hero-left,
.home-hero-right {
  position: relative;
  z-index: 2;
}

.home-hero-left {
  align-self: center;
}

.home-hero-left .badge {
  margin-bottom: 0.5rem;
}

.home-hero-left h1 {
  margin-bottom: 0.85rem;
  max-width: 18ch;
  font-size: clamp(2.35rem, 4.35vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
  .home-hero-left h1,
  .page-header h1 {
    background-image: linear-gradient(125deg, #0d2b54 10%, #0a66d7 52%, #00b6ff 92%);
    background-size: 170% 170%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: titleShift 8.5s ease-in-out infinite alternate;
  }
}

.home-hero-left p {
  max-width: 56ch;
  font-size: clamp(1rem, 1.1vw, 1.14rem);
  line-height: 1.63;
}

.home-hero-left .actions {
  margin-top: 1rem;
}

.home-hero-left .btn {
  border-radius: 12px;
  padding: 0.76rem 1.16rem;
}

.hero-pill-row {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #c8defb;
  background: linear-gradient(160deg, #ffffff, #eff6ff);
  color: #16569f;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12px;
  padding: 0.3rem 0.72rem;
}

.home-kpi-row {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  max-width: 620px;
}

.home-kpi {
  display: grid;
  gap: 0.1rem;
  background: linear-gradient(160deg, #ffffff, #eef5ff);
  border: 1px solid #d0e2fb;
  border-radius: 12px;
  padding: 0.72rem 0.78rem;
  box-shadow: 0 10px 24px rgba(10, 56, 114, 0.08);
}

.home-kpi strong {
  font-size: 1.2rem;
  color: #0a5fca;
  line-height: 1.15;
}

.home-kpi span {
  color: #466487;
  font-size: 0.8rem;
  font-weight: 500;
}

.home-hero-right {
  display: grid;
  gap: 0.72rem;
}

.hero-visual-frame {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid #cfe2fb;
  background: linear-gradient(165deg, #f2f8ff, #ffffff);
  box-shadow: 0 18px 36px rgba(10, 56, 114, 0.14);
  isolation: isolate;
}

.hero-visual-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.1), rgba(25, 88, 168, 0.24)),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.02) 0 10px,
      rgba(8, 68, 143, 0.06) 10px 20px
    );
  mix-blend-mode: soft-light;
  z-index: 1;
  pointer-events: none;
}

.hero-visual-frame::after {
  content: "";
  position: absolute;
  inset: -36% auto -36% -38%;
  width: 34%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
  transform: translateX(-140%) skewX(-16deg);
  mix-blend-mode: screen;
  z-index: 2;
  pointer-events: none;
  animation: sheenSweep 8.8s ease-in-out infinite;
}

.hero-visual-frame img {
  width: 100%;
  min-height: 320px;
  height: 100%;
  object-fit: cover;
}

.hero-overlay-tag {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  z-index: 2;
  border: 1px solid rgba(166, 208, 255, 0.9);
  background: rgba(5, 28, 63, 0.72);
  color: #eaf4ff;
  border-radius: 999px;
  padding: 0.32rem 0.72rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  backdrop-filter: blur(4px);
}

.hero-visual-subgrid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 0.72rem;
  align-items: stretch;
}

.hero-mini-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #d2e4fb;
  border-radius: 14px;
  background: linear-gradient(160deg, #ffffff, #eef6ff);
  box-shadow: 0 12px 24px rgba(12, 60, 120, 0.1);
  padding: 0.85rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.hero-mini-card h3 {
  font-size: 0.98rem;
  margin-bottom: 0.4rem;
}

.hero-mini-card p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: #4f6f95;
}

.hero-mini-card img {
  width: 100%;
  height: 100%;
  min-height: 138px;
  object-fit: cover;
  border-radius: 10px;
}

.hero-mini-card-insight {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mini-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}

.mini-card-head h3 {
  margin-bottom: 0;
}

.mini-card-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #c9dcfb;
  background: #f0f7ff;
  color: #1a5ca2;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  padding: 0.24rem 0.5rem;
  white-space: nowrap;
}

.mini-feature-list {
  margin-top: auto;
  display: grid;
  gap: 0.34rem;
}

.mini-feature-list span {
  position: relative;
  border: 1px solid #d4e4fb;
  border-radius: 9px;
  background: rgba(248, 252, 255, 0.9);
  color: #2e5f94;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 0.32rem 0.56rem 0.32rem 1.12rem;
}

.mini-feature-list span::before {
  content: "";
  position: absolute;
  left: 0.54rem;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: #0b73e9;
  box-shadow: 0 0 0 2px rgba(11, 115, 233, 0.16);
}

.hero-mini-card-visual {
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
}

.hero-mini-card-visual img {
  height: auto;
  min-height: 158px;
  flex: 0 0 auto;
}

.mini-kpi-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  margin-top: 0.48rem;
}

.mini-kpi-strip div {
  border: 1px solid #d1e2fb;
  border-radius: 9px;
  background: #f5faff;
  padding: 0.4rem 0.45rem;
}

.mini-kpi-strip strong {
  display: block;
  color: #0a63cd;
  font-size: 0.86rem;
  line-height: 1.1;
}

.mini-kpi-strip span {
  color: #48688d;
  font-size: 0.7rem;
  font-weight: 600;
}

.hero-mini-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 28px rgba(12, 60, 120, 0.16);
}

.home-marquee-section {
  padding-top: 0;
  padding-bottom: 1.55rem;
}

.home-video-section {
  padding-top: 0.2rem;
  padding-bottom: 2.3rem;
}

.home-video-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 0.88rem;
  align-items: stretch;
}

.home-video-card,
.home-video-aside {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #ffffff, #eef6ff);
  border: 1px solid #d1e3fb;
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(10, 56, 114, 0.11);
  padding: 1rem;
}

.home-video-card::before,
.home-video-aside::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, #0b72e8, #00a8ff);
}

.home-video-card::after,
.home-video-aside::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -82px;
  bottom: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 153, 255, 0.22), rgba(47, 153, 255, 0));
  pointer-events: none;
}

.home-video-head h2 {
  margin-top: 0.55rem;
  margin-bottom: 0.5rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.home-video-head p {
  margin-bottom: 0.75rem;
}

.home-video-frame {
  border-radius: 14px;
  border: 1px solid #c7dcfb;
  overflow: hidden;
  background: linear-gradient(165deg, #07234d, #03142e);
}

.home-company-video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  background: #041733;
  object-fit: cover;
}

.home-video-note {
  margin: 0.62rem 0 0;
  font-size: 0.79rem;
  color: #47668a;
}

.home-video-note code {
  background: #f3f8ff;
  border: 1px solid #d5e6fb;
  border-radius: 7px;
  padding: 0.05rem 0.32rem;
  color: #174f8d;
}

.home-video-aside h3 {
  margin: 0.12rem 0 0.72rem;
}

.home-video-points {
  display: grid;
  gap: 0.58rem;
  margin-bottom: 0.95rem;
}

.home-video-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.62rem;
  align-items: start;
  border: 1px solid #d4e5fb;
  border-radius: 12px;
  background: rgba(248, 252, 255, 0.9);
  padding: 0.6rem 0.64rem;
}

.home-video-point span {
  min-width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  border: 1px solid #c9defb;
  background: linear-gradient(145deg, #fafdff, #e8f2ff);
  color: #0a63cd;
  font-size: 0.78rem;
  font-weight: 700;
}

.home-video-point h4 {
  margin: 0 0 0.24rem;
  font-size: 0.93rem;
  color: #164a84;
}

.home-video-point p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #4d6e96;
}

.home-video-aside .btn {
  width: 100%;
}

.home-ribbon {
  width: 100%;
}

.home-service-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.stack-subtitle {
  margin: 1.2rem 0 0.35rem;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  color: #1d4f86;
}

.extended-service-grid {
  margin-top: 0.58rem;
}

.home-service-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(158deg, #ffffff, #eef6ff);
  border: 1px solid #d1e3fb;
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 14px 30px rgba(11, 58, 117, 0.1);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.home-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0b72e8, #00a8ff);
}

.home-service-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -52px;
  bottom: -64px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(50, 155, 255, 0.2), rgba(50, 155, 255, 0));
}

.home-service-card:hover {
  transform: translateY(-5px);
  border-color: #aac9ef;
  box-shadow: 0 22px 34px rgba(11, 58, 117, 0.16);
}

.service-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  border: 1px solid #c4ddfb;
  background: linear-gradient(145deg, #fafdff, #e7f1ff);
  color: #0a62cc;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  margin-bottom: 0.75rem;
}

.home-proof-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.proof-card {
  background: linear-gradient(160deg, #ffffff, #eef6ff);
  border: 1px solid #d1e2fb;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(12, 60, 120, 0.1);
  padding: 1rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.proof-card strong {
  display: inline-block;
  margin-bottom: 0.48rem;
  color: #0a63cd;
  font-size: 1.42rem;
  line-height: 1;
}

.proof-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 21px 34px rgba(12, 60, 120, 0.16);
}

.home-cta-band {
  text-align: center;
  background: linear-gradient(160deg, #f7fbff, #ecf4ff);
  border: 1px solid #d4e5fb;
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(10, 56, 114, 0.1);
  padding: 1.6rem;
}

.home-cta-band p {
  max-width: 760px;
  margin: 0 auto 1rem;
}

@media (min-width: 1500px) {
  .home-hero-wrap {
    padding: 5rem 0 3.6rem;
  }

  .home-hero-wrap .container {
    width: min(1380px, 95vw);
  }

  .home-hero {
    grid-template-columns: 1.04fr 0.96fr;
    gap: 1.45rem;
  }

  .home-hero-left h1 {
    max-width: 17ch;
    font-size: clamp(2.8rem, 3.3vw, 4rem);
  }

  .home-hero-left p {
    max-width: 53ch;
    font-size: 1.1rem;
  }

  .hero-visual-frame img {
    min-height: 360px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-wrap::before,
  .home-hero-wrap::after,
  .home-hero::before,
  .home-hero::after,
  .hero-visual-frame::after,
  .auravoice-toggle::after,
  .case-bot-msg.typing span,
  .header::after,
  .home-hero-left h1,
  .page-header h1 {
    animation: none !important;
  }

  .card::after,
  .kpi::after,
  .timeline-item::after,
  .contact-box::after,
  .client-chip::after,
  .proof-card::after,
  .case-card::after,
  .hero-mini-card::after,
  .home-kpi::after,
  .btn::after {
    transition: none !important;
  }
}

.section { padding: clamp(2.35rem, 4vw, 3.1rem) 0; }

.section .container > :last-child {
  margin-bottom: 0;
}

.slide-ribbon-wrap {
  padding: 0 0 1rem;
}

.slide-ribbon {
  width: min(var(--max-width), 92vw);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #d4e4fb;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.slide-track {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.65rem 0.75rem;
  width: max-content;
  animation: marquee 34s linear infinite;
}

.slide-track span {
  white-space: nowrap;
  font-weight: 600;
  color: #1a4d8e;
  background: #eef5ff;
  border: 1px solid #d3e5ff;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
}

.slide-ribbon:hover .slide-track {
  animation-play-state: paused;
}

.client-ribbon {
  margin-bottom: 1rem;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.section.alt {
  background: linear-gradient(180deg, #f8fbff, #eef5ff);
  border-top: 1px solid #dfebfb;
  border-bottom: 1px solid #dfebfb;
}

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

.card,
.kpi,
.timeline-item,
.contact-box,
.founder-card {
  padding: 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card,
.kpi,
.timeline-item,
.contact-box,
.client-chip,
.proof-card,
.case-card,
.hero-mini-card,
.home-kpi {
  position: relative;
  overflow: hidden;
}

.card::after,
.kpi::after,
.timeline-item::after,
.contact-box::after,
.client-chip::after,
.proof-card::after,
.case-card::after,
.hero-mini-card::after,
.home-kpi::after {
  content: "";
  position: absolute;
  inset: -150% auto -150% -45%;
  width: 34%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  transform: translateX(-150%) skewX(-18deg);
  pointer-events: none;
  opacity: 0;
  transition: transform 0.88s ease, opacity 0.38s ease;
}

.card:hover::after,
.kpi:hover::after,
.timeline-item:hover::after,
.contact-box:hover::after,
.client-chip:hover::after,
.proof-card:hover::after,
.case-card:hover::after,
.hero-mini-card:hover::after,
.home-kpi:hover::after {
  transform: translateX(250%) skewX(-18deg);
  opacity: 0.86;
}

.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  width: 0%;
  height: 3px;
  z-index: 80;
  background: linear-gradient(90deg, #14c1ff, #0a66d7, #43c2ff);
  box-shadow: 0 0 14px rgba(26, 135, 255, 0.55);
  transition: width 0.12s linear;
  pointer-events: none;
}

.card:hover,
.kpi:hover,
.timeline-item:hover,
.contact-box:hover,
.founder-card:hover,
.client-chip:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(8, 38, 80, 0.16);
}

.card,
.founder-card,
.hero-card,
.contact-box {
  transform-style: preserve-3d;
  will-change: transform;
}

.highlights { display: grid; gap: 0.75rem; }

.highlight {
  background: #fff;
  border-left: 4px solid var(--warm);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  box-shadow: 0 8px 20px rgba(16, 54, 97, 0.08);
  color: #355274;
}

.page-header { padding: 3.6rem 0 2.1rem; }
.page-header p { max-width: 780px; }

.page-header + .section {
  padding-top: clamp(1.7rem, 3vw, 2.35rem);
}

.kpi-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.kpi { text-align: center; }
.kpi strong { display: block; color: #0e62cb; font-size: 1.28rem; }

.timeline {
  border-left: 3px solid #cde0fb;
  margin-left: 0.2rem;
  padding-left: 0.9rem;
  display: grid;
  gap: 0.7rem;
}

.client-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.client-chip {
  padding: 0.75rem 0.85rem;
  font-weight: 600;
  color: #234265;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.segment-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.7rem;
}

.segment-chip {
  background: linear-gradient(160deg, #ffffff, #f3f8ff);
  border: 1px solid #d4e4fb;
  border-radius: 999px;
  padding: 0.5rem 0.78rem;
  font-size: 0.86rem;
  font-weight: 600;
  text-align: center;
  color: #23548d;
  box-shadow: 0 10px 22px rgba(11, 56, 113, 0.09);
}

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

.case-card {
  background: linear-gradient(165deg, #ffffff, #eef6ff);
  border: 1px solid #d5e5fa;
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 14px 30px rgba(13, 59, 118, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 36px rgba(13, 59, 118, 0.16);
}

.case-tag {
  display: inline-block;
  background: linear-gradient(135deg, #0c72e9, #0a58bc);
  color: #fff;
  border-radius: 999px;
  padding: 0.28rem 0.62rem;
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  margin-bottom: 0.7rem;
}

.case-metric {
  margin-top: 0.55rem;
  font-weight: 600;
  color: #1a4f86;
}

.clients-cta {
  background: linear-gradient(160deg, #f7fbff, #edf5ff);
  border: 1px solid #d6e6fb;
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: 0 14px 30px rgba(10, 58, 116, 0.08);
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
  align-items: stretch;
}

.founder-role {
  color: #0a62cc;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.founder-photo {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #d4e5fb;
  margin-bottom: 0.8rem;
  background: #edf5ff;
}

.cofounder-section .founder-layout {
  grid-template-columns: 1.25fr 1fr;
  gap: 1.15rem;
}

.cofounder-section .founder-team-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.cofounder-section .founder-team-grid .founder-main {
  grid-template-columns: minmax(220px, 250px) 1fr;
}

.cofounder-section .founder-details h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  line-height: 1.08;
}

.cofounder-section .founder-orientation-wide {
  grid-column: 1 / -1;
}

.founder-main {
  display: grid;
  grid-template-columns: minmax(220px, 250px) 1fr;
  gap: 1rem;
  align-items: stretch;
  background: linear-gradient(160deg, #ffffff, #f1f7ff);
  border-color: #cfe2fb;
  min-height: 100%;
  overflow: hidden;
  position: relative;
}

.founder-main::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, #0b72e8, #00a8ff);
}

.founder-photo-frame {
  display: flex;
  min-height: 100%;
  border: 1px solid #cfe1fb;
  border-radius: 14px;
  padding: 0.35rem;
  background: linear-gradient(160deg, #fafdff, #edf5ff);
}

.founder-photo-vertical {
  width: 100%;
  height: 100%;
  min-height: 330px;
  max-height: none;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center 14%;
  border-radius: 10px;
  margin: 0;
}

.founder-details {
  display: flex;
  flex-direction: column;
  gap: 0.58rem;
}

.founder-head {
  display: grid;
  gap: 0.28rem;
}

.founder-badge {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #c8dcfb;
  background: #f0f7ff;
  color: #145398;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  padding: 0.2rem 0.54rem;
}

.founder-details h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.12;
}

.founder-details .founder-role {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.founder-details p {
  margin: 0;
}

.founder-skill-list {
  list-style: none;
  margin: 0.08rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.42rem;
}

.founder-skill-list li {
  border: 1px solid #d2e4fb;
  border-radius: 10px;
  background: rgba(246, 251, 255, 0.94);
  color: #285788;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.35;
  padding: 0.38rem 0.52rem;
}

.founder-orientation .highlight {
  background: linear-gradient(150deg, #f5faff, #edf5ff);
  border-left-color: #2d79df;
}

.founder-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.6rem;
}

.founder-links a {
  display: inline-flex;
  align-items: center;
  padding: 0.36rem 0.66rem;
  border-radius: 999px;
  border: 1px solid #c8dcfb;
  background: #f3f8ff;
  color: #1c508f;
  font-size: 0.84rem;
  font-weight: 600;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
}

.founder-links a:hover { background: #e7f1ff; }

.cofounder-contact-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
  align-items: start;
}

.cofounder-contact-note {
  height: 100%;
}

.form-help {
  margin-top: 0.8rem;
  font-size: 0.86rem;
}

.webto-case-form {
  background: linear-gradient(160deg, #ffffff, #eef6ff);
  border: 1px solid #d3e4fb;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(13, 59, 118, 0.1);
  padding: 1rem;
}

@keyframes auraPulse {
  0% { transform: scale(0.98); opacity: 0.45; }
  70% { transform: scale(1.1); opacity: 0; }
  100% { transform: scale(1.1); opacity: 0; }
}

@keyframes botTyping {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.36; }
  40% { transform: translateY(-3px); opacity: 1; }
}

.case-bot-card {
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #ffffff, #edf5ff 65%, #f8fbff);
  border: 1px solid #d3e4fb;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(13, 59, 118, 0.1);
  padding: 1rem;
}

.case-bot-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0b71e8, #00b7ff, #0b71e8);
}

.auravoice-toggle {
  position: fixed;
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
  right: 22px;
  bottom: 22px;
  z-index: 48;
  isolation: isolate;
  border: 1px solid #2e80e7;
  background: linear-gradient(135deg, #0b76f4, #0959bb);
  color: #fff;
  border-radius: 999px;
  padding: 0.56rem 0.95rem;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.25px;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(11, 74, 154, 0.34);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.auravoice-toggle::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 1px solid rgba(51, 148, 255, 0.5);
  z-index: -1;
  pointer-events: none;
  animation: auraPulse 2.5s ease-out infinite;
}

.auravoice-toggle.open::after {
  animation: none;
  opacity: 0;
}

.auravoice-toggle-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #82ffbd;
  box-shadow: 0 0 0 6px rgba(130, 255, 189, 0.2);
}

.auravoice-toggle-label {
  line-height: 1;
}

.auravoice-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(11, 74, 154, 0.44);
  filter: brightness(1.04);
}

.auravoice-widget {
  position: fixed;
  right: 22px;
  bottom: 76px;
  z-index: 47;
  width: min(430px, calc(100vw - 28px));
  margin-top: 0;
  max-height: min(76vh, 700px);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
}

.auravoice-widget[hidden] {
  display: none !important;
}

.case-bot-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.6rem;
}

.case-bot-head > div {
  min-width: 0;
}

.case-bot-close {
  margin-left: auto;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c7dcfb;
  background: #eff6ff;
  color: #1b5ca4;
  border-radius: 9px;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.case-bot-close:hover {
  transform: translateY(-1px);
  background: #e5f1ff;
  border-color: #b6d3fb;
}

.case-bot-head h3 {
  margin-bottom: 0.32rem;
  font-size: 1.05rem;
}

.case-bot-head p {
  margin-bottom: 0.5rem;
  font-size: 0.84rem;
}

.case-bot-status {
  display: inline-flex;
  align-items: center;
  border: 1px solid #c7dcfb;
  background: #eff6ff;
  color: #0d57af;
  border-radius: 999px;
  padding: 0.28rem 0.62rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15px;
}

.case-bot-progress-wrap {
  width: 100%;
  height: 7px;
  margin: 0.24rem 0 0.2rem;
  border-radius: 999px;
  background: #e6f1ff;
  border: 1px solid #d0e3fc;
  overflow: hidden;
}

.case-bot-progress-bar {
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #0a68d9, #00aef8);
  transition: width 0.25s ease;
}

.case-bot-progress-text {
  margin: 0 0 0.48rem;
  font-size: 0.76rem;
  color: #4b688d;
  font-weight: 600;
}

.case-bot-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.58rem;
}

.case-bot-chip {
  border: 1px solid #cce0fc;
  background: #f3f8ff;
  color: #1c5798;
  border-radius: 999px;
  padding: 0.3rem 0.62rem;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.case-bot-chip:hover {
  transform: translateY(-1px);
  background: #e8f2ff;
  border-color: #b8d5fc;
}

.case-bot-messages {
  max-height: 280px;
  min-height: 190px;
  overflow: auto;
  border: 1px solid #d2e3fb;
  border-radius: 12px;
  background: #f8fbff;
  padding: 0.7rem;
  display: grid;
  gap: 0.45rem;
}

.case-bot-msg {
  max-width: 88%;
  padding: 0.5rem 0.68rem;
  border-radius: 10px;
  font-size: 0.88rem;
}

.case-bot-msg.bot {
  background: #eaf3ff;
  border: 1px solid #c8dcfb;
  color: #1d4f86;
}

.case-bot-msg.user {
  justify-self: end;
  background: #0b6fe6;
  border: 1px solid #0b61ca;
  color: #fff;
}

.case-bot-msg.summary {
  max-width: 100%;
  white-space: pre-line;
  font-size: 0.82rem;
  line-height: 1.55;
}

.case-bot-msg.typing {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.45rem 0.62rem;
}

.case-bot-msg.typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6fa4e3;
  animation: botTyping 0.95s ease-in-out infinite;
}

.case-bot-msg.typing span:nth-child(2) {
  animation-delay: 0.14s;
}

.case-bot-msg.typing span:nth-child(3) {
  animation-delay: 0.28s;
}

.case-bot-input-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.6rem;
  margin-top: 0.64rem;
}

.case-bot-input {
  border: 1px solid #cfe1fb;
  border-radius: 10px;
  background: #f9fcff;
  color: #15375f;
  padding: 0.64rem 0.7rem;
  font: inherit;
}

.case-bot-input:focus {
  outline: 0;
  border-color: #4d8fdd;
  box-shadow: 0 0 0 3px rgba(10, 102, 215, 0.16);
}

.case-bot-actions {
  margin-top: 0.72rem;
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.case-bot-actions .btn {
  padding: 0.52rem 0.72rem;
  font-size: 0.78rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #1d4f87;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #cfe1fb;
  border-radius: 10px;
  background: #f9fcff;
  color: #15375f;
  padding: 0.64rem 0.7rem;
  font: inherit;
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 0;
  border-color: #4d8fdd;
  box-shadow: 0 0 0 3px rgba(10, 102, 215, 0.16);
}

.webto-submit {
  margin-top: 0.85rem;
}

.form-status {
  margin-top: 0.65rem;
  min-height: 1.25rem;
  font-size: 0.86rem;
  font-weight: 500;
}

.form-status.ok {
  color: #0f8e60;
}

.form-status.error {
  color: #c63a2f;
}

.copy-email-btn {
  margin-top: 0.4rem;
  border: 1px solid #cde0fb;
  background: #f2f8ff;
  color: #1c4f8d;
  border-radius: 999px;
  padding: 0.42rem 0.78rem;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.copy-email-btn:hover {
  transform: translateY(-1px);
  background: #e8f2ff;
  box-shadow: 0 8px 16px rgba(16, 64, 122, 0.14);
}

.copy-email-btn.copied {
  background: #e7fff3;
  border-color: #98d9bb;
  color: #0d7b4f;
}

.copy-email-btn.icon-only {
  width: 42px;
  height: 42px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.copy-icon {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.copy-success {
  display: none;
}

.copy-email-btn.icon-only.copied .copy-default {
  display: none;
}

.copy-email-btn.icon-only.copied .copy-success {
  display: block;
}

.email-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.email-inline .copy-email-btn {
  margin-top: 0;
}

/* dynamic reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.footer {
  margin-top: 1.2rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% -20%, rgba(108, 183, 255, 0.24), rgba(108, 183, 255, 0) 34%),
    radial-gradient(circle at 92% 120%, rgba(0, 179, 255, 0.2), rgba(0, 179, 255, 0) 36%),
    linear-gradient(100deg, #062955, #0a3d7d);
  color: #d9e8ff;
  padding: 2.2rem 0 1rem;
  border-top: 1px solid rgba(131, 178, 235, 0.28);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(
      135deg,
      rgba(170, 210, 255, 0.05) 0 14px,
      rgba(170, 210, 255, 0) 14px 30px
    );
  opacity: 0.45;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer a {
  color: #f3f9ff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 0.9fr 1.1fr;
  gap: 1rem 1.2rem;
  align-items: start;
}

.footer-col h3 {
  margin: 0 0 0.58rem;
  font-size: 0.96rem;
  color: #f0f7ff;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  margin-bottom: 0.6rem;
}

.footer-logo {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(173, 214, 255, 0.32);
}

.footer-brand span {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.15px;
}

.footer-col p {
  margin: 0 0 0.48rem;
  color: #d2e3fb;
  font-size: 0.9rem;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin-top: 0.36rem;
}

.footer-badges span {
  border: 1px solid rgba(153, 196, 244, 0.38);
  background: rgba(255, 255, 255, 0.09);
  color: #eef6ff;
  border-radius: 999px;
  padding: 0.24rem 0.58rem;
  font-size: 0.74rem;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.36rem;
}

.footer-links a {
  color: #d3e7ff;
  font-size: 0.9rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(2px);
}

.footer-contact-col p:last-child {
  margin-bottom: 0;
}

.footer-bottom {
  margin-top: 1.2rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(152, 195, 244, 0.25);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  color: #c1d8f6;
  font-size: 0.84rem;
}

.footer-bottom-links {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.footer-bottom-links a {
  border: 1px solid rgba(165, 204, 248, 0.34);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 0.28rem 0.6rem;
  font-size: 0.76rem;
  font-weight: 600;
  color: #ecf5ff;
}

.footer-bottom-links a:hover {
  background: rgba(255, 255, 255, 0.16);
}

body.dark-mode {
  --bg: #0a1220;
  --surface: #121f35;
  --surface-alt: #152742;
  --ink: #e8f1ff;
  --muted: #a7bddb;
  --border: #284367;
  --shadow: 0 14px 32px rgba(0, 0, 0, 0.32);
  background:
    radial-gradient(circle at 100% -10%, rgba(70, 133, 224, 0.22), transparent 30%),
    radial-gradient(circle at -10% 50%, rgba(0, 168, 255, 0.16), transparent 30%),
    #0a1220;
}

body.dark-mode::before { opacity: 0.34; }
body.dark-mode::after {
  background:
    radial-gradient(
      320px circle at var(--cursor-x) var(--cursor-y),
      rgba(132, 196, 255, 0.24),
      rgba(132, 196, 255, 0) 74%
    ),
    url("assets/ai-wave-bg.svg") center bottom / cover no-repeat;
  opacity: 0.32;
}

body.dark-mode .header {
  background: rgba(10, 18, 32, 0.88);
  border-bottom-color: #223d63;
}

body.dark-mode .header::after {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(114, 186, 255, 0.8), rgba(0, 0, 0, 0));
}

body.dark-mode .topbar {
  background: linear-gradient(90deg, #07162e, #0a2142);
}

body.dark-mode .brand-text,
body.dark-mode .nav a {
  color: #d6e6ff;
}

body.dark-mode .nav a {
  border-color: rgba(72, 108, 148, 0.54);
  background: linear-gradient(135deg, rgba(22, 44, 73, 0.66), rgba(18, 36, 59, 0.42));
  box-shadow:
    inset 0 1px 0 rgba(188, 220, 255, 0.12),
    0 2px 12px rgba(0, 0, 0, 0.28);
}

body.dark-mode .nav a::before {
  background: linear-gradient(180deg, rgba(173, 214, 255, 0.16), rgba(173, 214, 255, 0));
}

body.dark-mode .nav a:hover,
body.dark-mode .nav a.active {
  background: linear-gradient(135deg, rgba(43, 75, 114, 0.78), rgba(31, 61, 96, 0.64));
  border-color: rgba(102, 152, 216, 0.78);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(198, 224, 255, 0.2),
    0 10px 24px rgba(2, 18, 38, 0.45);
}

body.dark-mode .nav a.contact-cta,
body.dark-mode .nav a.contact-cta:hover,
body.dark-mode .nav a.contact-cta.active {
  background: linear-gradient(135deg, #ffb347, #ff8f1f);
  color: #fff;
  border-color: #ff9b2f;
  box-shadow:
    inset 0 1px 0 rgba(255, 242, 214, 0.58),
    0 10px 24px rgba(54, 27, 5, 0.5);
}

body.dark-mode .nav {
  background: rgba(14, 29, 50, 0.84);
  border-bottom-color: #2a456b;
}

body.dark-mode .footer {
  background:
    radial-gradient(circle at 10% -20%, rgba(96, 167, 255, 0.2), rgba(96, 167, 255, 0) 34%),
    radial-gradient(circle at 92% 120%, rgba(0, 166, 255, 0.17), rgba(0, 166, 255, 0) 36%),
    linear-gradient(100deg, #07182f, #0d2442);
  border-top-color: rgba(96, 143, 200, 0.3);
}

body.dark-mode .footer::before {
  opacity: 0.35;
}

body.dark-mode .footer-col p,
body.dark-mode .footer-links a {
  color: #b8cde9;
}

body.dark-mode .footer-links a:hover {
  color: #e6f2ff;
}

body.dark-mode .footer-badges span,
body.dark-mode .footer-bottom-links a {
  background: rgba(162, 206, 255, 0.08);
  border-color: rgba(115, 156, 202, 0.4);
}

body.dark-mode .footer-bottom {
  border-top-color: rgba(102, 146, 197, 0.34);
  color: #a7c0e0;
}

body.dark-mode .hero-stat,
body.dark-mode .highlight {
  background: #13223a;
  border-color: #2a4468;
  color: #cfe0fa;
}

body.dark-mode .theme-toggle {
  background: #142945;
  border-color: #2b4a74;
  color: #d8e8ff;
}

body.dark-mode .theme-toggle:hover {
  background: #1a355a;
}

body.dark-mode .theme-toggle:focus-visible {
  box-shadow: 0 0 0 3px rgba(84, 148, 255, 0.34);
}

body.dark-mode .slide-ribbon,
body.dark-mode .slide-track span {
  background: #122038;
  border-color: #2a4469;
  color: #d8e8ff;
}

body.dark-mode .segment-chip,
body.dark-mode .case-card,
body.dark-mode .clients-cta {
  background: linear-gradient(160deg, #13223b, #172a47);
  border-color: #2c476f;
  color: #d7e8ff;
}

body.dark-mode .case-metric {
  color: #9dd2ff;
}

body.dark-mode .section.alt {
  background: linear-gradient(180deg, #0f1a2e, #12233d);
  border-top-color: #233f65;
  border-bottom-color: #233f65;
}

body.dark-mode .founder-main,
body.dark-mode .founder-orientation {
  background: linear-gradient(160deg, #13223a, #172b47);
  border-color: #2b466d;
}

body.dark-mode .founder-photo-frame {
  background: linear-gradient(160deg, #172b47, #13253f);
  border-color: #2d4a73;
}

body.dark-mode .founder-orientation .highlight {
  background: linear-gradient(150deg, #152b49, #13253f);
  border-left-color: #62b4ff;
}

body.dark-mode .founder-badge {
  background: #1a3354;
  border-color: #365a82;
  color: #cfe4ff;
}

body.dark-mode .founder-role {
  color: #8ec8ff;
}

body.dark-mode .founder-skill-list li {
  background: rgba(22, 43, 71, 0.92);
  border-color: #365a82;
  color: #cfe4ff;
}

body.dark-mode .webto-case-form {
  background: linear-gradient(160deg, #13223b, #172a47);
  border-color: #2b466d;
}

body.dark-mode .case-bot-card {
  background: linear-gradient(160deg, #13223b, #172a47);
  border-color: #2b466d;
}

body.dark-mode .auravoice-toggle {
  background: linear-gradient(135deg, #1a73e7, #0b58b8);
  border-color: #2a7fe8;
  box-shadow: 0 14px 28px rgba(2, 20, 40, 0.5);
}

body.dark-mode .auravoice-toggle-dot {
  background: #90ffc4;
  box-shadow: 0 0 0 6px rgba(144, 255, 196, 0.18);
}

body.dark-mode .auravoice-toggle:hover {
  box-shadow: 0 18px 32px rgba(2, 20, 40, 0.6);
}

body.dark-mode .case-bot-status {
  background: #193355;
  border-color: #355981;
  color: #cfe4ff;
}

body.dark-mode .case-bot-progress-wrap {
  background: #12253f;
  border-color: #2f4f75;
}

body.dark-mode .case-bot-progress-text {
  color: #9ebbdc;
}

body.dark-mode .case-bot-chip {
  background: #162d4a;
  border-color: #35587f;
  color: #cfe4ff;
}

body.dark-mode .case-bot-chip:hover {
  background: #1c3a5f;
  border-color: #4770a0;
}

body.dark-mode .case-bot-messages {
  background: #101f35;
  border-color: #2e4a70;
}

body.dark-mode .case-bot-msg.bot {
  background: #142a46;
  border-color: #31537e;
  color: #d5e7ff;
}

body.dark-mode .case-bot-msg.summary {
  background: #132844;
  border-color: #345a86;
  color: #cfe5ff;
}

body.dark-mode .case-bot-msg.typing span {
  background: #8fbbef;
}

body.dark-mode .btn::after {
  background: linear-gradient(120deg, rgba(173, 216, 255, 0), rgba(173, 216, 255, 0.34), rgba(173, 216, 255, 0));
}

body.dark-mode .card::after,
body.dark-mode .kpi::after,
body.dark-mode .timeline-item::after,
body.dark-mode .contact-box::after,
body.dark-mode .client-chip::after,
body.dark-mode .proof-card::after,
body.dark-mode .case-card::after,
body.dark-mode .hero-mini-card::after,
body.dark-mode .home-kpi::after {
  background: linear-gradient(120deg, rgba(163, 211, 255, 0), rgba(163, 211, 255, 0.28), rgba(163, 211, 255, 0));
}

body.dark-mode .case-bot-close {
  background: #193355;
  border-color: #355981;
  color: #d5e8ff;
}

body.dark-mode .case-bot-close:hover {
  background: #214169;
  border-color: #4973a3;
}

body.dark-mode .case-bot-input {
  background: #0f1f36;
  border-color: #304c73;
  color: #d8e9ff;
}

body.dark-mode .case-bot-input:focus {
  border-color: #5b9de7;
  box-shadow: 0 0 0 3px rgba(91, 157, 231, 0.2);
}

body.dark-mode .form-group label {
  color: #b8d9ff;
}

body.dark-mode .form-group input,
body.dark-mode .form-group select,
body.dark-mode .form-group textarea {
  background: #0f1f36;
  border-color: #304c73;
  color: #d8e9ff;
}

body.dark-mode .form-group input:focus,
body.dark-mode .form-group select:focus,
body.dark-mode .form-group textarea:focus {
  border-color: #5b9de7;
  box-shadow: 0 0 0 3px rgba(91, 157, 231, 0.2);
}

body.dark-mode .form-help {
  color: #9eb8d9;
}

body.dark-mode .form-status.ok {
  color: #6fe3b7;
}

body.dark-mode .form-status.error {
  color: #ff8f86;
}

body.dark-mode .copy-email-btn {
  background: #142945;
  border-color: #2e4c76;
  color: #d7e9ff;
}

body.dark-mode .copy-email-btn:hover {
  background: #1a355a;
}

body.dark-mode .copy-email-btn.copied {
  background: #17392f;
  border-color: #2a7a60;
  color: #8df0c8;
}

body.dark-mode .skip-link {
  background: #17304f;
  border-color: #3f6592;
  color: #d5e8ff;
}

body.dark-mode .home-hero-wrap {
  background:
    linear-gradient(176deg, rgba(11, 23, 41, 0.82), rgba(14, 28, 49, 0.95)),
    radial-gradient(120% 95% at 12% 18%, rgba(58, 148, 255, 0.22), rgba(58, 148, 255, 0) 62%),
    radial-gradient(100% 92% at 78% 12%, rgba(0, 168, 255, 0.2), rgba(0, 168, 255, 0) 66%),
    radial-gradient(90% 88% at 68% 84%, rgba(96, 129, 255, 0.2), rgba(96, 129, 255, 0) 68%);
}

body.dark-mode .home-hero-wrap::before {
  background:
    radial-gradient(circle at 30% 28%, rgba(52, 142, 255, 0.42), rgba(52, 142, 255, 0) 60%),
    radial-gradient(circle at 72% 72%, rgba(33, 196, 255, 0.3), rgba(33, 196, 255, 0) 68%);
}

body.dark-mode .home-hero-wrap::after {
  opacity: 0.2;
  mix-blend-mode: overlay;
}

body.dark-mode .home-hero::before {
  background: radial-gradient(circle, rgba(51, 194, 255, 0.26), rgba(51, 194, 255, 0));
}

body.dark-mode .home-hero::after {
  background: radial-gradient(circle, rgba(103, 143, 255, 0.28), rgba(103, 143, 255, 0));
}

body.dark-mode .home-hero-left h1 {
  color: #ebf4ff;
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
  body.dark-mode .home-hero-left h1,
  body.dark-mode .page-header h1 {
    background-image: linear-gradient(125deg, #eaf4ff 8%, #8dc5ff 52%, #63d8ff 95%);
  }
}

body.dark-mode .hero-pill {
  background: linear-gradient(160deg, #142846, #182f4e);
  border-color: #325277;
  color: #cfe2ff;
}

body.dark-mode .home-kpi {
  background: linear-gradient(160deg, #13223b, #172a47);
  border-color: #2d486f;
}

body.dark-mode .home-kpi strong {
  color: #7cc0ff;
}

body.dark-mode .home-kpi span {
  color: #aec6e6;
}

body.dark-mode .hero-visual-frame {
  background: linear-gradient(165deg, #13233c, #172a47);
  border-color: #2f4b73;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.38);
}

body.dark-mode .hero-visual-frame::before {
  background:
    linear-gradient(115deg, rgba(18, 45, 82, 0.28), rgba(8, 58, 122, 0.32)),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.01) 0 10px,
      rgba(73, 123, 192, 0.11) 10px 20px
    );
}

body.dark-mode .hero-visual-frame::after {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(179, 225, 255, 0.35), rgba(255, 255, 255, 0));
}

body.dark-mode .hero-overlay-tag {
  background: rgba(9, 25, 46, 0.82);
  border-color: rgba(108, 166, 237, 0.78);
  color: #dcebff;
}

body.dark-mode .hero-mini-card,
body.dark-mode .home-service-card,
body.dark-mode .proof-card,
body.dark-mode .home-cta-band {
  background: linear-gradient(160deg, #13223b, #172a47);
  border-color: #2c486f;
  color: #d5e7ff;
}

body.dark-mode .home-video-card,
body.dark-mode .home-video-aside {
  background: linear-gradient(160deg, #13223b, #172a47);
  border-color: #2c486f;
  color: #d5e7ff;
}

body.dark-mode .home-video-frame {
  border-color: #33557f;
  background: linear-gradient(165deg, #0d1f39, #0a172b);
}

body.dark-mode .home-company-video {
  background: #0b1a30;
}

body.dark-mode .home-video-note {
  color: #abc5e6;
}

body.dark-mode .home-video-note code {
  background: #172d4b;
  border-color: #355a83;
  color: #d3e7ff;
}

body.dark-mode .home-video-point {
  background: rgba(20, 41, 69, 0.86);
  border-color: #355a82;
}

body.dark-mode .home-video-point span {
  background: linear-gradient(145deg, #1a3458, #132844);
  border-color: #3b628d;
  color: #8ec9ff;
}

body.dark-mode .home-video-point h4 {
  color: #d8e9ff;
}

body.dark-mode .home-video-point p {
  color: #afc8e7;
}

body.dark-mode .hero-mini-card p {
  color: #adc6e7;
}

body.dark-mode .stack-subtitle {
  color: #cde2ff;
}

body.dark-mode .mini-card-pill {
  background: #1b3354;
  border-color: #36597f;
  color: #cde4ff;
}

body.dark-mode .mini-feature-list span {
  background: rgba(18, 41, 70, 0.86);
  border-color: #34597f;
  color: #cce2ff;
}

body.dark-mode .mini-feature-list span::before {
  background: #62b4ff;
  box-shadow: 0 0 0 2px rgba(98, 180, 255, 0.2);
}

body.dark-mode .mini-kpi-strip div {
  background: #1a3253;
  border-color: #365a81;
}

body.dark-mode .mini-kpi-strip strong {
  color: #89ccff;
}

body.dark-mode .mini-kpi-strip span {
  color: #b8d1ec;
}

body.dark-mode .home-service-card::before {
  background: linear-gradient(90deg, #48a6ff, #00d0ff);
}

body.dark-mode .service-icon {
  background: linear-gradient(145deg, #182d49, #12243e);
  border-color: #325176;
  color: #8ec8ff;
}

body.dark-mode .proof-card strong {
  color: #7ec3ff;
}

@media (max-width: 980px) {
  .hero-grid,
  .grid-3,
  .kpi-wrap,
  .founder-grid,
  .home-proof-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .home-hero-left h1 {
    max-width: 18ch;
    font-size: clamp(2.1rem, 6vw, 3.3rem);
  }

  .home-hero-left p {
    max-width: 62ch;
  }

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

  .home-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .segment-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cofounder-contact-grid {
    grid-template-columns: 1fr;
  }

  .founder-main {
    grid-template-columns: 1fr;
  }

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

  .founder-photo-frame {
    max-width: 340px;
    margin: 0 auto;
  }

  .founder-photo-vertical {
    min-height: 0;
    aspect-ratio: 4 / 5;
    height: auto;
  }

  .founder-skill-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-list { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }

  .theme-toggle {
    margin-left: auto;
    min-width: 84px;
    padding-right: 0.45rem;
  }

  .toggle-label {
    min-width: 32px;
    font-size: 0.75rem;
  }

  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: rgba(255, 255, 255, 0.84);
    border-bottom: 1px solid #dbe8fb;
    padding: 0.75rem 1rem 1rem;
    backdrop-filter: blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
  }

  .nav.open { display: block; }
  .nav ul { flex-direction: column; gap: 0.25rem; }

  .hero-grid,
  .grid-3,
  .kpi-wrap,
  .founder-grid,
  .home-service-grid,
  .home-proof-grid {
    grid-template-columns: 1fr;
  }

  .segment-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }

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

  .case-bot-input-wrap {
    grid-template-columns: 1fr;
  }

  .case-bot-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .case-bot-close {
    align-self: flex-end;
    margin-left: 0;
    margin-top: 0.1rem;
  }

  .case-bot-status {
    align-self: flex-start;
  }

  .case-bot-messages {
    min-height: 165px;
  }

  .case-bot-actions .btn {
    flex: 1 1 auto;
    justify-content: center;
  }

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

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

  .home-hero-wrap {
    padding: 3.2rem 0 2.4rem;
  }

  .home-video-section {
    padding-bottom: 1.8rem;
  }

  .home-video-card,
  .home-video-aside {
    padding: 0.86rem;
  }

  .home-video-point {
    padding: 0.55rem 0.58rem;
  }

  .home-hero-wrap .container {
    width: min(1140px, 92vw);
  }

  .home-hero-left h1 {
    max-width: none;
    font-size: clamp(2rem, 9.4vw, 2.9rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
  }

  .home-hero-left p {
    max-width: 60ch;
    font-size: 0.98rem;
  }

  .home-kpi-row,
  .hero-visual-subgrid {
    grid-template-columns: 1fr;
  }

  .mini-feature-list {
    margin-top: 0.25rem;
  }

  .hero-mini-card-visual img {
    min-height: 136px;
  }

  .home-kpi-row {
    max-width: none;
  }

  .home-hero-right {
    gap: 0.62rem;
  }

  .auravoice-toggle {
    right: 12px;
    bottom: 12px;
    padding: 0.58rem 0.88rem;
  }

  .auravoice-widget {
    right: 12px;
    bottom: 62px;
    width: calc(100vw - 24px);
    max-height: 72vh;
  }

  .hero-banner img,
  .ai-image img,
  .hero-visual-frame img { height: 220px; min-height: 220px; }

  .home-cta-band {
    padding: 1.2rem 1rem;
  }

  .founder-photo-frame {
    max-width: 100%;
    margin: 0;
  }

  .founder-skill-list {
    grid-template-columns: 1fr;
  }
}
