

#cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle at center,
    rgba(0, 229, 192, 0.07) 0%,
    rgba(0, 229, 192, 0.02) 35%,
    transparent 65%);
  pointer-events: none;
  z-index: 1;
  will-change: transform;
  transition: opacity 300ms ease;
}

.glass-card::before,
.glass-card-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    600px circle at var(--glow-x, -999px) var(--glow-y, -999px),
    rgba(0, 229, 192, 0.12) 0%,
    transparent 40%
  );
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 300ms ease;
}
.glass-card:hover::before,
.glass-card-featured:hover::before {
  opacity: 1;
}

.glass-card::after,
.glass-card-featured::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(
    400px circle at var(--glow-x, -999px) var(--glow-y, -999px),
    rgba(0, 229, 192, 0.35) 0%,
    transparent 40%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 300ms ease;
}
.glass-card:hover::after,
.glass-card-featured:hover::after {
  opacity: 1;
}

.glass-card,
.glass-card-featured {
  position: relative;
  overflow: hidden;
}

#neural-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.6;
}

@media (prefers-reduced-motion: reduce) {
  #cursor-glow,
  #neural-canvas { display: none !important; }
  .glass-card::before,
  .glass-card::after,
  .glass-card-featured::before,
  .glass-card-featured::after { display: none !important; }
}

:root {
  --color-void:      #0A0A0A;
  --color-cyan:      #00E5C0;
  --color-ghost:     #F0EFF4;
  --color-graphite:  #141414;
  --color-cyan-dim:  rgba(0, 229, 192, 0.125);
  --color-cyan-mid:  rgba(0, 229, 192, 0.4);
  --ease-spring:     cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.glass-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1.5rem;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: transform 220ms ease, border-color 220ms ease,
              box-shadow 220ms ease, background 220ms ease;
}
.glass-card:hover {
  transform: translateY(-4px);
  background: rgba(0, 229, 192, 0.06);
  border-color: rgba(0, 229, 192, 0.28);
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.35),
    0 0 32px rgba(0, 229, 192, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.glass-card-featured {
  background: rgba(0, 229, 192, 0.12);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border: 1px solid rgba(0, 229, 192, 0.35);
  border-radius: 2rem;
  box-shadow:
    0 4px 40px rgba(0, 229, 192, 0.15),
    0 0 80px rgba(0, 229, 192, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 220ms ease, border-color 220ms ease,
              box-shadow 220ms ease, background 220ms ease;
}
.glass-card-featured:hover {
  transform: translateY(-4px);
  background: rgba(0, 229, 192, 0.18);
  border-color: rgba(0, 229, 192, 0.5);
  box-shadow:
    0 12px 60px rgba(0, 229, 192, 0.25),
    0 0 100px rgba(0, 229, 192, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
  overflow-x: clip;
}

body {
  background: var(--color-void);
  color: var(--color-ghost);
  font-family: 'Sora', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img,
picture {
  max-width: 100%;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 400px 400px;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #050505; }
::-webkit-scrollbar-thumb { background: rgba(0,229,192,0.25); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,229,192,0.5); }

.font-mono  { font-family: 'Fira Code', monospace; }
.font-serif { font-family: 'Instrument Serif', serif; font-style: italic; }
.font-sora  { font-family: 'Sora', sans-serif; }
.text-cyan  { color: var(--color-cyan); }
.text-ghost { color: var(--color-ghost); }

#navbar {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 1.5rem;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  width: min(960px, calc(100% - 3rem));
  transition: background 500ms ease, border 500ms ease, backdrop-filter 500ms ease, box-shadow 500ms ease;
  border: 1px solid transparent;
}

#navbar.morphed {
  background: rgba(20, 20, 20, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-color: rgba(0, 229, 192, 0.2);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

#navbar.morphed .nav-logo-img {
  filter: drop-shadow(0 0 4px rgba(0,229,192,0.2));
}

.nav-links { display: flex; align-items: center; gap: 1.25rem; }
.nav-links a {
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  color: rgba(240,239,244,0.65);
  text-decoration: none;
  white-space: nowrap;
  transition: color 200ms ease, transform 200ms ease;
}
.nav-links a:hover,
.nav-links a.nav-active { color: var(--color-cyan); transform: translateY(-1px); }
#mobile-drawer a.nav-active { color: var(--color-cyan); }

.nav-brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 80px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 300ms ease, opacity 300ms ease;
}
.nav-brand:hover .nav-logo-img {
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(0,229,192,0.4));
}

.nav-cta {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: #0A0A0A;
  background: var(--color-cyan);
  padding: 0.6rem 1.3rem;
  border-radius: 9999px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 300ms var(--ease-smooth), box-shadow 300ms ease;
}
.nav-cta:hover { transform: scale(1.04); box-shadow: 0 0 20px rgba(0,229,192,0.4); }

#menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-ghost);
  padding: 0.4rem;
  display: none;
  position: relative;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 200ms ease, box-shadow 200ms ease, color 200ms ease;
}
#menu-toggle .icon-hamburger { display: block; }
#menu-toggle .icon-close    { display: none; }
#menu-toggle.is-open .icon-hamburger { display: none; }
#menu-toggle.is-open .icon-close    { display: block; }
#menu-toggle.is-open {
  color: var(--color-cyan);
  background: rgba(0,229,192,0.1);
  box-shadow: 0 0 0 1px rgba(0,229,192,0.35), 0 0 14px rgba(0,229,192,0.3);
}
@media (max-width: 767px) { #menu-toggle { display: flex; } .nav-links, .nav-cta { display: none; } }

#mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 9rem;
  gap: 2rem;
  transform: translateY(-100%);
  transition: transform 500ms var(--ease-smooth);
}
#mobile-drawer.open { transform: translateY(0); }
#mobile-drawer a {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--color-ghost);
  text-decoration: none;
  transition: color 200ms ease;
}
#mobile-drawer a:hover { color: var(--color-cyan); }
#mobile-drawer .drawer-cta {
  font-size: 0.95rem;
  color: #0A0A0A;
  background: var(--color-cyan);
  padding: 0.75rem 2rem;
  border-radius: 9999px;
}

#hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 6rem;
  padding-bottom: 6rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  #hero {
    justify-content: flex-start;
    padding-top: 8.5rem;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 2rem 0 3rem;
}
@media (min-width: 768px) { .hero-content { padding: 0 4rem 0 5rem; } }

.hero-label {
  font-family: 'Fira Code', monospace;
  font-size: 0.85rem;
  color: var(--color-cyan);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-line1 {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  color: var(--color-ghost);
  line-height: 1;
  margin-bottom: 0.15em;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  letter-spacing: -0.04em;
}

.hero-line2 {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--color-ghost);
  line-height: 0.9;
  font-size: clamp(4rem, 11vw, 10.5rem);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.hero-sub {
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  color: rgba(240,239,244,0.8);
  max-width: 540px;
  margin-top: 2rem;
  line-height: 1.75;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
}

.hero-cta-wrap {
  margin-top: 2.5rem;
}

.js.gsap-ready .hero-label,
.js.gsap-ready .hero-line1,
.js.gsap-ready .hero-line2,
.js.gsap-ready .hero-sub,
.js.gsap-ready .hero-cta-wrap { opacity: 0; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: #0A0A0A;
  background: var(--color-cyan);
  padding: 1rem 2rem;
  border-radius: 9999px;
  text-decoration: none;
  font-size: 1rem;
  transition: transform 300ms var(--ease-smooth), box-shadow 300ms ease;
}
.btn-primary:hover { transform: scale(1.03); box-shadow: 0 0 40px rgba(0,229,192,0.45); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: var(--color-cyan);
  border: 1px solid var(--color-cyan);
  padding: 0.875rem 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 250ms ease, color 250ms ease, transform 250ms ease;
}
.btn-outline:hover { background: var(--color-cyan); color: #0A0A0A; transform: translateY(-2px); }

#scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-cyan);
  opacity: 0;
  transition: opacity 500ms ease;
}
#scroll-indicator { gap: 0.1rem; }
.scroll-chevron {
  opacity: 0;
  animation: chevron-cascade 1.8s ease-in-out infinite;
}
.scroll-chevron:nth-child(1) { animation-delay: 0s; }
.scroll-chevron:nth-child(2) { animation-delay: 0.25s; }
.scroll-chevron:nth-child(3) { animation-delay: 0.5s; }
@keyframes chevron-cascade {
  0%, 40%, 100% { opacity: 0; transform: translateY(-4px); }
  20%            { opacity: 1; transform: translateY(0); }
}

.section-label {
  font-family: 'Fira Code', monospace;
  font-size: 0.85rem;
  color: var(--color-cyan);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: var(--color-ghost);
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

#features { padding: 4rem 2rem; max-width: 1200px; margin: 0 auto; }
@media (min-width: 768px) { #features { padding: 4rem 4rem; } }

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {

  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.js .feature-card { opacity: 0; transform: translateY(30px); }
.feature-card.visible { opacity: 1; transform: translateY(0); }
.feature-card.visible:hover { transform: translateY(-4px); }

.card-heading {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--color-ghost);
}
.card-desc {
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  color: rgba(240,239,244,0.7);
  line-height: 1.7;
}

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

.service-card {

  align-items: center;
  text-align: center;
  gap: 1rem;
}
.service-card.visible:hover { transform: translateY(-4px); }

.service-card .card-desc {
  text-align: center;
}

.service-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 0.85rem;
  background: rgba(0, 229, 192, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cyan);
  flex-shrink: 0;
}

.service-num {
  font-family: 'Fira Code', monospace;
  font-size: 0.75rem;
  color: rgba(0, 229, 192, 0.45);
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}

.service-card .card-heading {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.service-card .card-desc {
  line-height: 1.75;
  flex: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-family: 'Fira Code', monospace;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-cyan);
  letter-spacing: 0.06em;
  text-decoration: none;
  align-self: center;
  transition: color 200ms ease, transform 200ms ease;
}
.service-card:hover .service-card-link { transform: translateX(3px); opacity: 0.85; }

a.service-card {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.shuffle-widget {
  position: relative;
  height: 160px;
  overflow: visible;
}

.shuffle-item {
  position: absolute;
  left: 0;
  right: 0;
  height: 50px;
  border-radius: 0.875rem;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(0,229,192,0.15);
  transition: transform 700ms var(--ease-spring),
              opacity 700ms ease,
              background 700ms ease,
              border-color 700ms ease;
}
.shuffle-item[data-pos="0"] {
  transform: translateY(0px);
  opacity: 1;
  background: rgba(0,229,192,0.08);
  border-color: rgba(0,229,192,0.5);
  z-index: 3;
}
.shuffle-item[data-pos="1"] {
  transform: translateY(58px);
  opacity: 0.6;
  z-index: 2;
}
.shuffle-item[data-pos="2"] {
  transform: translateY(108px);
  opacity: 0.3;
  z-index: 1;
}

.shuffle-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  transition: background 700ms ease;
}
.shuffle-item[data-pos="0"] .shuffle-dot { background: var(--color-cyan); box-shadow: 0 0 8px var(--color-cyan); }
.shuffle-item[data-pos="1"] .shuffle-dot { background: rgba(0,229,192,0.4); }
.shuffle-item[data-pos="2"] .shuffle-dot { background: rgba(0,229,192,0.2); }

.shuffle-label {
  font-family: 'Fira Code', monospace;
  font-size: 0.78rem;
  transition: color 700ms ease;
}
.shuffle-item[data-pos="0"] .shuffle-label { color: var(--color-cyan); }
.shuffle-item[data-pos="1"] .shuffle-label { color: rgba(240,239,244,0.68); }
.shuffle-item[data-pos="2"] .shuffle-label { color: rgba(240,239,244,0.68); }

.terminal-widget {
  background: #070707;
  border: 1px solid rgba(0,229,192,0.25);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,229,192,0.06);
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(0,229,192,0.1);
}

.terminal-dots { display: flex; gap: 6px; }
.terminal-dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red   { background: rgba(255, 95, 87, 0.7); }
.dot-amber { background: rgba(255, 189, 46, 0.7); }
.dot-green { background: rgba(40, 200, 64, 0.7); }

.live-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 0.75rem;
}
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; animation: pulse-live 1.5s ease-in-out infinite; }
@keyframes pulse-live { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }
.live-text { font-family: 'Fira Code', monospace; font-size: 0.75rem; color: #4ade80; letter-spacing: 0.2em; }

.terminal-body {
  padding: 1rem;
  height: 130px;
  overflow: hidden;
  position: relative;
}
#typewriter-output {
  font-family: 'Fira Code', monospace;
  font-size: 0.75rem;
  color: var(--color-cyan);
  line-height: 1.8;
}
#typewriter-output .line { display: block; }
#typewriter-output .current-line { display: inline; }

