:root {
  --ink: #11131a;
  --muted: #626775;
  --paper: #f6f2ea;
  --surface: #ffffff;
  --line: rgba(16, 19, 34, 0.12);
  --coral: #c97863;
  --violet: #5143a5;
  --cyan: #5ba7a0;
  --mint: #9caf88;
  --yellow: #d8b76a;
  --blue: #2f5f9f;
  --shadow: 0 24px 80px rgba(16, 19, 34, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Jost, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  background: var(--ink);
  transform: translateY(0);
  animation: page-curtain 900ms cubic-bezier(0.76, 0, 0.24, 1) 160ms forwards;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
iframe {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--ink);
  color: white;
  padding: 0.65rem 0.9rem;
  border-radius: 8px;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 20px;
  left: 50%;
  z-index: 50;
  width: min(1120px, calc(100% - 28px));
  min-height: 68px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(17, 19, 26, 0.12);
  border-radius: 18px;
  background: rgba(246, 242, 234, 0.82);
  box-shadow: 0 18px 60px rgba(16, 19, 34, 0.1);
  backdrop-filter: blur(24px);
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 70px rgba(16, 19, 34, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 820;
  letter-spacing: 0;
}

.brand img {
  width: 44px;
  height: auto;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a,
.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-nav a:hover,
.nav-cta {
  background: var(--ink);
  color: white;
}

.site-nav a {
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
  transform: translateY(-1px);
}

.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 132px 0 84px;
  color: white;
  background:
    linear-gradient(115deg, rgba(216, 183, 106, 0.18), transparent 36%),
    linear-gradient(135deg, #10131c 0%, #1f2541 48%, #6f4d58 100%);
  --mx: 50%;
  --my: 40%;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(216, 183, 106, 0.24), transparent 28%);
  opacity: 0.8;
  transition: background 180ms ease;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 19, 28, 0.88), rgba(16, 19, 28, 0.18) 58%, rgba(16, 19, 28, 0.5)),
    radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.12), transparent 42%);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-backdrop::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    conic-gradient(from 120deg at 68% 38%, rgba(255, 209, 102, 0.52), rgba(0, 188, 212, 0.35), rgba(119, 82, 255, 0.48), rgba(255, 90, 95, 0.5), rgba(255, 209, 102, 0.52));
  filter: blur(58px);
  opacity: 0.38;
  animation: aurora-drift 18s ease-in-out infinite alternate;
}

.sweep {
  position: absolute;
  width: 72vw;
  height: 18vh;
  left: 34%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: rotate(-18deg);
  animation: sweep-slide 9s ease-in-out infinite;
}

.sweep-one {
  top: 22%;
}

.sweep-two {
  top: 62%;
  animation-delay: -4s;
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, black 24%, black 72%, transparent);
  animation: grid-move 18s linear infinite;
}

.hero-layout {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.78fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}

.hero-content {
  position: relative;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  width: min(760px, 100%);
  margin: 0;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(3.8rem, 7vw, 7rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  width: min(640px, 100%);
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  line-height: 1.1;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button.primary {
  background: linear-gradient(135deg, var(--yellow), var(--coral));
  color: #171421;
  box-shadow: 0 18px 45px rgba(255, 90, 95, 0.28);
}

.button.primary:hover {
  box-shadow: 0 24px 58px rgba(201, 120, 99, 0.34);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.16);
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.button.small {
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.9rem;
}

.button.full {
  width: 100%;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.trust-row span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-visual {
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1100px;
}

.studio-panel {
  width: min(430px, 100%);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07));
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px);
  transform: rotateX(8deg) rotateY(-10deg);
  animation: card-float 8s ease-in-out infinite, panel-arrive 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 58px;
}

.panel-top img {
  width: 58px;
  height: auto;
  opacity: 0.92;
}

.panel-top span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.studio-panel > strong {
  display: block;
  max-width: 330px;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 0.98;
}

.panel-lines {
  display: grid;
  gap: 11px;
  margin: 32px 0;
}

.panel-lines i {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yellow), var(--coral), var(--cyan));
  transform-origin: left;
  animation: bar-pulse 3.4s ease-in-out infinite;
}

