*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f8fc;
  --bg-elevated: #ffffff;
  --bg-card: #ffffff;
  --border: rgba(15, 23, 42, 0.1);
  --text: #0f172a;
  --text-muted: #64748b;
  --accent: #2563eb;
  --accent-glow: rgba(37, 99, 235, 0.15);
  --accent-2: #059669;
  --accent-2-glow: rgba(5, 150, 105, 0.12);
  --gradient: linear-gradient(135deg, #2563eb 0%, #059669 100%);
  --header-bg: rgba(247, 248, 252, 0.85);
  --btn-primary-text: #ffffff;
  --surface-hover: rgba(15, 23, 42, 0.04);
  --surface-inset: rgba(15, 23, 42, 0.05);
  --surface-overlay: rgba(15, 23, 42, 0.04);
  --shadow: 0 24px 80px rgba(15, 23, 42, 0.1);
  --shadow-sm: 0 8px 32px rgba(15, 23, 42, 0.08);
  --shadow-ring: 0 0 0 1px rgba(15, 23, 42, 0.04);
  --badge-bg: rgba(37, 99, 235, 0.08);
  --badge-border: rgba(37, 99, 235, 0.18);
  --logo-stack: rgba(15, 23, 42, 0.2);
  --logo-stack-hover: rgba(15, 23, 42, 0.45);
  --noise-opacity: 0.02;
  --glow-opacity: 0.5;
  --how-gradient: linear-gradient(180deg, transparent, rgba(37, 99, 235, 0.04), transparent);
  --feature-hover-border: rgba(37, 99, 235, 0.22);
  --card-shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 4px 16px rgba(15, 23, 42, 0.04);
  --radius: 12px;
  --radius-lg: 20px;
  --font: 'Outfit', system-ui, sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

[data-theme="dark"] {
  --bg: #0a0b0f;
  --bg-elevated: #12141c;
  --bg-card: #161922;
  --border: rgba(255, 255, 255, 0.08);
  --text: #e8eaef;
  --text-muted: #8b92a5;
  --accent: #3b9eff;
  --accent-glow: rgba(59, 158, 255, 0.35);
  --accent-2: #00d4aa;
  --accent-2-glow: rgba(0, 212, 170, 0.25);
  --gradient: linear-gradient(135deg, #3b9eff 0%, #00d4aa 100%);
  --header-bg: rgba(10, 11, 15, 0.7);
  --btn-primary-text: #0a0b0f;
  --surface-hover: rgba(255, 255, 255, 0.04);
  --surface-inset: rgba(255, 255, 255, 0.05);
  --surface-overlay: rgba(0, 0, 0, 0.3);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  --shadow-sm: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-ring: 0 0 0 1px rgba(255, 255, 255, 0.03);
  --badge-bg: rgba(59, 158, 255, 0.1);
  --badge-border: rgba(59, 158, 255, 0.2);
  --logo-stack: rgba(255, 255, 255, 0.25);
  --logo-stack-hover: rgba(255, 255, 255, 0.5);
  --noise-opacity: 0.03;
  --glow-opacity: 1;
  --how-gradient: linear-gradient(180deg, transparent, rgba(59, 158, 255, 0.03), transparent);
  --feature-hover-border: rgba(59, 158, 255, 0.25);
  --card-shadow: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: var(--noise-opacity);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.glow-1 {
  width: 600px;
  height: 600px;
  background: var(--accent-glow);
  top: -200px;
  right: -100px;
  opacity: var(--glow-opacity);
}

.glow-2 {
  width: 500px;
  height: 500px;
  background: var(--accent-2-glow);
  bottom: 20%;
  left: -150px;
  opacity: var(--glow-opacity);
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: var(--header-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

.header.scrolled {
  border-bottom-color: var(--border);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo-icon {
  display: flex;
  color: var(--accent);
}

.logo-icon svg {
  width: 28px;
  height: 28px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-elevated);
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.theme-toggle:hover {
  color: var(--text);
  border-color: rgba(15, 23, 42, 0.15);
}

[data-theme="dark"] .theme-toggle:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.theme-toggle .icon-moon {
  display: none;
}

[data-theme="dark"] .theme-toggle .icon-sun {
  display: none;
}

[data-theme="dark"] .theme-toggle .icon-moon {
  display: block;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border-radius: 10px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient);
  color: var(--btn-primary-text);
  box-shadow: 0 0 24px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 32px var(--accent-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
}

.btn-ghost:hover {
  color: var(--text);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: rgba(15, 23, 42, 0.18);
  background: var(--surface-hover);
}

[data-theme="dark"] .btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-lg {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
  border-radius: 12px;
}

.btn-block {
  width: 100%;
}

/* Hero */
.hero {
  padding: 9rem 0 5rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--badge-bg);
  border: 1px solid var(--badge-border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-2);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.stat strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Terminal */
.hero-visual {
  position: relative;
}

.terminal-window {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-ring), var(--shadow);
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  background: var(--surface-overlay);
  border-bottom: 1px solid var(--border);
}

.terminal-dots {
  display: flex;
  gap: 6px;
}

.terminal-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.terminal-dots span:nth-child(1) { background: #ff5f57; }
.terminal-dots span:nth-child(2) { background: #febc2e; }
.terminal-dots span:nth-child(3) { background: #28c840; }

.terminal-title {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.terminal-body {
  padding: 1.25rem;
  font-family: var(--mono);
  font-size: 0.8rem;
  line-height: 1.8;
  min-height: 280px;
}

.terminal-line {
  opacity: 0;
}

.terminal-line.visible {
  opacity: 1;
}

.prompt {
  color: var(--accent);
  margin-right: 0.5rem;
}

.cmd {
  color: var(--text);
}

.out {
  color: var(--text-muted);
  padding-left: 1.25rem;
}

.out.success {
  color: var(--accent-2);
}

.out.highlight {
  color: var(--accent);
  font-weight: 500;
}

.terminal-cursor {
  display: inline-block;
  width: 8px;
  height: 16px;
  background: var(--accent);
  margin-top: 4px;
  animation: blink 1s step-end infinite;
  opacity: 0;
}

.terminal-cursor.visible {
  opacity: 1;
}

@keyframes blink {
  50% { opacity: 0; }
}

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  animation: float 4s ease-in-out infinite;
}

.float-git {
  top: -20px;
  right: -10px;
  color: var(--text);
}

.float-git svg {
  color: var(--text);
}

.float-docker {
  bottom: 40px;
  left: -30px;
  color: var(--accent);
  animation-delay: -2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Logos */
.logos {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.logos p {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.logo-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 3rem;
}

.logo-row span {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--logo-stack);
  transition: color 0.3s;
}

.logo-row span:hover {
  color: var(--logo-stack-hover);
}

/* Sections */
.section-header {
  margin-bottom: 3.5rem;
}

.section-header.center {
  text-align: center;
}

.section-header.center p {
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
}

/* Features */
.features {
  padding: 7rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--card-shadow);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  border-color: var(--feature-hover-border);
  transform: translateY(-2px);
}

.feature-large {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto 1fr;
  gap: 0 2rem;
}

.feature-large .feature-icon,
.feature-large h3,
.feature-large p {
  grid-column: 1;
}

.feature-large .feature-visual,
.feature-large .deploy-timeline {
  grid-column: 2;
  grid-row: 1 / -1;
  align-self: center;
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--badge-bg);
  border-radius: 10px;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.mini-server {
  padding: 1rem;
}

.server-rack {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.server-blade {
  width: 80px;
  height: 18px;
  background: var(--surface-inset);
  border-radius: 4px;
  border: 1px solid var(--border);
  position: relative;
}

.server-blade.active::after {
  content: '';
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--accent-2);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-2);
}

.deploy-timeline {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.deploy-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 1rem;
  background: var(--surface-overlay);
  border-radius: 8px;
  border: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 0.8rem;
  min-width: 180px;
}

.deploy-item.current {
  border-color: rgba(5, 150, 105, 0.35);
  background: rgba(5, 150, 105, 0.08);
}

[data-theme="dark"] .deploy-item.current {
  border-color: rgba(0, 212, 170, 0.4);
  background: rgba(0, 212, 170, 0.08);
}

.deploy-item small {
  color: var(--text-muted);
  font-size: 0.7rem;
}

/* How */
.how {
  padding: 7rem 0;
  background: var(--how-gradient);
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 0 1rem;
}

.step-num {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1.25rem;
  opacity: 0.6;
}

.step h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.step-connector {
  flex-shrink: 0;
  width: 60px;
  padding-top: 2rem;
  color: var(--border);
}

.step-connector svg {
  width: 100%;
}

/* Pricing */
.pricing {
  padding: 7rem 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.price-card:hover {
  transform: translateY(-4px);
}

.price-card.featured {
  border-color: rgba(37, 99, 235, 0.3);
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.06) 0%, var(--bg-card) 40%);
  box-shadow: 0 0 60px var(--accent-glow);
}

[data-theme="dark"] .price-card.featured {
  border-color: rgba(59, 158, 255, 0.4);
  background: linear-gradient(180deg, rgba(59, 158, 255, 0.08) 0%, var(--bg-card) 40%);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 1rem;
  background: var(--gradient);
  color: var(--btn-primary-text);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.price {
  margin-bottom: 0.5rem;
}

.amount {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.currency {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.price-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.price-card ul {
  list-style: none;
  margin-bottom: 2rem;
}

.price-card li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.price-card li::before {
  content: '✓';
  color: var(--accent-2);
  font-weight: 700;
  font-size: 0.8rem;
}

/* CTA */
.cta {
  padding: 5rem 0 7rem;
}

.cta-box {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, var(--accent-glow), transparent 60%);
  pointer-events: none;
}

.cta-box h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
  position: relative;
}

.cta-box > p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  position: relative;
}

.cta-form {
  display: flex;
  gap: 0.75rem;
  max-width: 460px;
  margin: 0 auto 1rem;
  position: relative;
}

.cta-form input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}

.cta-form input:focus {
  border-color: var(--accent);
}

.cta-form input::placeholder {
  color: var(--text-muted);
}

.cta-box small {
  font-size: 0.75rem;
  color: var(--text-muted);
  position: relative;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 280px;
}

.footer-links h4 {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text);
}

.footer-links a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.3rem 0;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual {
    order: -1;
    max-width: 540px;
    margin: 0 auto;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-large {
    grid-column: span 2;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav.open .nav-links,
  .nav.open .nav-actions {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
    gap: 1rem;
  }

  .nav.open .nav-links {
    margin-left: 0;
  }

  .burger {
    display: flex;
  }

  .hero {
    padding-top: 7rem;
    min-height: auto;
  }

  .hero-stats {
    gap: 1rem;
  }

  .stat-divider {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-large {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .feature-large .feature-visual,
  .feature-large .deploy-timeline {
    grid-column: 1;
    grid-row: auto;
    margin-top: 1.5rem;
  }

  .steps {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .step-connector {
    transform: rotate(90deg);
    padding: 0;
  }

  .cta-form {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .float-docker {
    left: 10px;
  }
}

/* Scroll animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
