:root{
  /* Base surfaces — deep navy/near-black, not pure black */
  --bg: #060911;
  --bg-1: #0A0F1C;
  --bg-2: #0D1424;
  --bg-3: #111A2E;

  /* Text */
  --text: #EEF2F8;
  --text-soft: #9AA6BA;
  --text-faint: #66718A;

  /* Accents — SEO green + tech cyan, premium not neon */
  --green: #2ED88A;
  --green-deep: #17B871;
  --green-dim: #0F8F5A;
  --cyan: #3FC7F0;
  --cyan-deep: #1E9FCB;

  --green-glow: rgba(46,216,138,0.16);
  --green-glow-strong: rgba(46,216,138,0.35);
  --cyan-glow: rgba(63,199,240,0.16);
  --cyan-glow-strong: rgba(63,199,240,0.35);

  /* Glass */
  --glass: rgba(255,255,255,0.035);
  --glass-2: rgba(255,255,255,0.055);
  --glass-border: rgba(255,255,255,0.09);
  --glass-border-strong: rgba(255,255,255,0.16);

  --line: rgba(255,255,255,0.09);
  --line-soft: rgba(255,255,255,0.06);

  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;

  --shadow-soft: 0 40px 90px -40px rgba(0,0,0,0.6);
  --shadow-card: 0 20px 50px -24px rgba(0,0,0,0.55);
  --shadow-glow-green: 0 0 0 1px rgba(46,216,138,0.16), 0 20px 60px -28px rgba(46,216,138,0.35);
  --shadow-glow-cyan: 0 0 0 1px rgba(63,199,240,0.16), 0 20px 60px -28px rgba(63,199,240,0.3);

  --container: 1220px;
}

*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }

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

body{
  font-family:var(--font-body);
  color:var(--text);
  background:var(--bg);
  line-height:1.7;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  position:relative;
}

/* Faint ambient grid texture across the whole page — SaaS-dashboard cue,
   applied globally at very low opacity so it never competes with content */
body::before{
  content:'';
  position:fixed;
  inset:0;
  z-index:0;
  pointer-events:none;
  opacity:0.5;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size:64px 64px;
  mask-image:radial-gradient(ellipse 1200px 800px at 50% 0%, black, transparent 70%);
  -webkit-mask-image:radial-gradient(ellipse 1200px 800px at 50% 0%, black, transparent 70%);
}

h1,h2,h3{
  font-family:var(--font-display);
  color:var(--text);
  line-height:1.15;
  font-weight:600;
  letter-spacing:-0.01em;
}

img{ max-width:100%; display:block; }
a{ text-decoration:none; color:inherit; }
ul{ list-style:none; }

/* ==========================================================================
   READING PROGRESS BAR
   ========================================================================== */
.progress-bar{
  position:fixed;
  top:0; left:0; right:0;
  height:2px;
  z-index:1100;
  background:transparent;
  pointer-events:none;
}
.progress-bar span{
  display:block;
  height:100%;
  width:0%;
  background:linear-gradient(90deg, var(--green), var(--cyan));
  box-shadow:0 0 12px var(--green-glow-strong);
  transition:width 0.1s linear;
}

.section-inner{
  max-width:var(--container);
  margin:0 auto;
  padding:120px 32px;
  position:relative;
  z-index:1;
}
.section-inner.narrow{ max-width:800px; }

/* Chapter eyebrow */
.eyebrow{
  font-family:var(--font-mono);
  font-size:12px;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--green);
  margin-bottom:20px;
  font-weight:500;
  display:flex;
  align-items:center;
  gap:12px;
}
.eyebrow::before{
  content:'';
  width:26px; height:1px;
  background:var(--green);
  display:inline-block;
}
.eyebrow.center{ justify-content:center; }
.eyebrow.on-ink{ color:var(--cyan); }
.eyebrow.on-ink::before{ background:var(--cyan); }