.panel-lines i:nth-child(2) {
  width: 72%;
  animation-delay: -0.45s;
}

.panel-lines i:nth-child(3) {
  width: 52%;
  animation-delay: -0.9s;
}

.panel-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.panel-notes span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro-band {
  padding: 58px 0;
  background: var(--ink);
  color: white;
}

.intro-grid,
.price-layout,
.faq-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
}

.intro-grid h2,
.section-heading h2,
.price-layout h2,
.faq-layout h2,
.final-cta h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.intro-grid p:last-child,
.price-layout > div > p,
.final-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.12rem;
}

.section {
  padding: 92px 0;
}

.section-heading {
  width: min(800px, 100%);
  margin-bottom: 34px;
}

.section-heading.wide {
  width: min(960px, 100%);
}

.section-heading p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.section .section-kicker,
.price-band .section-kicker,
.faq .section-kicker,
.final-cta .section-kicker {
  color: var(--violet);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 16px 45px rgba(16, 19, 34, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 28px 80px rgba(16, 19, 34, 0.16);
}

.feature-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: auto;
  border-radius: 50%;
  color: var(--ink);
  font-weight: 950;
}

.accent-coral .feature-icon { background: #ffc6c9; }
.accent-mint .feature-icon { background: #bbf7d0; }
.accent-blue .feature-icon { background: #bfdbfe; }
.accent-yellow .feature-icon { background: #fde68a; }

.feature-card h3,
.steps h3 {
  margin: 22px 0 8px;
  font-size: 1.2rem;
}

.feature-card p,
.steps p,
.faq-list p {
  margin: 0;
  color: var(--muted);
}

.showcase {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(47, 95, 159, 0.08), transparent 42%),
    linear-gradient(180deg, #f7f4ee, #ffffff);
}

.showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 19, 34, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 19, 34, 0.05) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 86%, transparent);
  pointer-events: none;
}

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

.showcase-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.showcase-strip article {
  min-height: 132px;
  padding: 20px;
  border: 1px solid rgba(16, 19, 34, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 45px rgba(16, 19, 34, 0.08);
  backdrop-filter: blur(18px);
}

.showcase-strip span {
  color: var(--violet);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.showcase-strip strong {
  display: block;
  margin-top: 14px;
  font-size: 1.25rem;
  line-height: 1.05;
}

.showcase-strip p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.showcase-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.tab {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
}

.tab.is-active {
  background: var(--ink);
  color: white;
}

.browser-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(16, 19, 34, 0.14);
  border-radius: 20px;
  background: white;
  box-shadow: 0 40px 110px rgba(16, 19, 34, 0.2);
  transform: translateZ(0);
}

.browser-shell::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.browser-bar {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.browser-bar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--coral);
}

.browser-bar span:nth-child(2) { background: var(--yellow); }
.browser-bar span:nth-child(3) { background: var(--mint); }

.browser-bar strong {
  margin-left: 10px;
  color: var(--muted);
  font-size: 0.86rem;
}

#demo-frame {
  width: 100%;
  height: min(780px, 80vh);
  border: 0;
  background: white;
}

.price-band {
  padding: 96px 0;
  color: white;
  background:
    linear-gradient(120deg, rgba(201, 169, 110, 0.18), transparent 34%),
    linear-gradient(135deg, #11131a 0%, #283047 56%, #6d4f48 100%);
}

.price-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25);
  animation: subtle-lift 7s ease-in-out infinite;
}

.price-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 850;
}

.price {
  margin: 8px 0 18px;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 8vw, 6rem);
  line-height: 0.9;
  font-weight: 700;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.84);
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
}

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