.cursor-blink {
  display: inline-block;
  width: 7px;
  height: 13px;
  background: var(--color-cyan);
  vertical-align: middle;
  margin-left: 2px;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.calendar-widget {
  background: #070707;
  border: 1px solid rgba(0,229,192,0.25);
  border-radius: 1rem;
  padding: 1rem;
  position: relative;
  box-shadow: 0 0 20px rgba(0,229,192,0.06);
}

.cal-month-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  font-family: 'Fira Code', monospace;
  font-size: 0.75rem;
  color: var(--color-cyan);
  letter-spacing: 0.2em;
}

.cal-nav-btn {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(240,239,244,0.15);
  background: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: rgba(240,239,244,0.68);
  transition: border-color 200ms ease, color 200ms ease;
}
.cal-nav-btn:hover { border-color: var(--color-cyan); color: var(--color-cyan); }

.cal-day-headers {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  margin-bottom: 4px;
  text-align: center;
}
.cal-day-header {
  font-family: 'Fira Code', monospace;
  font-size: 0.75rem;
  color: rgba(240,239,244,0.68);
  padding: 2px;
}

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

.cal-cell {
  aspect-ratio: 1;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fira Code', monospace;
  font-size: 0.65rem;
  color: rgba(240,239,244,0.68);
  background: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 250ms ease;
}
.cal-cell.empty { pointer-events: none; }
.cal-cell:not(.empty):hover { background: rgba(0,229,192,0.08); color: var(--color-cyan); }
.cal-cell.highlighted {
  background: var(--color-cyan);
  color: #0A0A0A;
  font-weight: 600;
  box-shadow: 0 0 12px rgba(0,229,192,0.5);
}
.cal-cell.today-marker {
  border-color: rgba(0,229,192,0.4);
  color: var(--color-cyan);
}

