/* ////////////////////////////////////////////RESET & BASE /////////////////////////////////////////*/


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

:root {
  --bg-dark: #0a0612;
  --bg-card: #140a1f;
  --bg-code: #180d26;
  --magenta: #c23ae8;
  --magenta-hover: #e76bff;
  --magenta-glow: rgba(214, 59, 255, 0.45);
  --green: #3ddd8d;
  --green-hover: #6bffb8;
  --green-glow: rgba(58, 255, 158, 0.35);
  --text: #f0e7f7;
  --text-muted: #b7b7b7;
  --border: #d4d2d8;
  --border-bright: rgba(214, 59, 255, 0.25);
  --radius: 14px;
}

html { scroll-behavior: auto; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--magenta); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--magenta-hover); }






/* //////////////////////////////////UTILITY//////////////////////////////////////////// */


.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-card { background: var(--bg-card); }
.section-label {
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--magenta);
  margin-bottom: 12px;
}
.section-label.green { color: var(--green); }
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--green); 
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 48px;
}
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.gradient-text {
  background: linear-gradient(120deg, var(--magenta) 0%, var(--green) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.mirza-regular {
  font-family: "Mirza", serif;
  font-weight: 400;
  font-style: normal;
}

.mirza-medium {
  font-family: "Mirza", serif;
  font-weight: 500;
  font-style: normal;
}

.mirza-semibold {
  font-family: "Mirza", serif;
  font-weight: 600;
  font-style: normal;
}

.mirza-bold {
  font-family: "Mirza", serif;
  font-weight: 700;
  font-style: normal;
}




/*//////////////////////////////////// NAV //////////////////////////////*/


nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 6, 18, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
nav .nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
nav .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Mirza", serif;
  font-weight: 400;
  font-size: 2.5rem;
  color: var(--text);
  letter-spacing: 0.5px;
}
nav .logo img {
  height: 52px;
  width: 52px;
  filter: drop-shadow(0 0 8px var(--magenta-glow));
}
nav .nav-links { display: flex; gap: 28px; align-items: center; }
nav .nav-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
nav .nav-links a:hover { color: var(--text); }
nav .nav-links a.btn-primary,
nav .nav-links a.btn-primary:hover {
  color: #fff;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--magenta);
  color: #0a0612;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 0 0 1px rgba(214, 59, 255, 0.4), 0 8px 24px -8px var(--magenta-glow);
}
.btn-primary:hover {
  background: var(--magenta-hover);
  color: #0a0612;
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(214, 59, 255, 0.6), 0 14px 32px -8px var(--magenta-glow);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: 8px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-outline:hover {
  border-color: var(--magenta);
  background: rgba(214, 59, 255, 0.06);
  color: var(--text);
}
.btn-large {
  font-size: 1rem;
  padding: 14px 32px;
}







/*////////////////////////////////////////// HERO //////////////////////////////////////*/


.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 0 80px;
  background:
    radial-gradient(ellipse 70% 50% at 30% 0%, rgba(214, 59, 255, 0.18), transparent 60%),
    radial-gradient(ellipse 70% 50% at 70% 30%, rgba(58, 255, 158, 0.08), transparent 60%),
    var(--bg-dark);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(214, 59, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 59, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 30%, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-icon {
  display: block;
  width: min(320px, 80vw);
  height: auto;
  margin: 0 auto 28px;
  filter:
    drop-shadow(0 0 20px rgba(214, 59, 255, 0.35))
    drop-shadow(0 0 40px rgba(58, 255, 158, 0.18));
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(214, 59, 255, 0.1);
  border: 1px solid rgba(214, 59, 255, 0.3);
  color: var(--magenta);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
  box-shadow: 0 0 24px -6px var(--magenta-glow);
}
.hero-badge .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 26px;
  letter-spacing: -0.025em;
}
.hero h1 .highlight-m {
  color: var(--magenta);
  text-shadow: 0 0 32px var(--magenta-glow);
}
.hero h1 .highlight-g {
  color: var(--green);
  text-shadow: 0 0 32px var(--green-glow);
}
.hero p {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 40px;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-meta {
  margin-top: 36px;
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-meta .check { color: var(--green); font-weight: 700; }







/* ////////////////////////////////////////////DEMO MOCKUP (HERO) ////////////////////////////////////////// */


.editor-mockup {
  margin: 64px auto 0;
  max-width: 920px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(214, 59, 255, 0.15),
    0 24px 80px -20px rgba(214, 59, 255, 0.3),
    0 0 120px -40px rgba(58, 255, 158, 0.15);
  text-align: left;
}
.editor-titlebar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--border);
}
.editor-titlebar .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }
.editor-titlebar .title {
  flex: 1;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}
.editor-titlebar-spacer { width: 50px; }
.editor-toolbar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.15);
  font-size: 0.78rem;
  color: var(--text-muted);
}
.editor-toolbar .tool-pill {
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}
.editor-toolbar .tool-pill.active {
  color: var(--magenta);
  border-color: rgba(214, 59, 255, 0.4);
  background: rgba(214, 59, 255, 0.08);
}
.editor-toolbar .mic-btn {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(58, 255, 158, 0.1);
  color: var(--green);
  border: 1px solid rgba(58, 255, 158, 0.3);
  font-weight: 600;
  box-shadow: 0 0 16px -4px var(--green-glow);
}
.editor-toolbar .mic-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 1.4s ease-in-out infinite;
}
.editor-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 360px;
}
.editor-sidebar {
  background: rgba(0, 0, 0, 0.2);
  border-right: 1px solid var(--border);
  padding: 16px 14px;
  font-size: 0.8rem;
}
.sidebar-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 12px;
  padding-left: 4px;
}
.sidebar-item {
  padding: 7px 10px;
  border-radius: 6px;
  color: var(--text-muted);
  margin-bottom: 2px;
  cursor: default;
  border-left: 2px solid transparent;
}
.sidebar-item.active {
  color: var(--text);
  background: rgba(214, 59, 255, 0.08);
  border-left-color: var(--magenta);
}
.sidebar-item .meta {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.editor-script {
  padding: 28px 36px;
  font-family: 'Courier New', 'Courier Prime', monospace;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text);
}
.sp-scene {
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text);
  margin-top: 14px;
  margin-bottom: 6px;
}
.sp-scene-first { margin-top: 0; }
.sp-action {
  margin-bottom: 14px;
  color: #d6c6e8;
}
.sp-character {
  text-transform: uppercase;
  text-align: center;
  margin-top: 12px;
  font-weight: 700;
  color: var(--text);
}
.sp-paren {
  text-align: center;
  color: var(--text-muted);
  font-style: italic;
}
.sp-dialogue {
  text-align: center;
  max-width: 60%;
  margin: 0 auto 8px;
  color: #e8dcf5;
}
.sp-cursor {
  display: inline-block;
  width: 1px;
  height: 1.05em;
  background: var(--magenta);
  vertical-align: text-bottom;
  box-shadow: 0 0 6px var(--magenta);
  animation: blink 1s steps(2) infinite;
}
.sp-typing {
  background: rgba(58, 255, 158, 0.12);
  border-bottom: 2px solid var(--green);
  padding: 0 2px;
  border-radius: 2px;
}
@keyframes blink {
  to { opacity: 0; }
}