.steps article {
  padding: 24px;
  border-top: 5px solid var(--coral);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 45px rgba(16, 19, 34, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.steps article:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 70px rgba(16, 19, 34, 0.14);
}

.steps article:nth-child(2) { border-top-color: var(--cyan); }
.steps article:nth-child(3) { border-top-color: var(--yellow); }

.steps span {
  color: var(--violet);
  font-size: 2rem;
  font-weight: 950;
}

.faq {
  background: white;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
}

summary {
  cursor: pointer;
  padding: 18px;
  font-weight: 900;
}

details p {
  padding: 0 18px 18px;
}

.final-cta {
  padding: 92px 0;
  color: white;
  background:
    linear-gradient(135deg, rgba(216, 183, 106, 0.2), transparent 36%),
    linear-gradient(135deg, #11131a, #244f55 52%, #7a5148);
}

.final-cta-inner {
  width: min(850px, calc(100% - 40px));
  margin-inline: auto;
  text-align: center;
}

.final-cta .contact-actions {
  justify-content: center;
}

.whatsapp-button {
  min-width: min(100%, 280px);
}

.site-footer {
  padding: 34px 0;
  background: var(--ink);
  color: white;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-footer p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer-logo {
  width: 46px;
  height: auto;
  margin-bottom: 12px;
  opacity: 0.9;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  width: min(520px, calc(100% - 40px));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 4px 0 0;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-banner .secondary {
  color: var(--ink);
  border-color: var(--line);
  background: white;
}

.legal-page {
  background: #fffaf2;
}

.legal-main {
  padding: 132px 0 72px;
}

.legal-content {
  max-width: 860px;
  padding: 34px;
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 45px rgba(16, 19, 34, 0.08);
}

.legal-content h1 {
  margin: 0 0 24px;
  font-size: clamp(2.8rem, 8vw, 5rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.legal-content h2 {
  margin: 30px 0 8px;
  font-size: 1.25rem;
}

.legal-content h3 {
  margin: 22px 0 8px;
  color: var(--ink);
  font-size: 1.02rem;
}

.legal-content p {
  color: var(--muted);
}

.legal-content ul {
  margin: 10px 0 18px;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.7;
}

.legal-content a {
  color: var(--blue);
  font-weight: 800;
}

.legal-reset-button {
  margin-top: 8px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition: opacity 800ms ease, transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.feature-card:nth-child(2),
.steps article:nth-child(2),
.showcase-strip article:nth-child(2) {
  transition-delay: 90ms;
}

.feature-card:nth-child(3),
.steps article:nth-child(3),
.showcase-strip article:nth-child(3) {
  transition-delay: 180ms;
}

@keyframes aurora-drift {
  0% {
    transform: translate3d(-4%, -3%, 0) rotate(0deg) scale(1);
  }
  100% {
    transform: translate3d(5%, 4%, 0) rotate(18deg) scale(1.08);
  }
}

@keyframes sweep-slide {
  0%, 100% {
    transform: translateX(-16%) rotate(-18deg);
    opacity: 0.2;
  }
  50% {
    transform: translateX(8%) rotate(-18deg);
    opacity: 0.72;
  }
}

@keyframes grid-move {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 72px 72px;
  }
}

@keyframes card-float {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -18px;
  }
}

@keyframes bar-pulse {
  0%, 100% {
    transform: scaleX(0.62);
    opacity: 0.76;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes word-drift {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(-3deg);
  }
  50% {
    transform: translate3d(12px, -16px, 0) rotate(4deg);
  }
}

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

@keyframes page-curtain {
  to {
    transform: translateY(-105%);
  }
}

@keyframes panel-arrive {
  from {
    opacity: 0;
    transform: translateY(22px) rotateX(8deg) rotateY(-10deg) scale(0.96);
  }
  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

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

  .intro-grid,
  .price-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    min-height: auto;
    justify-content: flex-start;
  }

  .showcase-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    top: 8px;
    width: calc(100% - 16px);
    border-radius: 14px;
  }

  .brand span {
    max-width: 134px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 12px;
  }

  .hero {
    min-height: 92vh;
    padding-top: 118px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 16vw, 4.8rem);
  }

  .hero-visual {
    margin-top: 18px;
  }

  .studio-panel {
    width: 100%;
    padding: 22px;
    transform: none;
  }

  .panel-top {
    margin-bottom: 34px;
  }

  .panel-notes {
    display: none;
  }

  .feature-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .section,
  .price-band,
  .final-cta {
    padding: 68px 0;
  }

  #demo-frame {
    height: 620px;
  }

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

  .footer-grid {
    display: grid;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions .button {
    flex: 1;
  }
}
