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

:root {
  --cyan: #00ffd1;
  --cyan-dim: #00bfa0;
  --cyan-glow: rgba(0, 255, 209, 0.18);
  --gold: #e8a840;
  --bg: #050709;
  --surface: #0d1117;
  --text: #f4f5f7;
  --text-muted: #b9bdd0;
  --steel-2: #2b2b38;
  --max-width: 1240px;
  --font-display: 'Archivo', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --electric: #00ffd1;
  --deep: #0a0a0f;
  --ember: #ff4d00;
  --gray-800: #1f1f26;
  --gray-700: #2d2d37;
  --white: #ffffff;
  --shadow-electric: 0 0 24px rgba(0, 255, 209, 0.18);
}

html,
body {
  width: 100%;
}

body {
  background: var(--bg);
  min-height: 100vh;
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  position: relative;
}

.bg-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 60% 50%, rgba(0, 255, 209, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(0, 100, 80, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(0, 50, 60, 0.15) 0%, transparent 60%);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
}

.scanlines {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.04) 2px,
    rgba(0, 0, 0, 0.04) 4px
  );
}

.hero-stage,
.content-main,
.site-footer-tag {
  position: relative;
  z-index: 10;
}

.hero-stage {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4.5rem 6vw 4.5rem;
}

.hero-layout {
  width: 100%;
  max-width: 1440px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4vw;
  align-items: center;
  position: relative;
  z-index: 6;
}

.copy {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
  animation: fadeUp 0.7s ease both;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: #111820;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 255, 209, 0.2);
  box-shadow: 0 0 16px rgba(0, 255, 209, 0.1);
  flex-shrink: 0;
}

.logo-icon svg {
  width: 26px;
  height: 26px;
}

.logo-text {
  display: flex;
  align-items: baseline;
  gap: 0;
  line-height: 1;
}

.logo-name-top,
.logo-name-bottom {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.02em;
}

.logo-name-top {
  color: #3ecfa0;
}

.logo-name-bottom {
  color: var(--gold);
  text-transform: uppercase;
  margin-left: 10px;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--cyan);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: fadeUp 0.8s ease both;
}

.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

.headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.03;
  color: #fff;
  animation: fadeUp 0.9s 0.1s ease both;
}

.headline em {
  font-style: normal;
  color: var(--cyan);
  text-shadow: 0 0 40px rgba(0, 255, 209, 0.5), 0 0 80px rgba(0, 255, 209, 0.2);
}

.sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 460px;
  animation: fadeUp 1s 0.2s ease both;
}

.cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeUp 1s 0.35s ease both;
}