/* //////////////////////////////////////// PROBLEM SECTION //////////////////////////////////// */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.problem-list { list-style: none; margin-top: 8px; }
.problem-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.02rem;
  color: var(--text);
}
.problem-list li .icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}
.icon-red { background: rgba(255, 91, 87, 0.12); color: #ff8a85; }
.icon-green { background: rgba(58, 255, 158, 0.12); color: var(--green); }

.focus-card {
  background:
    linear-gradient(135deg, rgba(214, 59, 255, 0.08) 0%, rgba(58, 255, 158, 0.06) 100%),
    var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.focus-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, var(--magenta-glow), transparent 60%);
  opacity: 0.18;
  pointer-events: none;
}
.focus-card h3 {
  font-size: 1.2rem;
  margin-bottom: 24px;
  position: relative;
}
.focus-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  position: relative;
}
.focus-bar-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  width: 150px;
  flex-shrink: 0;
}
.focus-bar-track {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  overflow: hidden;
}
.focus-bar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1s ease;
}
.fill-flow { background: var(--green); width: 95%; box-shadow: 0 0 12px var(--green-glow); }
.fill-craft { background: var(--magenta); width: 84%; box-shadow: 0 0 12px var(--magenta-glow); }
.fill-format { background: #ff5f57; width: 18%; }
.fill-typing { background: #ff5f57; width: 26%; }



/* ///////////////////////////////////////////////////FEATURES ////////////////////////////////////////////////*/




.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--magenta), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.feature-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px -16px var(--magenta-glow);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(214, 59, 255, 0.1);
  border: 1px solid rgba(214, 59, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--magenta);
  box-shadow: 0 0 16px -6px var(--magenta-glow);
}
.feature-icon.green {
  background: rgba(58, 255, 158, 0.08);
  border-color: rgba(58, 255, 158, 0.2);
  color: var(--green);
  box-shadow: 0 0 16px -6px var(--green-glow);
}
.feature-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--text); }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; }






/* //////////////////////////////////////BEFORE/AFTER //////////////////////////////////////////*/