.cal-save-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.75rem;
}
.cal-save-btn {
  font-family: 'Fira Code', monospace;
  font-size: 0.75rem;
  color: #0A0A0A;
  background: rgba(0,229,192,0.85);
  border: none;
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease;
  letter-spacing: 0.05em;
}
.cal-save-btn.clicked { transform: scale(0.92); box-shadow: 0 0 16px rgba(0,229,192,0.6); }

#cal-cursor {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  display: none;
  filter: drop-shadow(0 0 5px rgba(0,229,192,0.8));
  z-index: 10;
}

#philosophy {
  position: relative;
  padding: 4rem 2rem;
  overflow: hidden;
}
@media (min-width: 768px) { #philosophy { padding: 5rem 5rem; } }

#philosophy-bg {
  position: absolute;
  inset: 0;
  opacity: 0.07;
}
#philosophy-bg img { width: 100%; height: 100%; object-fit: cover; }

.philosophy-content { position: relative; z-index: 10; max-width: 1100px; }

.philosophy-contrast {
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  color: rgba(240,239,244,0.65);
  font-size: 1rem;
  margin-bottom: 3rem;
}
.philosophy-contrast em {
  display: block;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(2rem, 5.5vw, 5rem);
  color: var(--color-ghost);
  line-height: 1.15;
  margin-top: 0.5rem;
}

.philosophy-we { font-family: 'Sora', sans-serif; font-weight: 400; color: rgba(240,239,244,0.65); font-size: 1.05rem; margin-bottom: 0.5rem; }

.philosophy-quote {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--color-ghost);
  line-height: 1.15;
  font-size: clamp(2rem, 5.5vw, 5rem);
}
.js .philosophy-quote { opacity: 0; transform: translateY(30px); }
.philosophy-quote .accent { color: var(--color-cyan); }
.philosophy-contrast em .accent { color: var(--color-cyan); }
.philosophy-quote.visible { opacity: 1; transform: translateY(0); transition: opacity 0.9s ease, transform 0.9s ease; }

.stats-row {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 640px) { .stats-row { grid-template-columns: repeat(3, 1fr); padding: 0 4rem; } }

.stat-item { transition: opacity 0.7s ease, transform 0.7s ease; flex: 1; text-align: center; }
.js .stat-item { opacity: 0; transform: translateY(20px); }
.stat-item.visible { opacity: 1; transform: translateY(0); }
.stat-value {
  font-family: 'Fira Code', monospace;
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: var(--color-cyan);
  font-weight: 500;
  line-height: 1;
}
.stat-label {
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  color: rgba(240,239,244,0.65);
  font-size: 0.95rem;
  margin-top: 0.75rem;
  line-height: 1.5;
}

#protocol { position: relative; z-index: 10; }

.protocol-header {
  text-align: center;
  padding: 3rem 2rem 0.5rem;
}

.protocol-card {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  will-change: transform, filter, opacity;
  overflow: hidden;
}
@media (min-width: 768px) { .protocol-card { padding: 2.5rem 4rem 4rem; min-height: auto; align-items: flex-start; } }

.protocol-card-bg {
  position: absolute;
  inset: 0;
  opacity: 0.18;
}
.protocol-card-bg img { width: 100%; height: 100%; object-fit: cover; }
.protocol-card-bg-overlay {
  position: absolute;
  inset: 0;
}

.protocol-inner {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  max-width: 1000px;
  width: 100%;
  align-items: center;
}
@media (min-width: 768px) { .protocol-inner { grid-template-columns: 1fr 1fr; } }

.protocol-step {
  font-family: 'Fira Code', monospace;
  font-size: clamp(4rem, 10vw, 8rem);
  color: var(--color-cyan);
  font-weight: 500;
  opacity: 0.65;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.protocol-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: var(--color-ghost);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.protocol-desc {
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  color: rgba(240,239,244,0.72);
  font-size: 1.1rem;
  line-height: 1.75;
}

.protocol-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

#helix-svg { filter: drop-shadow(0 0 10px rgba(0,229,192,0.3)); }

#laser-grid-container {
  position: relative;
  width: 252px;
  height: 180px;
}
.grid-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(240,239,244,0.15);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.grid-dot.lit {
  background: var(--color-cyan);
  box-shadow: 0 0 8px var(--color-cyan), 0 0 4px var(--color-cyan);
}
#laser-beam {
  position: absolute;
  top: 0;
  left: 0;
  width: 1.5px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--color-cyan), transparent);
  box-shadow: 0 0 8px var(--color-cyan);
  opacity: 0.8;
}