button,
.btn-primary,
.pricing-plan-cta,
.button-soft,
.button-danger,
.button-ghost,
.btn-ghost {
  border: 1px solid var(--electric);
  background: linear-gradient(135deg, var(--electric), #7fffe7);
  color: var(--deep);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: var(--font-body);
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: filter 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

button:hover,
.btn-primary:hover,
.pricing-plan-cta:hover,
.button-soft:hover,
.button-danger:hover,
.button-ghost:hover,
.btn-ghost:hover {
  filter: brightness(1.05);
}

button:disabled,
button[disabled],
.btn-primary[aria-disabled='true'],
.pricing-plan-cta[aria-disabled='true'],
.button-soft[aria-disabled='true'],
.button-danger[aria-disabled='true'],
.button-ghost[aria-disabled='true'],
.btn-ghost[aria-disabled='true'] {
  opacity: 0.65;
  cursor: not-allowed;
  pointer-events: none;
}

.button-soft {
  border-color: var(--gray-700);
  background: var(--gray-800);
  color: var(--white);
}

.button-soft:hover {
  border-color: var(--electric);
  box-shadow: var(--shadow-electric);
}

.button-danger {
  border-color: var(--ember);
  background: linear-gradient(135deg, var(--ember), #ff7b45);
  color: var(--white);
}

.button-ghost,
.btn-ghost {
  border-color: transparent;
  background: transparent;
  color: var(--electric);
  padding: 4px 0;
  border-radius: 0;
}

.button-ghost:hover,
.btn-ghost:hover {
  border-color: transparent;
  box-shadow: none;
  filter: none;
}

.stats {
  display: flex;
  gap: 36px;
  padding-top: 8px;
  animation: fadeUp 1s 0.45s ease both;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: #fff;
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-shot-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 7;
  animation: fadeUp 1.2s 0.3s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.hero-shot {
  width: min(775px, 55.2vw);
  height: auto;
  display: block;
  border-radius: 0;
  box-shadow: none;
}

.mac-wrap {
  perspective: 1400px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatIn 1.2s 0.3s cubic-bezier(0.23, 1, 0.32, 1) both;
  position: relative;
}

.mac-scene {
  transform: rotateY(-20deg) rotateX(6deg);
  transform-style: preserve-3d;
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.mac-glow {
  position: absolute;
  width: 110%;
  height: 70%;
  top: 10%;
  left: -5%;
  background: radial-gradient(ellipse, rgba(0, 255, 209, 0.18) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
  animation: pulseGlow 4s ease-in-out infinite alternate;
}

.mac-lid {
  width: min(672px, 48vw);
  background: #1a1a1e;
  border-radius: 16px 16px 4px 4px;
  padding: 14px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    -8px 8px 40px rgba(0, 0, 0, 0.7),
    -2px 2px 0 1px rgba(255, 255, 255, 0.04);
  position: relative;
  transform-origin: bottom center;
}

.mac-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 8px;
  background: #0d0d0f;
  border-radius: 0 0 8px 8px;
  z-index: 10;
}

.mac-camera {
  position: absolute;
  top: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #222;
  border-radius: 50%;
  z-index: 11;
}

.mac-camera::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: #1a4a3a;
  border-radius: 50%;
}

.mac-screen {
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 10;
}

.screen-content {
  width: 100%;
  height: 100%;
  background: #070b0e;
  display: flex;
  flex-direction: column;
  font-size: 6px;
  overflow: hidden;
  position: relative;
}

.screen-content::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 255, 209, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 100;
}

.mini-nav {
  background: #0d1117;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
}

.mini-logo {
  display: flex;
  align-items: center;
  gap: 4px;
}

.mini-logo-icon {
  width: 14px;
  height: 14px;
  background: #1a2530;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini-logo-text {
  font-family: var(--font-body);
  font-size: 5px;
  font-weight: 700;
  color: #fff;
}

.mini-logo-text span {
  color: var(--gold);
}

.mini-nav-links {
  display: flex;
  gap: 8px;
}

.mini-nav-link {
  font-size: 5px;
  color: rgba(255, 255, 255, 0.4);
}

.mini-nav-link.active {
  background: var(--cyan);
  color: #000;
  padding: 2px 6px;
  border-radius: 20px;
  font-weight: 600;
}

.mini-hero-banner {
  background: linear-gradient(135deg, #0d1f1a 0%, #071510 100%);
  padding: 10px 14px;
  border-bottom: 1px solid rgba(0, 255, 209, 0.08);
  flex-shrink: 0;
}

.mini-banner-title {
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

.mini-banner-sub {
  font-size: 5px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}

.mini-tabs {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 8px 14px 6px;
  flex-shrink: 0;
}

.mini-tab {
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 5.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  background: #111820;
  text-align: center;
}

.mini-tab.active {
  background: var(--cyan);
  color: #000;
  box-shadow: 0 0 10px rgba(0, 255, 209, 0.3);
}

.mini-filters {
  display: flex;
  gap: 4px;
  padding: 0 14px 6px;
  flex-shrink: 0;
}

.mini-filter {
  flex: 1;
  padding: 3px 4px;
  background: #111820;
  border-radius: 3px;
  font-size: 4.5px;
  color: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.mini-cards {
  flex: 1;
  overflow: hidden;
  padding: 0 14px;
  display: flex;
  flex-direction: column;
}

.mini-date-label {
  font-size: 5px;
  color: rgba(0, 255, 209, 0.7);
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  margin-bottom: 5px;
  margin-top: 4px;
}

.mini-card {
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mini-card-title {
  font-size: 6.5px;
  font-weight: 700;
  color: #fff;
}

.mini-card-studio {
  font-size: 5px;
  color: var(--cyan);
  letter-spacing: 0.07em;
  margin-top: 1px;
}

.mini-card-talent {
  font-size: 5px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}

.mini-card-meta {
  display: flex;
  gap: 8px;
  margin-top: 2px;
}

.mini-card-badge {
  font-size: 4.5px;
  color: rgba(255, 255, 255, 0.3);
  font-family: var(--font-body);
}

.mini-card-btn {
  display: inline-block;
  margin-top: 4px;
  padding: 2px 8px;
  background: #1c2530;
  border-radius: 20px;
  font-size: 4.5px;
  color: rgba(255, 255, 255, 0.5);
}

.mac-base-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateZ(-4px);
}

.mac-hinge {
  width: min(560px, 40vw);
  height: 6px;
  background: linear-gradient(180deg, #2a2a30 0%, #1a1a1e 100%);
  border-radius: 0 0 2px 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.mac-bottom {
  width: min(480px, 34vw);
  height: 12px;
  background: linear-gradient(180deg, #222228 0%, #1a1a1e 100%);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6), -4px 4px 0 rgba(255, 255, 255, 0.03);
}

.particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--cyan);
  animation: drift linear infinite;
  opacity: 0;
}

.data-lines {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  z-index: 4;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-right: 20px;
  opacity: 0.4;
}

.data-line {
  display: flex;
  align-items: center;
  gap: 8px;
  animation: slideRight 1.5s ease both;
}

.data-line:nth-child(2) { animation-delay: 0.15s; }
.data-line:nth-child(3) { animation-delay: 0.3s; }
.data-line:nth-child(4) { animation-delay: 0.45s; }
.data-line:nth-child(5) { animation-delay: 0.6s; }

.data-line-label,
.data-line-val {
  font-family: var(--font-body);
  font-size: 9px;
  white-space: nowrap;
}

.data-line-label {
  color: rgba(0, 255, 209, 0.5);
  letter-spacing: 0.08em;
}

.data-line-bar {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 209, 0.3));
}

.data-line-val {
  color: rgba(255, 255, 255, 0.25);
}

.content-main {
  max-width: var(--max-width);
  margin: 5.2rem auto 0;
  padding: 0 1rem 4.8rem;
}

section + section {
  margin-top: 4rem;
}

.section-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.section-reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.section-header {
  margin-bottom: 1.4rem;
}

.eyebrow-alt {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--cyan);
  font-family: var(--font-body);
}

h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.16;
}

h2 {
  font-size: clamp(1.45rem, 2.8vw, 2.35rem);
  margin-top: 0.35rem;
  margin-bottom: 0.35rem;
}

h3 {
  font-size: 1.07rem;
  margin-bottom: 0.45rem;
}

.hero-copy {
  margin-top: 0.6rem;
  color: var(--text-muted);
  line-height: 1.72;
  max-width: 58ch;
}

.signal-strip,
.engine-grid,
.pricing-grid,
.pill-row {
  display: grid;
  gap: 0.9rem;
}

.signal-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.signal-strip article,
.card,
.pricing-plan {
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(28, 28, 38, 0.92), rgba(18, 18, 26, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.15rem;
}

.signal-strip p,
.card p,
.plan-desc,
.plan-meta,
.pricing-status {
  color: var(--text-muted);
}

.signal-strip p,
.card p,
.plan-desc {
  margin: 0.4rem 0 0;
}

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

.media-card {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(20, 20, 28, 0.78);
}

.media-card img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-preview {
  margin-top: 2.2rem;
}

.feature-preview .preview-shot {
  width: min(1160px, 96vw);
  margin: 0 auto;
}

.network-block {
  margin-top: 3.6rem;
}

.network-block h3 {
  margin: 0.45rem 0 0.95rem;
  font-size: 1.26rem;
}

.network-frame-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #000;
}

.network-frame-wrap iframe {
  display: block;
  width: 100%;
  height: 560px;
  border: 0;
}

.pill-row {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.pill-row span {
  border-radius: 999px;
  border: 1px solid rgba(100, 214, 197, 0.3);
  background: rgba(18, 22, 30, 0.9);
  padding: 0.55rem 0.8rem;
  text-align: center;
  font-size: 0.88rem;
}

.steps {
  list-style: none;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(20, 20, 28, 0.8);
}

.steps li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 10px;
  align-items: start;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.steps li:last-child {
  border-bottom: 0;
}

.steps li > span {
  grid-column: 1;
  display: block;
  width: auto;
  color: var(--cyan);
  font-family: var(--font-body);
}

.pricing-status {
  margin-bottom: 0.8rem;
}

.pricing-status.is-hidden {
  display: none;
}

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

.plan-price {
  margin: 0.55rem 0 0.35rem;
  font-size: 1.95rem;
  color: var(--cyan);
  font-family: var(--font-display);
  line-height: 1;
}

.plan-meta {
  margin: 0;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.plan-actions {
  margin-top: 0.95rem;
}

.trust .pill-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cta {
  border-radius: 24px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(140deg, rgba(26, 28, 80, 0.5), rgba(12, 12, 18, 0.92));
}

.pricing-style-cta {
  border: 1px solid rgba(140, 150, 170, 0.35);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(31, 31, 38, 0.98), rgba(16, 16, 20, 0.98));
  padding: 1rem;
  text-align: left;
}

.pricing-style-cta .eyebrow-alt {
  margin: 0;
}

.pricing-style-cta h2 {
  margin: 0.35rem 0 0;
}

.cta .hero-actions {
  justify-content: center;
}

.pricing-style-cta .hero-actions {
  justify-content: center;
  width: 100%;
}

.cta h2 {
  margin-bottom: 0;
}

.cta p {
  margin-top: 0.95rem;
  color: var(--text-muted);
}

.pricing-plan-cta {
  margin-top: auto;
  width: 100%;
  max-width: 360px;
  color: var(--deep);
  text-align: center;
}

.cta .btn-primary,
.cta .pricing-plan-cta {
  color: var(--deep);
}

.marketing-footer-local {
  width: min(1180px, calc(100vw - 36px));
  margin: 0 auto 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(21, 21, 25, 0.9);
  padding: 16px;
  color: var(--text-muted);
}

.marketing-footer-local p {
  margin: 0 0 8px;
  line-height: 1.6;
}

.marketing-footer-local p:last-child {
  margin-bottom: 0;
}

.marketing-footer-local a {
  color: #ff9a3c;
}

.site-footer-tag {
  text-align: center;
  padding: 0 1rem 2.4rem;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  white-space: nowrap;
}

.site-footer-tag span {
  color: rgba(0, 255, 209, 0.5);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floatIn {
  from { opacity: 0; transform: rotateY(-20deg) rotateX(6deg) translateY(40px) scale(0.92); }
  to { opacity: 1; transform: rotateY(-20deg) rotateX(6deg) translateY(0) scale(1); }
}

@keyframes float {
  0%, 100% { transform: rotateY(-20deg) rotateX(6deg) translateY(0px); }
  50% { transform: rotateY(-20deg) rotateX(6deg) translateY(-10px); }
}

@keyframes pulseGlow {
  from { opacity: 0.6; transform: scale(1); }
  to { opacity: 1; transform: scale(1.08); }
}

@keyframes drift {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-20px) translateX(30px); opacity: 0; }
}

@keyframes slideRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 1280px) {
  .data-lines {
    display: none;
  }

  .mac-lid {
    width: min(650px, 52vw);
  }
}

@media (max-width: 1080px) {
  .hero-stage {
    min-height: auto;
    padding: 4rem 1rem 2.5rem;
  }

  .hero-layout,
  .signal-strip,
  .engine-grid,
  .pricing-grid,
  .pill-row,
  .trust .pill-row {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    gap: 2.2rem;
  }

  .hero-shot {
    width: min(100%, 784px);
  }

  .feature-preview .preview-shot {
    width: min(100%, 980px);
  }

  .network-frame-wrap iframe {
    height: 420px;
  }

  .network-block {
    margin-top: 2.6rem;
  }

  .headline {
    font-size: clamp(44px, 13vw, 68px);
  }

  .stats {
    gap: 18px;
  }

  .stat-divider {
    display: none;
  }

  .mac-scene {
    transform: none;
    animation: none;
  }

  .mac-lid {
    width: 100%;
    max-width: 760px;
  }

  .mac-hinge {
    width: 82%;
  }

  .mac-bottom {
    width: 70%;
  }

  .content-main {
    margin-top: 3.4rem;
  }

  section + section {
    margin-top: 2.6rem;
  }

  .marketing-footer-local {
    width: calc(100vw - 20px);
  }
}

@media (max-width: 760px) {
  .hero-stage {
    padding: 3rem 0.85rem 1.8rem;
  }

  .copy {
    gap: 20px;
  }

  .logo-block {
    gap: 10px;
    margin-bottom: 4px;
  }

  .logo-name-top,
  .logo-name-bottom {
    font-size: 19px;
  }

  .headline {
    font-size: clamp(38px, 13vw, 56px);
  }

  .sub {
    max-width: none;
    font-size: 15px;
    line-height: 1.6;
  }

  .cta-row {
    width: 100%;
    gap: 10px;
  }

  .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 13px 18px;
  }

  .btn-ghost {
    width: 100%;
    justify-content: flex-start;
  }

  .stats {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .stat-item {
    gap: 3px;
  }

  .stat-num {
    font-size: 26px;
  }

  .stat-label {
    font-size: 10px;
  }

  .content-main {
    margin-top: 2.5rem;
  }

  section + section {
    margin-top: 2.3rem;
  }

  .network-frame-wrap iframe {
    height: 560px;
  }

  .pricing-style-cta {
    text-align: center;
    padding: 1.1rem;
  }

  .pricing-style-cta .hero-actions {
    justify-content: center;
  }

  .marketing-footer-local {
    padding: 14px;
  }

  .marketing-footer-local p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

@media (max-width: 520px) {
  .eyebrow,
  .eyebrow-alt {
    letter-spacing: 0.1em;
  }

  .headline {
    font-size: clamp(34px, 12vw, 48px);
  }

  .network-frame-wrap iframe {
    height: 500px;
  }

  .steps li {
    padding: 0.9rem;
  }

  .steps li {
    grid-template-columns: 36px minmax(0, 1fr);
    column-gap: 8px;
  }

  .pricing-plan-cta {
    max-width: 100%;
  }

  .marketing-footer-local p {
    font-size: 0.85rem;
  }
}