.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
  align-items: stretch;
}
.compare-side {
  display: flex;
  flex-direction: column;
}
.compare-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.compare-label.before { color: var(--text-muted); }
.compare-label.after { color: var(--green); }
.compare-card {
  background: var(--bg-code);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  flex: 1;
  overflow: hidden;
}
.compare-card.after-card {
  border-color: rgba(58, 255, 158, 0.3);
  box-shadow: 0 0 32px -16px var(--green-glow);
}
.compare-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid var(--border);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.compare-body {
  padding: 22px 24px;
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  line-height: 1.7;
  min-height: 280px;
}
.messy-line {
  color: var(--text-muted);
  margin-bottom: 4px;
  padding: 2px 0;
}
.messy-line .crossed { text-decoration: line-through; opacity: 0.6; }
.messy-line.bad { color: #ff8a85; }








/* //////////////////////////////////////////////FORMATS GRID ///////////////////////////////////////////// */



.format-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.format-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
  transition: all 0.25s ease;
}
.format-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -12px var(--magenta-glow);
}
.format-card .format-ext {
  font-family: 'Courier New', monospace;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--magenta);
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.format-card .format-name { font-weight: 700; font-size: 1rem; margin-bottom: 4px; color: var(--text); }
.format-card .format-desc { font-size: 0.82rem; color: var(--text-muted); }
.format-card .format-tier {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 50px;
  margin-top: 10px;
  background: rgba(58, 255, 158, 0.12);
  color: var(--green);
  border: 1px solid rgba(58, 255, 158, 0.2);
}






/* ///////////////////////////////////////////////STEPS/////////////////////////////////////////////////////////// */


.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 28px 28px;
  counter-increment: step;
  transition: border-color 0.25s ease;
}
.step:hover { border-color: var(--border-bright); }
.step::before {
  content: counter(step);
  position: absolute;
  top: -20px;
  left: 28px;
  width: 40px;
  height: 40px;
  background: var(--bg-dark);
  color: var(--magenta);
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--magenta);
  box-shadow: 0 0 20px -4px var(--magenta-glow);
}
.step h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--text); }
.step p { color: var(--text-muted); font-size: 0.93rem; }








/* ////////////////////////////////////////////// QUOTE ///////////////////////////////////////////////////  */


.quote-section {
  text-align: center;
  padding: 90px 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 50%, rgba(214, 59, 255, 0.06), transparent);
}
.quote-section blockquote {
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  font-weight: 600;
  font-style: italic;
  max-width: 760px;
  margin: 0 auto 16px;
  line-height: 1.5;
  color: var(--text);
}
.quote-section blockquote::before {
  content: '\201C';
  display: block;
  font-size: 3rem;
  color: var(--magenta);
  line-height: 0.5;
  margin-bottom: 16px;
  opacity: 0.7;
}
.quote-section cite {
  font-style: normal;
  color: var(--text-muted);
  font-size: 0.95rem;
}







/* ///////////////////////////////////////////////////////FAQ ////////////////////////////////////////////// */


.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.faq-q {
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--text);
}
.faq-q::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--magenta);
  flex-shrink: 0;
  transition: transform 0.25s ease;
  font-weight: 300;
}
.faq-item.open .faq-q::after {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 280px;
  padding-top: 14px;
}

/* ===== CTA ===== */
.cta-section {
  text-align: center;
  padding: 120px 24px;
  position: relative;
  background:
    radial-gradient(ellipse 60% 60% at 50% 100%, rgba(214, 59, 255, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 60% at 50% 0%, rgba(58, 255, 158, 0.06), transparent 60%),
    var(--bg-dark);
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(214, 59, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 59, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000 20%, transparent 75%);
  pointer-events: none;
}
.cta-section > * { position: relative; z-index: 1; }
.cta-section h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: 18px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.cta-section p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 36px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}






/* ////////////////////////////////////// FOOTER ///////////////////////////////////////  */



footer {
  border-top: 1px solid var(--border);
  padding: 36px 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}
footer .footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
footer .footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--text);
}
footer .footer-logo img { height: 22px; width: 22px; }
footer .footer-links { display: flex; gap: 24px; }
footer .footer-links a { color: var(--text-muted); font-size: 0.85rem; }
footer .footer-links a:hover { color: var(--magenta); }






/* ///////////////////////////////////////////////////RESPONSIVE//////////////////////////////////////////////////  */


@media (max-width: 860px) {
  .problem-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
  .editor-body { grid-template-columns: 1fr; }
  .editor-sidebar { display: none; }
  .editor-script { padding: 20px 22px; font-size: 0.85rem; }
  nav .nav-links a:not(.btn-primary) { display: none; }
}








/* //////////////////////////////////////// ANIMATIONS //////////////////////////////////////////////////////////// */


@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.45s; }