h2{
  font-size:clamp(30px,4vw,44px);
  font-weight:600;
  margin-bottom:20px;
}
h2 em, h1 em{
  font-style:normal;
  background:linear-gradient(90deg, var(--green), var(--cyan));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.center{ text-align:center; margin-left:auto; margin-right:auto; }

.section-sub{
  color:var(--text-soft);
  font-size:17px;
  max-width:560px;
  margin-bottom:64px;
}
.section-sub.center{ margin-left:auto; margin-right:auto; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:16px 32px;
  border-radius:10px;
  font-family:var(--font-body);
  font-weight:600;
  font-size:13.5px;
  letter-spacing:0.03em;
  cursor:pointer;
  border:1px solid transparent;
  transition:transform 0.3s cubic-bezier(.2,.8,.2,1), box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space:nowrap;
  position:relative;
}
.btn-primary{
  background:linear-gradient(135deg, var(--green), var(--green-dim));
  color:#04150E;
}
.btn-primary:hover{
  box-shadow:0 18px 40px -14px var(--green-glow-strong);
  transform:translateY(-2px);
}
.btn-secondary{
  background:var(--glass);
  color:var(--text);
  border:1px solid var(--glass-border);
  backdrop-filter:blur(10px);
}
.btn-secondary:hover{
  border-color:var(--cyan);
  color:var(--cyan);
  box-shadow:0 0 0 1px rgba(63,199,240,0.2);
}
.btn-outline{
  background:transparent;
  color:var(--text);
  border:1px solid var(--line);
}
.btn-outline:hover{
  border-color:var(--green);
  color:var(--green);
  box-shadow:0 0 0 1px rgba(46,216,138,0.16);
}
.btn-full{ width:100%; }

.magnetic{ will-change:transform; }

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar{
  position:fixed;
  top:0; left:0; right:0;
  z-index:1000;
  background:rgba(6,9,17,0.6);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border-bottom:1px solid var(--line-soft);
  transition:background 0.3s ease, border-color 0.3s ease;
}
.nav-inner{
  max-width:var(--container);
  margin:0 auto;
  padding:20px 32px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.logo{
  font-family:var(--font-display);
  font-weight:600;
  font-size:19px;
  color:var(--text);
  letter-spacing:-0.01em;
  display:inline-flex;
  align-items:center;
  gap:9px;
}
.logo-mark{
  width:9px; height:9px;
  border-radius:3px;
  background:linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow:0 0 12px var(--green-glow-strong);
  flex-shrink:0;
}
.logo .logo-by{
  font-weight:400;
  color:var(--green);
  margin:0 2px;
  font-size:0.92em;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:36px;
}
.nav-link{
  font-size:13.5px;
  font-weight:500;
  letter-spacing:0.01em;
  color:var(--text-soft);
  position:relative;
  transition:color 0.2s ease;
}
.nav-link::after{
  content:'';
  position:absolute;
  left:0; bottom:-6px;
  width:0; height:2px;
  border-radius:2px;
  background:linear-gradient(90deg, var(--green), var(--cyan));
  transition:width 0.25s ease;
}
.nav-link:hover{ color:var(--text); }
.nav-link:hover::after{ width:100%; }

.nav-cta{
  background:linear-gradient(135deg, var(--green), var(--green-dim));
  color:#04150E !important;
  padding:11px 22px;
  border-radius:9px;
  font-weight:600;
  font-size:12.5px;
  letter-spacing:0.02em;
  transition:box-shadow 0.25s ease, transform 0.25s ease;
}
.nav-cta:hover{ box-shadow:0 14px 30px -10px var(--green-glow-strong); transform:translateY(-2px); }

.hamburger{
  display:none;
  flex-direction:column;
  gap:6px;
  background:none;
  border:none;
  cursor:pointer;
  padding:6px;
}
.hamburger span{
  width:22px; height:2px;
  border-radius:2px;
  background:var(--text);
  transition:transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1){ transform:translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2){ opacity:0; }
.hamburger.open span:nth-child(3){ transform:translateY(-8px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  padding:150px 32px 100px;
  background:
    radial-gradient(ellipse 900px 600px at 85% 10%, var(--cyan-glow), transparent 60%),
    radial-gradient(ellipse 900px 600px at 5% 90%, var(--green-glow), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-1) 100%);
  overflow:hidden;
}
.hero-bg{ position:absolute; inset:0; z-index:0; }
#linkCanvas{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}
.hero-glow{
  position:absolute;
  border-radius:50%;
  filter:blur(80px);
  pointer-events:none;
}
.hero-glow-a{
  width:420px; height:420px;
  top:-120px; right:8%;
  background:var(--cyan-glow-strong);
}
.hero-glow-b{
  width:360px; height:360px;
  bottom:-100px; left:2%;
  background:var(--green-glow-strong);
  opacity:0.6;
}

.hero-inner{
  position:relative;
  z-index:2;
  max-width:var(--container);
  margin:0 auto;
  width:100%;
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:56px;
  align-items:center;
}

.hero-content{ color:var(--text); }
.hero-kicker{
  font-family:var(--font-mono);
  font-size:12px;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color:var(--green);
  margin-bottom:24px;
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding:8px 16px;
  border:1px solid var(--glass-border);
  border-radius:100px;
  background:var(--glass);
  backdrop-filter:blur(10px);
}
.hero-content h1{
  font-size:clamp(36px,4.6vw,58px);
  font-weight:600;
  color:var(--text);
  margin-bottom:26px;
  letter-spacing:-0.02em;
}
.hero-sub{
  font-size:17.5px;
  color:var(--text-soft);
  max-width:560px;
  margin-bottom:44px;
  font-weight:300;
}
.hero-sub strong{ color:var(--text); font-weight:600; }

.hero-buttons{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:48px;
}

.trust-points{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.trust-points li{
  display:flex; align-items:center;
  gap:9px;
  padding:10px 16px;
  border-radius:100px;
  border:1px solid var(--glass-border);
  background:var(--glass);
  backdrop-filter:blur(10px);
  font-size:12px;
  letter-spacing:0.03em;
  color:var(--text-soft);
  font-weight:500;
  transition:border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}
.trust-points li:hover{
  border-color:var(--glass-border-strong);
  color:var(--text);
  background:var(--glass-2);
}
.trust-icon{
  width:15px; height:15px;
  flex-shrink:0;
  fill:none;
  stroke:var(--green);
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.scroll-cue{
  position:absolute;
  bottom:36px; left:50%;
  transform:translateX(-50%);
  z-index:2;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}
.scroll-cue-line{
  width:1px; height:44px;
  background:linear-gradient(to bottom, var(--green), transparent);
  position:relative;
  overflow:hidden;
}
.scroll-cue-line::after{
  content:'';
  position:absolute;
  top:-44px; left:0;
  width:1px; height:44px;
  background:var(--cyan);
  animation:cueflow 2.2s ease-in-out infinite;
}
@keyframes cueflow{
  0%{ top:-44px; }
  100%{ top:44px; }
}

/* Hero dashboard visual — decorative only, never real content */
.hero-visual{
  position:relative;
  height:460px;
}
.dash-card{
  position:absolute;
  background:var(--glass);
  border:1px solid var(--glass-border);
  border-radius:var(--radius-md);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  box-shadow:var(--shadow-card);
  padding:18px 20px;
}
.dash-card-head{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:11px;
  letter-spacing:0.05em;
  text-transform:uppercase;
  color:var(--text-soft);
  font-family:var(--font-mono);
  margin-bottom:12px;
}
.dash-dot{
  width:7px; height:7px;
  border-radius:50%;
  flex-shrink:0;
}
.dash-dot-green{ background:var(--green); box-shadow:0 0 8px var(--green-glow-strong); }
.dash-dot-cyan{ background:var(--cyan); box-shadow:0 0 8px var(--cyan-glow-strong); }

.dash-card-score{
  top:0; left:6%;
  width:180px;
  box-shadow:var(--shadow-glow-green);
}
.dash-card-value{
  font-family:var(--font-display);
  font-size:34px;
  font-weight:600;
  color:var(--text);
}
.dash-card-value-sm{ font-size:22px; }
.dash-card-unit{ font-size:14px; color:var(--text-faint); font-weight:500; margin-left:2px; }
.dash-sparkline{ margin-top:10px; }
.dash-sparkline svg{ width:100%; height:26px; }
.dash-sparkline polyline{
  fill:none;
  stroke:var(--green);
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.dash-card-wide{
  top:120px; right:0;
  width:250px;
  box-shadow:var(--shadow-glow-cyan);
}
.dash-graph svg{ width:100%; height:64px; display:block; }
.dash-graph-line{
  fill:none;
  stroke:var(--green);
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.dash-graph-labels{
  display:flex;
  justify-content:space-between;
  margin-top:8px;
  font-size:11px;
  color:var(--text-faint);
}
.dash-graph-up{ color:var(--green); font-weight:600; }

.dash-card-small{ width:140px; }
.dash-card-small.float-3{ bottom:60px; left:0; }
.dash-card-small.float-4{ bottom:14px; right:14%; }

.keyword-pills{
  position:absolute;
  inset:0;
  pointer-events:none;
}
.keyword-pill{
  position:absolute;
  font-family:var(--font-mono);
  font-size:11px;
  color:var(--green);
  background:rgba(46,216,138,0.08);
  border:1px solid rgba(46,216,138,0.25);
  padding:7px 14px;
  border-radius:100px;
  white-space:nowrap;
}
.keyword-pill-cyan{
  color:var(--cyan);
  background:rgba(63,199,240,0.08);
  border-color:rgba(63,199,240,0.25);
}
.keyword-pills .keyword-pill:nth-child(1){ top:40%; left:-4%; }
.keyword-pills .keyword-pill:nth-child(2){ top:8%; right:14%; }
.keyword-pills .keyword-pill:nth-child(3){ bottom:0; left:26%; }

.float-1{ animation:floatY 6s ease-in-out infinite; }
.float-2{ animation:floatY 7s ease-in-out infinite; animation-delay:0.4s; }
.float-3{ animation:floatY 6.5s ease-in-out infinite; animation-delay:0.8s; }
.float-4{ animation:floatY 5.5s ease-in-out infinite; animation-delay:1.2s; }
.float-5{ animation:floatY 7.5s ease-in-out infinite; animation-delay:0.2s; }
@keyframes floatY{
  0%, 100%{ transform:translateY(0); }
  50%{ transform:translateY(-10px); }
}

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
.reveal{
  opacity:0;
  transform:translateY(40px);
  transition:opacity 0.9s cubic-bezier(.2,.7,.2,1), transform 0.9s cubic-bezier(.2,.7,.2,1);
}
.reveal.in-view{ opacity:1; transform:translateY(0); }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about{ background:var(--bg-1); border-bottom:1px solid var(--line-soft); position:relative; }
.about-grid{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:80px;
  align-items:center;
}
.about-text p{ color:var(--text-soft); margin-bottom:18px; font-size:16px; }
.about-text p:last-child{ margin-bottom:0; }
.about-text strong{ color:var(--text); font-weight:600; }

.about-image{ position:relative; }
.about-image-glow{
  position:absolute;
  inset:-30px;
  background:radial-gradient(circle at 30% 20%, var(--green-glow), transparent 60%);
  filter:blur(30px);
  z-index:0;
}
.about-image-frame{
  position:relative;
  z-index:1;
  padding:10px;
  border-radius:var(--radius-lg);
  border:1px solid var(--glass-border);
  background:var(--glass);
  backdrop-filter:blur(10px);
}
.about-image img{
  width:100%;
  aspect-ratio:7/8;
  object-fit:cover;
  border-radius:calc(var(--radius-lg) - 6px);
  filter:saturate(0.92) contrast(1.03);
}
.about-badge{
  position:absolute;
  z-index:2;
  bottom:-1px; left:-1px;
  background:var(--bg-2);
  border:1px solid var(--glass-border);
  border-radius:0 var(--radius-md) 0 var(--radius-lg);
  color:var(--text);
  padding:20px 24px;
  display:flex;
  flex-direction:column;
  gap:4px;
  min-width:150px;
  box-shadow:var(--shadow-glow-green);
}
.about-badge strong{
  font-family:var(--font-display);
  font-size:28px;
  font-weight:600;
  color:var(--green);
}
.about-badge span{
  font-size:11px;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:var(--text-soft);
}

/* ==========================================================================
   SERVICES / WHY
   ========================================================================== */
.services{ background:var(--bg); position:relative; }
.services .section-sub{ color:var(--text-soft); }

.card-grid{ display:grid; gap:20px; }
.services-grid{ grid-template-columns:repeat(3,1fr); }

.service-card{
  background:var(--glass);
  border:1px solid var(--glass-border);
  border-radius:var(--radius-lg);
  padding:36px 30px;
  transition:transform 0.35s cubic-bezier(.2,.8,.2,1), border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
  position:relative;
}
.service-card:hover{
  transform:translateY(-6px);
  border-color:rgba(46,216,138,0.35);
  box-shadow:var(--shadow-glow-green);
  background:var(--glass-2);
}
.service-icon{
  width:44px; height:44px;
  display:flex; align-items:center; justify-content:center;
  border-radius:var(--radius-sm);
  background:rgba(46,216,138,0.1);
  margin-bottom:20px;
}
.service-icon svg{
  width:22px; height:22px;
  fill:none;
  stroke:var(--green);
  stroke-width:1.7;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.service-index{
  font-family:var(--font-mono);
  font-size:12px;
  color:var(--cyan);
  margin-bottom:10px;
  display:block;
}
.service-card h3{
  font-size:19px;
  color:var(--text);
  margin-bottom:12px;
  font-weight:600;
}
.service-card p{
  color:var(--text-soft);
  font-size:14.5px;
}
.service-card p strong{ color:var(--green); font-weight:600; }

.why{ background:var(--bg-1); }
.why-grid{ grid-template-columns:repeat(3,1fr); }
.why-card{
  background:var(--glass);
  border:1px solid var(--glass-border);
  border-radius:var(--radius-lg);
  padding:34px 28px;
  transition:border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.why-card:hover{
  border-color:rgba(63,199,240,0.35);
  transform:translateY(-4px);
  box-shadow:var(--shadow-glow-cyan);
}
.why-card h3{
  font-size:18px;
  margin-bottom:10px;
  font-weight:600;
}
.why-card p{ color:var(--text-soft); font-size:14.5px; }
.why-card p strong{ color:var(--green); font-weight:600; }
.why-mark{
  width:36px; height:36px;
  border-radius:var(--radius-sm);
  border:1px solid var(--glass-border);
  background:rgba(63,199,240,0.08);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:18px;
  color:var(--cyan);
  font-family:var(--font-mono);
  font-size:13px;
  font-weight:600;
}

/* ==========================================================================
   PACKAGES
   ========================================================================== */
.packages{ background:var(--bg); }

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  align-items:stretch;
}
.price-card{
  background:var(--glass);
  border:1px solid var(--glass-border);
  border-radius:var(--radius-lg);
  padding:42px 32px;
  position:relative;
  transition:transform 0.35s cubic-bezier(.2,.8,.2,1), border-color 0.35s ease, box-shadow 0.35s ease;
  display:flex;
  flex-direction:column;
}
.price-card:hover{ transform:translateY(-6px); border-color:var(--glass-border-strong); }
.price-card h3{ font-size:19px; margin-bottom:6px; font-weight:600; }
.price-card-sub{
  font-family:var(--font-mono);
  font-size:11.5px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--text-faint);
  margin-bottom:26px;
}
.price{
  font-family:var(--font-display);
  font-size:44px;
  font-weight:600;
  margin-bottom:28px;
  display:flex;
  align-items:baseline;
  gap:2px;
  color:var(--text);
}
.price .currency{ font-size:22px; color:var(--green); }
.price .per{ font-size:13px; font-weight:400; color:var(--text-faint); margin-left:6px; font-family:var(--font-body); }
.price-features{ margin-bottom:28px; border-top:1px solid var(--line); padding-top:22px; flex:1; }
.price-features li{
  padding:10px 0;
  font-size:14px;
  color:var(--text-soft);
  padding-left:26px;
  position:relative;
}
.price-features li::before{
  content:'';
  position:absolute;
  left:0; top:14px;
  width:14px; height:14px;
  background:var(--green);
  -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
  mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
}
.price-best{
  font-size:13px;
  color:var(--text-faint);
  margin-bottom:24px;
  font-style:italic;
}

.price-card-featured{
  background:linear-gradient(180deg, rgba(46,216,138,0.08), var(--glass-2));
  border-color:rgba(46,216,138,0.4);
  box-shadow:var(--shadow-glow-green);
  transform:scale(1.03);
}
.price-card-featured:hover{ transform:scale(1.03) translateY(-6px); }

.badge{
  position:absolute;
  top:-1px; right:28px;
  background:linear-gradient(135deg, var(--green), var(--cyan));
  color:#04150E;
  font-size:10.5px;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  padding:7px 14px;
  border-radius:0 0 8px 8px;
}

/* ==========================================================================
   AUTHORITY / APPROACH — connected process flow
   ========================================================================== */
.authority{ background:var(--bg-1); position:relative; }
.authority-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:72px;
  align-items:center;
}
.authority-text p{ color:var(--text-soft); margin-bottom:18px; font-size:16px; }
.authority-text strong{ color:var(--green); font-weight:600; }

.feature-boxes{ position:relative; padding-left:2px; }
.feature-box{
  position:relative;
  padding:0 0 40px 46px;
}
.feature-box:last-child{ padding-bottom:0; }
.feature-box::before{
  /* connecting line between numbered steps */
  content:'';
  position:absolute;
  left:15px; top:34px; bottom:-6px;
  width:1px;
  background:linear-gradient(to bottom, var(--glass-border-strong), transparent);
}
.feature-box:last-child::before{ display:none; }
.feature-index{
  position:absolute;
  left:0; top:0;
  width:32px; height:32px;
  border-radius:50%;
  border:1px solid var(--glass-border-strong);
  background:var(--bg-2);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-mono);
  font-size:12px;
  color:var(--green);
  box-shadow:0 0 0 4px var(--bg-1);
}
.feature-box h3{ font-size:17px; color:var(--text); margin-bottom:6px; font-weight:600; }
.feature-box p{ font-size:14px; color:var(--text-soft); }

/* ==========================================================================
   LONG SEO CONTENT
   ========================================================================== */
.seo-content{ background:var(--bg); }
.content-body{
  background:var(--glass);
  border:1px solid var(--glass-border);
  border-radius:var(--radius-lg);
  padding:48px;
}
.content-body p{
  color:var(--text-soft);
  margin-bottom:22px;
  font-size:16.5px;
}
.content-body p:last-child{ margin-bottom:0; }
.content-body strong{
  color:var(--green);
  font-weight:600;
  background-image:linear-gradient(var(--green), var(--green));
  background-repeat:no-repeat;
  background-position:0 100%;
  background-size:100% 1px;
  padding-bottom:1px;
}
.content-body p:first-of-type::first-letter{
  font-family:var(--font-display);
  font-size:52px;
  font-weight:600;
  float:left;
  line-height:0.85;
  padding-right:10px;
  padding-top:6px;
  color:var(--green);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq{ background:var(--bg-1); }
.faq-list{ display:flex; flex-direction:column; gap:14px; }
.faq-item{
  background:var(--glass);
  border:1px solid var(--glass-border);
  border-radius:var(--radius-md);
  transition:border-color 0.3s ease, box-shadow 0.3s ease;
  overflow:hidden;
}
.faq-item.open{
  border-color:rgba(46,216,138,0.35);
  box-shadow:var(--shadow-glow-green);
}
.faq-question{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:22px 24px;
  background:none;
  border:none;
  cursor:pointer;
  text-align:left;
  font-family:var(--font-display);
  font-size:16.5px;
  font-weight:600;
  color:var(--text);
  transition:color 0.25s ease;
}
.faq-question:hover{ color:var(--green); }
.faq-icon{
  font-family:var(--font-body);
  font-size:18px;
  color:var(--green);
  transition:transform 0.35s ease;
  flex-shrink:0;
}
.faq-item.open .faq-icon{ transform:rotate(135deg); }

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.4s ease, padding 0.4s ease;
  padding:0 24px;
}
.faq-item.open .faq-answer{ padding:0 24px 24px; }
.faq-answer p{ color:var(--text-soft); font-size:15px; max-width:640px; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact{ background:var(--bg); }

.contact-panel{
  background:var(--glass);
  border:1px solid var(--glass-border);
  border-radius:var(--radius-lg);
  padding:48px;
  position:relative;
  box-shadow:var(--shadow-card);
}

.whatsapp-cta{
  display:flex;
  align-items:center;
  gap:20px;
  padding:24px 26px;
  border-radius:var(--radius-md);
  background:linear-gradient(135deg, rgba(46,216,138,0.16), rgba(63,199,240,0.1));
  color:var(--text);
  border:1px solid rgba(46,216,138,0.3);
  transition:transform 0.3s cubic-bezier(.2,.8,.2,1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.whatsapp-cta:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow-glow-green);
  border-color:rgba(46,216,138,0.5);
}
.whatsapp-cta-icon{
  width:52px; height:52px;
  flex-shrink:0;
  border-radius:50%;
  background:rgba(46,216,138,0.16);
  color:var(--green);
  display:flex;
  align-items:center;
  justify-content:center;
}
.whatsapp-cta-text{
  display:flex;
  flex-direction:column;
  gap:4px;
  flex:1;
}
.whatsapp-cta-text strong{
  font-family:var(--font-display);
  font-size:18px;
  font-weight:600;
  color:var(--text);
}
.whatsapp-cta-text span{
  font-size:13.5px;
  color:var(--text-soft);
}
.whatsapp-cta-arrow{
  font-size:20px;
  color:var(--green);
  transition:transform 0.3s ease;
  flex-shrink:0;
}
.whatsapp-cta:hover .whatsapp-cta-arrow{ transform:translateX(6px); }

.chips-label{
  font-size:12px;
  letter-spacing:0.05em;
  text-transform:uppercase;
  color:var(--text-faint);
  margin:34px 0 18px;
  text-align:center;
}

.topic-chips{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
  margin-bottom:34px;
}
.topic-chip{
  padding:11px 20px;
  border-radius:100px;
  border:1px solid var(--glass-border);
  font-size:13.5px;
  font-weight:500;
  color:var(--text-soft);
  transition:border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}
.topic-chip:hover{
  border-color:var(--cyan);
  color:var(--cyan);
  background:rgba(63,199,240,0.08);
}

.phone-line{
  text-align:center;
  font-size:12px;
  letter-spacing:0.04em;
  text-transform:uppercase;
  color:var(--text-faint);
  padding-top:24px;
  border-top:1px solid var(--line);
  margin-bottom:10px;
}
.contact-details{
  text-align:center;
  font-family:var(--font-display);
  font-size:16px;
  color:var(--green);
  font-weight:600;
}
.contact-details a{
  color:var(--green);
  transition:color 0.2s ease;
}
.contact-details a:hover{ color:var(--cyan); }
.contact-sep{
  margin:0 12px;
  color:var(--text-faint);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer{
  background:var(--bg-1);
  color:var(--text-soft);
  padding-top:64px;
  position:relative;
  border-top:1px solid transparent;
  background-image:linear-gradient(var(--bg-1), var(--bg-1)), linear-gradient(90deg, var(--green), var(--cyan));
  background-origin:border-box;
  background-clip:padding-box, border-box;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  flex-wrap:wrap;
  gap:32px;
  padding-bottom:40px;
}
.footer-name{
  font-family:var(--font-display);
  font-size:23px;
  font-weight:600;
  color:var(--text);
  margin-bottom:8px;
}
.footer-name em{ color:var(--green); font-style:normal; }
.footer-title{ font-size:13px; color:var(--text-faint); margin-bottom:12px; letter-spacing:0.01em; }
.footer-tags{
  font-family:var(--font-mono);
  font-size:11px;
  letter-spacing:0.04em;
  color:var(--text-faint);
}
.footer-links{ display:flex; gap:26px; flex-wrap:wrap; }
.footer-links a{
  font-size:13px;
  letter-spacing:0.02em;
  color:var(--text-soft);
  transition:color 0.2s ease;
}
.footer-links a:hover{ color:var(--green); }
.footer-copy{
  text-align:center;
  font-size:12px;
  color:var(--text-faint);
  padding:24px 0;
  border-top:1px solid var(--line-soft);
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.whatsapp-btn{
  position:fixed;
  right:28px;
  bottom:28px;
  z-index:900;
  width:58px;
  height:58px;
  border-radius:50%;
  background:#25D366;
  color:#04150E;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 12px 28px -8px rgba(37,211,102,0.55), 0 0 0 1px rgba(6,9,17,0.3);
  transition:transform 0.3s cubic-bezier(.2,.8,.2,1), box-shadow 0.3s ease;
  animation:whatsappPulse 2.6s ease-in-out infinite;
}
.whatsapp-btn:hover{
  transform:translateY(-4px) scale(1.05);
  box-shadow:0 18px 36px -8px rgba(37,211,102,0.65), 0 0 0 1px rgba(6,9,17,0.3);
}
@keyframes whatsappPulse{
  0%, 100%{ box-shadow:0 12px 28px -8px rgba(37,211,102,0.55), 0 0 0 0 rgba(37,211,102,0.35); }
  50%{ box-shadow:0 12px 28px -8px rgba(37,211,102,0.55), 0 0 0 10px rgba(37,211,102,0); }
}
@media (prefers-reduced-motion: reduce){
  .whatsapp-btn{ animation:none; }
  .float-1,.float-2,.float-3,.float-4,.float-5{ animation:none; }
}

@media (max-width:760px){
  .whatsapp-btn{
    right:18px;
    bottom:18px;
    width:52px;
    height:52px;
  }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width:980px){
  .hero-inner{ grid-template-columns:1fr; gap:64px; text-align:center; }
  .hero-content{ display:flex; flex-direction:column; align-items:center; }
  .hero-buttons{ justify-content:center; }
  .trust-points{ justify-content:center; }
  .hero-visual{ height:340px; max-width:460px; margin:0 auto; width:100%; }

  .about-grid, .authority-grid{ grid-template-columns:1fr; gap:52px; }
  .about-image{ order:-1; max-width:420px; margin:0 auto; }
  .services-grid{ grid-template-columns:repeat(2,1fr); }
  .why-grid{ grid-template-columns:repeat(2,1fr); }
  .pricing-grid{ grid-template-columns:1fr; }
  .price-card-featured{ transform:none; order:-1; }
  .price-card-featured:hover{ transform:translateY(-6px); }
}

/* Nav switches to the hamburger menu earlier than other content, since the
   desktop nav links + CTA start wrapping around ~800-840px (e.g. iPad
   portrait at 768px) well before the rest of the layout needs to adjust. */
@media (max-width:880px){
  .nav-links{
    position:fixed;
    top:71px; right:0;
    height:calc(100vh - 71px);
    width:min(80vw,320px);
    background:var(--bg-1);
    border-left:1px solid var(--line);
    flex-direction:column;
    align-items:flex-start;
    padding:40px 30px;
    gap:26px;
    box-shadow:-14px 0 50px -24px rgba(0,0,0,0.5);
    transform:translateX(100%);
    transition:transform 0.4s cubic-bezier(.2,.8,.2,1);
  }
  .nav-links.open{ transform:translateX(0); }
  .nav-cta{ margin-top:10px; }
  .hamburger{ display:flex; }
}

@media (max-width:760px){
  .section-inner{ padding:80px 24px; }

  .services-grid{ grid-template-columns:1fr; }
  .why-grid{ grid-template-columns:1fr; }
  .content-body{ padding:28px 24px; }
  .contact-panel{ padding:30px 22px; }
  .whatsapp-cta{ flex-wrap:wrap; padding:22px; }
  .whatsapp-cta-arrow{ display:none; }
  .footer-inner{ flex-direction:column; }
  .content-body p:first-of-type::first-letter{ font-size:42px; }
  .dash-card-wide{ display:none; }
}

/* ==========================================================================
   TOOLS — Meta Title & Description Checker
   ========================================================================== */
.nav-link-active{ color:var(--green) !important; }
.nav-link-active::after{ width:100% !important; }

.tool-hero{ min-height:auto; padding-top:180px; padding-bottom:100px; }
.tool-hero-inner{ display:flex; justify-content:center; }
.tool-hero-content{ max-width:720px; text-align:center; align-items:center; display:flex; flex-direction:column; }
.tool-hero-content .hero-buttons{ justify-content:center; }
.tool-hero-content .trust-points{ justify-content:center; }

.tool-section{ background:var(--bg); }
.tool-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:28px;
  align-items:start;
}

/* --- Input card --- */
.tool-card{
  background:var(--glass);
  border:1px solid var(--glass-border);
  border-radius:var(--radius-lg);
  padding:40px;
  box-shadow:var(--shadow-card);
}
.tool-field{ margin-bottom:28px; }
.tool-field:last-of-type{ margin-bottom:32px; }
.tool-field-head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}
.tool-field label{
  font-family:var(--font-display);
  font-size:14px;
  font-weight:600;
  color:var(--text);
}
.tool-optional{
  font-family:var(--font-body);
  font-weight:400;
  font-size:12px;
  color:var(--text-faint);
}
.tool-count{
  font-family:var(--font-mono);
  font-size:12px;
  color:var(--text-faint);
  transition:color 0.2s ease;
  white-space:nowrap;
}
.tool-count.count-short{ color:#F0A93F; }
.tool-count.count-good{ color:var(--green); }
.tool-count.count-long{ color:#F0603F; }

.tool-input{
  width:100%;
  background:var(--bg-2);
  border:1px solid var(--glass-border);
  border-radius:var(--radius-sm);
  padding:14px 16px;
  color:var(--text);
  font-family:var(--font-body);
  font-size:15px;
  transition:border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.tool-input::placeholder{ color:var(--text-faint); }
.tool-input:focus{
  outline:none;
  border-color:var(--green);
  background:var(--bg-3);
  box-shadow:0 0 0 3px rgba(46,216,138,0.14);
}
.tool-textarea{ resize:vertical; min-height:96px; line-height:1.6; }

.tool-status{
  margin-top:9px;
  font-size:13px;
  color:var(--text-faint);
  display:flex;
  align-items:center;
  gap:8px;
}
.tool-status::before{
  content:'';
  width:7px; height:7px;
  border-radius:50%;
  background:var(--text-faint);
  flex-shrink:0;
}
.tool-status[data-state="short"]{ color:#F0A93F; }
.tool-status[data-state="short"]::before{ background:#F0A93F; box-shadow:0 0 8px rgba(240,169,63,0.5); }
.tool-status[data-state="warn"]{ color:#F0A93F; }
.tool-status[data-state="warn"]::before{ background:#F0A93F; box-shadow:0 0 8px rgba(240,169,63,0.5); }
.tool-status[data-state="good"]{ color:var(--green); }
.tool-status[data-state="good"]::before{ background:var(--green); box-shadow:0 0 8px var(--green-glow-strong); }
.tool-status[data-state="long"]{ color:#F0603F; }
.tool-status[data-state="long"]::before{ background:#F0603F; box-shadow:0 0 8px rgba(240,96,63,0.5); }

.tool-actions{ display:flex; gap:14px; flex-wrap:wrap; }
.tool-copy-msg{
  margin-top:14px;
  font-size:13px;
  color:var(--green);
  min-height:18px;
  font-family:var(--font-mono);
}

/* --- SERP preview card --- */
.serp-card{
  background:var(--glass);
  border:1px solid var(--glass-border);
  border-radius:var(--radius-lg);
  padding:32px;
  box-shadow:var(--shadow-card);
  position:sticky;
  top:110px;
}
.serp-label{
  font-family:var(--font-mono);
  font-size:12px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--cyan);
  margin-bottom:18px;
}
.serp-preview{
  background:#FFFFFF;
  border-radius:var(--radius-md);
  padding:22px 22px 24px;
  box-shadow:0 20px 50px -28px rgba(0,0,0,0.55);
}
.serp-url-row{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:6px;
}
.serp-favicon{
  width:28px; height:28px;
  border-radius:50%;
  flex-shrink:0;
  background:linear-gradient(135deg, var(--green), var(--cyan));
}
.serp-url-text{ display:flex; flex-direction:column; overflow:hidden; }
.serp-site-name{
  font-family:Arial,sans-serif;
  font-size:14px;
  color:#202124;
  font-weight:500;
}
.serp-url{
  font-family:Arial,sans-serif;
  font-size:12.5px;
  color:#4d5156;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.serp-title{
  font-family:Arial,sans-serif;
  font-size:20px;
  line-height:1.3;
  color:#1a0dab;
  margin:6px 0 6px;
  overflow-wrap:break-word;
}
.serp-desc{
  font-family:Arial,sans-serif;
  font-size:14px;
  line-height:1.58;
  color:#4d5156;
  overflow-wrap:break-word;
}
.serp-guide-mini{
  margin-top:24px;
  padding-top:20px;
  border-top:1px solid var(--line);
}
.serp-guide-heading{
  font-family:var(--font-mono);
  font-size:11px;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:var(--text-faint);
  margin-bottom:12px;
}
.guide-row{
  display:flex;
  align-items:center;
  gap:9px;
  font-size:13px;
  color:var(--text-soft);
  padding:5px 0;
}
.dot{ width:8px; height:8px; border-radius:50%; flex-shrink:0; }
.dot-good{ background:var(--green); box-shadow:0 0 8px var(--green-glow-strong); }
.dot-bad{ background:#F0603F; box-shadow:0 0 8px rgba(240,96,63,0.5); }

@media (max-width:980px){
  .tool-grid{ grid-template-columns:1fr; }
  .serp-card{ position:static; }
}

@media (max-width:760px){
  .tool-hero{ padding-top:150px; padding-bottom:70px; }
  .tool-card{ padding:28px 22px; }
  .serp-card{ padding:24px 20px; }
  .serp-preview{ padding:18px 16px 20px; }
  .serp-title{ font-size:18px; }
  .tool-actions{ flex-direction:column; }
  .tool-actions .btn{ width:100%; }
}


/* ==========================================================================
   NAVBAR — Tools dropdown menu
   ========================================================================== */
.nav-dropdown{ position:relative; }
.nav-dropdown-trigger{
  display:inline-flex;
  align-items:center;
  gap:6px;
  background:none;
  border:none;
  padding:0;
  font-family:var(--font-body);
  cursor:pointer;
}
.nav-dropdown-arrow{
  width:11px; height:11px;
  fill:none;
  stroke:currentColor;
  stroke-width:2.2;
  stroke-linecap:round;
  stroke-linejoin:round;
  transition:transform 0.25s ease;
}
.nav-dropdown.open .nav-dropdown-arrow{ transform:rotate(180deg); }

/* Outer wrapper sits flush against the trigger (no gap) and carries an
   invisible top buffer, so the mouse never leaves a hoverable area while
   moving from the "Tools" link down into the menu. The visible glass
   card is the inner .nav-dropdown-panel, offset below the buffer. */
.nav-dropdown-menu{
  position:absolute;
  top:100%;
  left:50%;
  width:270px;
  padding-top:14px;
  transform:translateX(-50%) translateY(-6px);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index:1200;
}
.nav-dropdown.open .nav-dropdown-menu{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translateX(-50%) translateY(0);
}
@media (hover:hover) and (pointer:fine){
  .nav-dropdown:hover .nav-dropdown-arrow{ transform:rotate(180deg); }
  .nav-dropdown:hover .nav-dropdown-menu{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateX(-50%) translateY(0);
  }
}

.nav-dropdown-panel{
  background:var(--bg-2);
  border:1px solid var(--glass-border);
  border-radius:var(--radius-md);
  box-shadow:var(--shadow-card);
  padding:7px;
}

.nav-dropdown-item{
  display:flex;
  align-items:center;
  gap:11px;
  padding:11px 12px;
  border-radius:var(--radius-sm);
  transition:background 0.2s ease;
}
.nav-dropdown-item:hover{ background:var(--glass-2); }
.nav-dropdown-item-icon{
  width:30px; height:30px;
  border-radius:var(--radius-sm);
  background:rgba(46,216,138,0.1);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.nav-dropdown-item-icon svg{
  width:15px; height:15px;
  fill:none;
  stroke:var(--green);
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.nav-dropdown-item-text{
  font-size:13.5px;
  color:var(--text);
  font-weight:600;
  font-family:var(--font-body);
}
.nav-dropdown-item-active{ background:rgba(46,216,138,0.08); }
.nav-dropdown-item-active .nav-dropdown-item-text{ color:var(--green); }

/* Inside the mobile hamburger sidebar, the dropdown becomes an inline
   accordion instead of a floating panel. */
@media (max-width:880px){
  .nav-dropdown{ width:100%; }
  .nav-dropdown-trigger{ width:100%; justify-content:space-between; }
  .nav-dropdown-menu{
    position:static;
    transform:none !important;
    width:100%;
    padding-top:0;
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    max-height:0;
    overflow:hidden;
    transition:max-height 0.35s ease, margin 0.35s ease;
  }
  .nav-dropdown.open .nav-dropdown-menu{
    max-height:260px;
    margin-top:10px;
  }
  .nav-dropdown-panel{
    background:rgba(255,255,255,0.03);
    border-color:var(--line-soft);
    box-shadow:none;
  }
}

/* ==========================================================================
   TOOLS — Sitemap XML Generator
   ========================================================================== */
.sitemap-textarea{
  font-family:var(--font-mono);
  font-size:13.5px;
  min-height:170px;
}

.tool-select{
  cursor:pointer;
  appearance:none;
  -webkit-appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239AA6BA' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 14px center;
  background-size:14px;
  padding-right:38px;
}
input[type="date"].tool-select{ appearance:auto; -webkit-appearance:auto; padding-right:16px; }
input[type="date"].tool-select::-webkit-calendar-picker-indicator{ filter:invert(0.7); cursor:pointer; }

.sitemap-settings{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-bottom:32px;
}
.sitemap-settings-field{ margin-bottom:0; }
.sitemap-settings-field label{
  display:block;
  margin-bottom:10px;
}

.sitemap-output-card{ display:flex; flex-direction:column; }
.sitemap-output-head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}
.sitemap-output-head .serp-label{ margin-bottom:0; }

.sitemap-output{
  background:var(--bg-2);
  border:1px solid var(--glass-border);
  border-radius:var(--radius-md);
  padding:20px;
  max-height:360px;
  overflow:auto;
  font-family:var(--font-mono);
  font-size:12.5px;
  line-height:1.7;
  color:var(--text-soft);
  white-space:pre;
}
.sitemap-output code{
  font-family:var(--font-mono);
  color:var(--text-soft);
  white-space:pre;
}
.sitemap-output .xml-tag{ color:var(--cyan); }
.sitemap-output .xml-value{ color:var(--green); }

.sitemap-output-actions{ margin:18px 0 0; }

@media (max-width:760px){
  .sitemap-settings{ grid-template-columns:1fr; gap:20px; }
  .sitemap-output{ font-size:11.5px; padding:16px; max-height:280px; }
  .sitemap-output-actions{ flex-direction:column; }
  .sitemap-output-actions .btn{ width:100%; }
}