#ekg-svg { filter: drop-shadow(0 0 6px rgba(0,229,192,0.4)); }
#ekg-path {
  stroke-dasharray: 650;
  stroke-dashoffset: 650;
  animation: ekg-draw 2.8s ease-in-out infinite;
}
@keyframes ekg-draw {
  0%   { stroke-dashoffset: 650; opacity: 1; }
  55%  { stroke-dashoffset: 0;   opacity: 1; }
  75%  { stroke-dashoffset: 0;   opacity: 0.8; }
  85%  { stroke-dashoffset: 0;   opacity: 0.3; }
  95%  { stroke-dashoffset: 0;   opacity: 0; }
  100% { stroke-dashoffset: 650; opacity: 0; }
}

#why-partner {
  padding: 4rem 2rem;
}
@media (min-width: 768px) { #why-partner { padding: 4rem 4rem; } }

.why-partner-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
@media (min-width: 900px) {
  .why-partner-inner { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.why-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: var(--color-ghost);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 1rem 0 1.75rem;
}

.why-intro {
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  color: rgba(240,239,244,0.72);
  font-size: 1rem;
  line-height: 1.8;
}

.why-partner-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(240,239,244,0.07);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js .why-item { opacity: 0; transform: translateX(20px); }
.why-item:first-child { padding-top: 0; }
.why-item:last-child  { border-bottom: none; padding-bottom: 0; }
.why-item.visible     { opacity: 1; transform: translateX(0); }

.why-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 1rem;
  background: rgba(0, 229, 192, 0.06);
  border: 1px solid rgba(0, 229, 192, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cyan);
  flex-shrink: 0;
  transition: background 300ms ease, border-color 300ms ease;
}
.why-item:hover .why-icon-wrap {
  background: rgba(0, 229, 192, 0.1);
  border-color: rgba(0, 229, 192, 0.4);
}

.why-item-title {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  color: var(--color-ghost);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.why-item-desc {
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  color: rgba(240,239,244,0.72);
  font-size: 1rem;
  line-height: 1.75;
}

#social-proof { padding: 7rem 0 4rem; overflow: hidden; }

.marquee-outer { position: relative; overflow: hidden; }
.marquee-fade-l, .marquee-fade-r {
  position: absolute;
  top: 0;
  height: 100%;
  width: 8rem;
  z-index: 10;
  pointer-events: none;
}
.marquee-fade-l { left: 0; background: linear-gradient(to right, #0A0A0A, transparent); }
.marquee-fade-r { right: 0; background: linear-gradient(to left, #0A0A0A, transparent); }

.marquee-track {
  display: flex;
  gap: 4rem;
  width: max-content;
  padding: 1.5rem 0;
  animation: marquee 30s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  font-family: 'Fira Code', monospace;
  font-size: 0.85rem;
  color: rgba(240,239,244,0.68);
  white-space: nowrap;
  letter-spacing: 0.08em;
}
.marquee-separator {
  font-family: 'Fira Code', monospace;
  color: rgba(0,229,192,0.3);
  font-size: 0.85rem;
}

.testimonials-grid {
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
  padding: 1.5rem 1.5rem 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.testimonials-grid::-webkit-scrollbar { display: none; }
.testimonials-grid .testimonial-card {
  flex: 0 0 82vw;
  max-width: 340px;
  scroll-snap-align: start;
}
@media (min-width: 768px) {
  .testimonials-grid { padding: 2rem 4rem 1.5rem; }
  .testimonials-grid .testimonial-card { flex: 0 0 44vw; max-width: 420px; }
}
@media (min-width: 1100px) {
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow-x: visible;
    padding: 4rem 4rem 0;
  }
  .testimonials-grid .testimonial-card { flex: unset; max-width: unset; }
}

.testimonial-card {

  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.js .testimonial-card { opacity: 0; transform: translateY(20px); }
.testimonial-card.visible { opacity: 1; transform: translateY(0); }

.testimonial-quote {
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--color-cyan);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.testimonial-attr {
  font-family: 'Sora', sans-serif;
  font-size: 0.8rem;
  color: rgba(240,239,244,0.7);
  letter-spacing: 0.02em;
  padding: 0;
  background: none;
  border-radius: 0;
  margin-top: auto;
}

#pricing { padding: 4rem 2rem; }
@media (min-width: 768px) { #pricing { padding: 4rem 4rem; } }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 2.5rem auto 0;
  align-items: stretch;
}
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.pricing-card {

  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.js .pricing-card { opacity: 0; transform: translateY(30px); }
.pricing-card.visible { opacity: 1; transform: translateY(0); }

.pricing-card-featured {

  background: var(--color-cyan);
  border-radius: 2rem;
  padding: 4rem 2rem;
  margin-top: -2rem;
  margin-bottom: -2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 0 80px rgba(0,229,192,0.3);
  transition: transform 300ms ease, box-shadow 300ms ease, opacity 0.7s ease;
  position: relative;
  z-index: 2;
}
.js .pricing-card-featured { opacity: 0; }
.pricing-card-featured:hover { transform: translateY(-4px); box-shadow: 0 12px 80px rgba(0,229,192,0.4); z-index: 10; }
.pricing-card-featured.visible { opacity: 1; }

.pricing-tier-label {
  font-family: 'Fira Code', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  text-align: center;
}
.pricing-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 0.25rem;
  text-align: center;
}
.pricing-promise {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1rem;
  opacity: 0.55;
  text-align: center;
}
.pricing-price {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  text-align: center;
}
.pricing-price .accent { color: var(--color-cyan); }
.pricing-price .light { font-weight: 300; font-size: 0.9rem; opacity: 0.4; }

.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; padding: 0; }
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.5;
}
.pricing-feature svg { flex-shrink: 0; margin-top: 2px; }

.tooltip-container {
  display: inline-flex;
  align-items: center;
  position: relative;
  cursor: help;
  margin-left: auto;
}
.tooltip-container svg {
  opacity: 0.5;
  transition: opacity 0.2s;
}
.tooltip-container:hover svg { opacity: 1; }
.tooltip-content {
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%);
  background: #1C1C1C;
  color: #F0EFF4;
  padding: 6px 12px;
  border-radius: 6px;
  font-family: 'Sora', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 20;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.05);
}
.tooltip-container:hover .tooltip-content {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}
.tooltip-content::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: #1C1C1C transparent transparent transparent;
}

@media (max-width: 767px) {
  .tooltip-content {
    left: auto;
    right: 0;
    transform: translateX(0);
    max-width: calc(100vw - 3rem);
    white-space: normal;
  }
  .tooltip-container:hover .tooltip-content {
    transform: translateX(0) translateY(-2px);
  }
  .tooltip-content::after {
    left: auto;
    right: 6px;
    transform: translateX(0);
  }
}

.pricing-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fira Code', monospace;
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(10,10,10,0.15);
  color: rgba(10,10,10,0.6);
  text-align: center;
}

#tech-stack {
  padding: 4rem 2rem;
}
@media (min-width: 768px) { #tech-stack { padding: 4rem 4rem; } }

.tech-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}
@media (min-width: 900px) {
  .tech-inner { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

.tech-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: var(--color-ghost);
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 1rem 0 1.5rem;
}

.tech-desc {
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  color: rgba(240,239,244,0.72);
  font-size: 1rem;
  line-height: 1.8;
}

.tech-logos {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.tech-logo-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.js .tech-logo-item { opacity: 0; transform: translateX(20px); }
.tech-logo-item.visible { opacity: 1; transform: translateX(0); }

.brand-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.brand-img {
  height: 36px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}

.brand-google {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  letter-spacing: -0.02em;
  line-height: 1;
}

.brand-openai {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 2.4rem;
  color: #fff;
  letter-spacing: -0.02em;
}

.brand-n8n {
  font-family: 'Fira Code', monospace;
  font-weight: 500;
  font-size: 2.4rem;
  color: #FF6B9D;
  letter-spacing: -0.02em;
}

.brand-make {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: #9B59B6;
  letter-spacing: -0.02em;
  font-style: italic;
}

.brand-zapier {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: #FF4A00;
  letter-spacing: -0.02em;
}

#contact-section {
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
}

.cta-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: var(--color-ghost);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.cta-title em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
}
.cta-sub {
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  color: rgba(240,239,244,0.7);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}
.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: #0A0A0A;
  background: var(--color-cyan);
  padding: 1.2rem 2.5rem;
  border-radius: 9999px;
  text-decoration: none;
  font-size: 1.05rem;
  transition: transform 300ms var(--ease-smooth), box-shadow 300ms ease;
}
.btn-primary-lg:hover { transform: scale(1.04); box-shadow: 0 0 60px rgba(0,229,192,0.5); }

footer {
  background: #0A0A0A;
  border-radius: 4rem 4rem 0 0;
  padding: 4rem 2rem 2.5rem;
}
@media (min-width: 768px) { footer { padding: 4rem 4rem 2.5rem; } }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

.footer-brand-logo { margin-bottom: 1rem; }
.footer-logo-img {
  height: 110px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.footer-tagline { font-family: 'Sora', sans-serif; font-weight: 400; font-size: 0.95rem; color: rgba(240,239,244,0.65); line-height: 1.6; text-align: center; max-width: 260px; margin-left: auto; margin-right: auto; }

.system-badge { display: flex; align-items: center; gap: 0.5rem; margin-top: 1.5rem; }
.system-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; animation: pulse-live 2s ease-in-out infinite; }
.system-label { font-family: 'Fira Code', monospace; font-size: 0.75rem; color: #4ade80; letter-spacing: 0.2em; }

.footer-col-label { font-family: 'Fira Code', monospace; font-size: 0.75rem; color: var(--color-cyan); letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 1.5rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { font-family: 'Sora', sans-serif; font-weight: 400; font-size: 0.95rem; color: rgba(240,239,244,0.65); text-decoration: none; transition: color 200ms ease; }
.footer-links a:hover { color: var(--color-ghost); }

.social-links { display: flex; gap: 1rem; margin-top: 1.5rem; }
.social-link { color: rgba(240,239,244,0.68); transition: color 200ms ease, transform 200ms ease; }
.social-link:hover { color: var(--color-cyan); transform: translateY(-2px); }

.footer-bottom {
  border-top: 1px solid rgba(240,239,244,0.06);
  padding-top: 2rem;
  text-align: center;
  font-family: 'Fira Code', monospace;
  font-size: 0.75rem;
  color: rgba(240,239,244,0.68);
  letter-spacing: 0.05em;
}
.footer-bottom a {
  color: inherit;
  text-decoration: none;
  transition: color 200ms ease;
}
.footer-bottom a:hover {
  color: var(--color-cyan);
}

@media (max-width: 767px) {

#navbar {
    top: 1rem;
    padding: 0.5rem 1rem;
    gap: 1rem;
  }
  .nav-logo-img { height: 68px; }

#hero {
    justify-content: flex-start;
    padding-top: 7.5rem;
    padding-bottom: 1rem;
    min-height: auto;
  }
  .hero-content {
    padding: 0 1.5rem;
    text-align: center;
    align-items: center;
  }
  .hero-line1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-line2 { font-size: clamp(2.8rem, 14vw, 5rem); }
  .hero-sub   { font-size: 0.9rem; margin-top: 1.25rem; }
  .hero-cta-wrap { margin-top: 1.75rem; }
  .btn-primary {
    font-size: 0.9rem;
    padding: 0.875rem 1.5rem;
    width: 100%;
    justify-content: center;
  }

#scroll-indicator { display: none; }

#features      { padding: 3rem 1.25rem; }
  #philosophy    { padding: 3.5rem 1.25rem; }
  #why-partner   { padding: 3rem 1.25rem 2rem; }
  #social-proof  { padding: 2rem 0; }
  #pricing       { padding: 3.5rem 1.25rem; }
  #tech-stack    { padding: 3.5rem 1.25rem; }
  #contact-section { padding: 3.5rem 1.25rem; }

.section-label,
  .section-title { text-align: center; }

.features-grid { margin-top: 2rem; gap: 1rem; }

.philosophy-contrast { margin-bottom: 1.5rem; text-align: center; }
  .philosophy-we { text-align: center; }
  .philosophy-quote { font-size: clamp(1.6rem, 7vw, 2.5rem); text-align: center; }
  .stats-row { margin-top: 2rem; gap: 1.5rem; justify-content: center; flex-direction: column; align-items: center; }
  .stat-item { align-items: center; text-align: center; width: 100%; }
  .stat-value { font-size: clamp(2.5rem, 10vw, 4rem); }

.protocol-header { padding: 3rem 1.25rem 1.5rem; text-align: center; }
  .protocol-card   {
    min-height: auto !important;
    padding: 3rem 1.25rem 2.5rem;
    position: static !important;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
    will-change: auto !important;
  }
  .protocol-inner  { gap: 2rem; }
  .protocol-step   { font-size: clamp(3rem, 12vw, 5rem); margin-bottom: 0.75rem; text-align: center; }
  .protocol-title  { font-size: clamp(1.5rem, 6vw, 2rem); text-align: center; }
  .protocol-desc   { text-align: center; }
  .protocol-visual { min-height: auto; padding: 1rem 0; }

  #ekg-svg   { width: 100%; max-width: 240px; display: block; margin: 0 auto; }
  #helix-svg { display: block; margin: 0 auto; }
  .protocol-visual { display: flex; justify-content: center; align-items: center; }

.testimonial-card { padding: 1.5rem; }
  .testimonial-quote { margin-bottom: 1rem; }

.pricing-card-featured {
    transform: none;
    margin-top: 0;
    margin-bottom: 0;
    padding: 2rem;
  }
  .pricing-popular-badge {
    margin-top: 0 !important;
    margin-bottom: 0.75rem !important;
  }
  .pricing-card-featured:hover {
    transform: translateY(-4px);
  }
  .pricing-card-featured.visible { transform: none; }

.why-partner-left { text-align: center; }
  .why-title,
  .why-intro { text-align: center; }
  .why-item {
    gap: 1rem;
    padding: 1.5rem 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .why-item-title,
  .why-item-desc { text-align: center; }
  .why-icon-wrap { width: 48px; height: 48px; flex-shrink: 0; }

.tech-left { text-align: center; }
  .tech-title,
  .tech-desc { text-align: center; }

.brand-google { font-size: 2rem; }
  .brand-openai,
  .brand-n8n,
  .brand-make,
  .brand-zapier { font-size: 1.8rem; }

.testimonials-grid { padding: 3rem 1.25rem 0; }
  .testimonial-quote { font-size: 1rem; }

.cta-title { font-size: clamp(1.8rem, 7vw, 2.5rem); text-align: center; }
  .btn-primary-lg {
    font-size: 0.95rem;
    padding: 1rem 1.75rem;
    width: 100%;
    justify-content: center;
  }

  #contact-section [aria-hidden="true"][style*="600px"] {
    width: 90vw !important;
    height: 90vw !important;
  }

footer {
    border-radius: 2rem 2rem 0 0;
    padding: 3.5rem 1.25rem 2rem;
  }
  .footer-logo-img { height: 80px; display: block; margin: 0 auto; }
  .footer-grid { gap: 2rem; margin-bottom: 2.5rem; }
  .footer-tagline { text-align: center; }
  .footer-col { text-align: center; }
  .footer-col-label { text-align: center; }
  .footer-links { align-items: center; }
  .social-links { justify-content: center; }
  .footer-bottom { flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .feature-card, .testimonial-card, .pricing-card, .pricing-card-featured,
  .stat-item, .philosophy-quote { opacity: 1 !important; transform: none !important; }
  #ekg-path { stroke-dashoffset: 0 !important; animation: none !important; }
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.site-grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.site-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}

.site-orb-1 {
  width: min(680px, 90vw);
  height: min(680px, 90vw);
  background: radial-gradient(circle at center,
    rgba(0, 229, 192, 0.13) 0%,
    rgba(0, 229, 192, 0.04) 40%,
    transparent 70%);
  top: -18%;
  right: -6%;
  animation: orb-drift-1 14s ease-in-out infinite;
}

.site-orb-2 {
  width: min(440px, 65vw);
  height: min(440px, 65vw);
  background: radial-gradient(circle at center,
    rgba(0, 229, 192, 0.07) 0%,
    transparent 65%);
  top: 15%;
  left: -10%;
  animation: orb-drift-2 18s ease-in-out infinite;
}

.site-orb-3 {
  width: min(300px, 50vw);
  height: min(300px, 50vw);
  background: radial-gradient(circle at center,
    rgba(0, 200, 155, 0.05) 0%,
    transparent 65%);
  bottom: 8%;
  right: 28%;
  animation: orb-drift-3 22s ease-in-out infinite;
}

@keyframes orb-drift-1 {
  0%,  100% { transform: translate(  0px,   0px) scale(1.00); }
  30%        { transform: translate(-22px,  18px) scale(1.05); }
  65%        { transform: translate( 14px, -12px) scale(0.96); }
}
@keyframes orb-drift-2 {
  0%,  100% { transform: translate(  0px,   0px) scale(1.00); }
  40%        { transform: translate( 28px, -22px) scale(1.07); }
  72%        { transform: translate(-12px,  18px) scale(0.94); }
}
@keyframes orb-drift-3 {
  0%,  100% { transform: translate(  0px,   0px) scale(1.00); opacity: 0.75; }
  50%        { transform: translate(-18px, -14px) scale(1.13); opacity: 1.00; }
}

@media (prefers-reduced-motion: reduce) {
  .site-orb { animation: none !important; }
}

@media (min-width: 768px) {
  #hero {
    justify-content: flex-start !important;
    padding-top: 180px !important;
  }
}
.hero-bg {
  position: absolute;
  inset: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

#pain-point {
  padding: 5rem 1.5rem;
  text-align: center;

  border-top: 1px solid rgba(240,239,244,0.05);
  border-bottom: 1px solid rgba(240,239,244,0.05);
}
.pain-inner { max-width: 680px; margin: 0 auto; }
.pain-eyebrow {
  font-family: 'Fira Code', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #00E5C0;
  margin-bottom: 1.25rem;
}
.pain-copy {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.8;
  color: rgba(240,239,244,0.68);
  margin-bottom: 1.5rem;
}
.pain-resolution {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #F0EFF4;
  letter-spacing: 0.01em;
}

.marquee-label {
  text-align: center;
  font-family: 'Fira Code', monospace;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #00E5C0;
  margin-bottom: 1.5rem;
}

#social-proof .stats-row {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
  text-align: center;
}

#faq {
  padding: 6rem 1.5rem;

}
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-top: 1px solid rgba(240,239,244,0.07);
}
.faq-item:last-child {
  border-bottom: 1px solid rgba(240,239,244,0.07);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  font-weight: 600;
  color: #F0EFF4;
  list-style: none;
  gap: 1.5rem;
  user-select: none;
  transition: color 0.2s ease;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: #00E5C0; }
.faq-icon {
  font-size: 1.3rem;
  color: #00E5C0;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  line-height: 1;
  font-weight: 300;
}
details[open] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding-bottom: 1.5rem;
}
.faq-answer p {
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(240,239,244,0.68);
  margin: 0;
}

@media (max-width: 767px) {
  main > section:not(:first-child),
  footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 760px;
  }
}
