/* =========================================================
   WP SEO Report — marketing site
   Styling inspired by the Piku "Hosting" template:
   clean white sections, bright cyan/teal accent, deep-blue
   secondary, dark charcoal footer, softly rounded cards,
   generous whitespace. Self-contained, responsive, theme-aware.
   ========================================================= */

:root {
  /* Brand — cyan / teal accent with deep-blue secondary */
  --cyan-300: #67e8f9;
  --cyan-400: #22d3ee;
  --cyan-500: #06b6d4;
  --cyan-600: #0891b2;
  --cyan-700: #0e7490;
  --cyan-soft: #ecfdff;

  --blue-700: #1d4ed8;
  --blue-800: #1e40af;

  /* Amelia-style deep navy for headings & dark sections */
  --ink: #16193f;
  --navy: #16193f;
  --navy-2: #1e2347;
  --charcoal: #16193f;
  --charcoal-2: #1e2347;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;

  --bg: #ffffff;
  --bg-alt: #f5f7fb;
  --surface: #ffffff;
  --border: #e7eaf1;
  --text: #3a3f5c;
  --text-muted: #6b7192;
  --heading: var(--navy);

  --accent: var(--cyan-600);
  --accent-bright: var(--cyan-500);
  --accent-ink: #ffffff;

  --tag-content: #2563eb;
  --tag-seo: var(--cyan-600);
  --tag-link: #059669;
  --tag-img: #d97706;

  --radius: 14px;
  --radius-lg: 20px;
  --radius-sm: 9px;
  --radius-btn: 999px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .05), 0 2px 6px rgba(15, 23, 42, .05);
  --shadow: 0 14px 34px -18px rgba(15, 23, 42, .22);
  --shadow-lg: 0 34px 60px -26px rgba(8, 145, 178, .32);
  --container: 1160px;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0b1220;
    --bg-alt: #0e1626;
    --surface: #131c2e;
    --border: #24314a;
    --text: #e6ecf5;
    --text-muted: #9db0cc;
    --heading: #f4f8fd;
    --cyan-soft: #0c2430;
    --shadow: 0 14px 36px -16px rgba(0, 0, 0, .6);
    --shadow-lg: 0 34px 60px -26px rgba(0, 0, 0, .7);
    --accent: var(--cyan-400);
    --accent-bright: var(--cyan-400);
  }
}
:root[data-theme="dark"] {
  --bg: #0b1220; --bg-alt: #0e1626; --surface: #131c2e; --border: #24314a;
  --text: #e6ecf5; --text-muted: #9db0cc; --heading: #f4f8fd; --cyan-soft: #0c2430;
  --accent: var(--cyan-400); --accent-bright: var(--cyan-400);
}
:root[data-theme="light"] {
  --bg: #ffffff; --bg-alt: #f5f7fb; --surface: #ffffff; --border: #e7eaf1;
  --text: #3a3f5c; --text-muted: #6b7192; --heading: #16193f; --cyan-soft: #ecfdff;
  --accent: var(--cyan-600); --accent-bright: var(--cyan-500);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  padding-top: 70px; /* offset for the fixed header */
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { color: var(--heading); line-height: 1.14; margin: 0 0 .5em; letter-spacing: -.022em; }
h1 { font-size: clamp(2.2rem, 5.2vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1rem; }
code { font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; font-size: .88em; background: var(--cyan-soft); color: var(--accent); padding: .12em .4em; border-radius: 5px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.container-narrow { max-width: 780px; }

.skip-link { position: absolute; left: -999px; top: 0; z-index: 100; background: var(--accent); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }

.grad {
  background: linear-gradient(100deg, var(--cyan-500), var(--blue-700), var(--cyan-400), var(--cyan-500));
  background-size: 300% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: gradflow 8s ease infinite;
}
@keyframes gradflow { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@media (prefers-reduced-motion: reduce) { .grad { animation: none; } }

/* Scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%; z-index: 60;
  background: linear-gradient(90deg, var(--cyan-400), var(--blue-700));
  transition: width .1s linear;
}

/* ---------- Buttons ---------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-weight: 650; font-size: 1rem; padding: .82em 1.5em; border-radius: var(--radius-btn);
  border: 1px solid transparent; cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-20deg); transition: left .5s ease;
}
.btn:hover::after { left: 160%; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: .58em 1.15em; font-size: .92rem; }
.btn-primary { background: linear-gradient(180deg, var(--cyan-500), var(--cyan-700)); color: #fff; box-shadow: 0 10px 22px -10px rgba(8, 145, 178, .8); }
.btn-primary:hover { box-shadow: 0 14px 28px -10px rgba(8, 145, 178, .9); }
.btn-ghost { background: var(--surface); color: var(--heading); border-color: var(--border); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: var(--cyan-500); color: var(--accent); }
.btn-light { background: #fff; color: var(--cyan-700); }
.btn-light:hover { background: var(--cyan-soft); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-outline:hover { background: rgba(255,255,255,.12); }

.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 700; color: var(--accent); margin: 0 0 .8rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; gap: 20px; height: 70px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; color: var(--heading); letter-spacing: -.02em; }
.brand-mark { border-radius: 9px; flex: none; }
.brand-text { font-size: 1.04rem; }
.wp-badge { font-size: .66rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--accent); background: var(--cyan-soft); border: 1px solid color-mix(in srgb, var(--cyan-500) 30%, transparent); padding: 3px 8px; border-radius: 999px; white-space: nowrap; }
@media (max-width: 420px) { .wp-badge { display: none; } }
.main-nav { display: flex; gap: 4px; margin-left: auto; }
.main-nav a { padding: 8px 13px; border-radius: 8px; color: var(--text-muted); font-weight: 550; font-size: .95rem; transition: color .15s, background .15s; }
.main-nav a:hover { color: var(--heading); background: var(--cyan-soft); }
.header-actions { display: flex; align-items: center; gap: 12px; margin-left: 8px; }
.cta-short { display: none; }

.nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--border); background: var(--surface); border-radius: 10px; cursor: pointer; padding: 0; flex-direction: column; align-items: center; justify-content: center; gap: 4px; }
.nav-toggle span { width: 18px; height: 2px; background: var(--heading); border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(50px, 7vw, 104px) 0 clamp(58px, 7vw, 104px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background-image:
    linear-gradient(rgba(15,23,42,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,.035) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: radial-gradient(70% 60% at 50% 30%, #000, transparent 80%);
  mask-image: radial-gradient(70% 60% at 50% 30%, #000, transparent 80%);
}
@media (prefers-color-scheme: dark) {
  .hero::before {
    background-image:
      linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  }
}

/* Animated aurora blobs */
.aurora { position: absolute; inset: -10% -10% auto -10%; height: 120%; z-index: -1; pointer-events: none; filter: blur(70px); opacity: .55; }
.aurora-blob { position: absolute; border-radius: 50%; will-change: transform; }
.aurora .b1 { width: 42vw; height: 42vw; max-width: 560px; max-height: 560px; top: -8%; right: 2%; background: radial-gradient(circle at 30% 30%, rgba(34,211,238,.55), transparent 65%); animation: drift1 18s ease-in-out infinite; }
.aurora .b2 { width: 36vw; height: 36vw; max-width: 480px; max-height: 480px; top: 12%; left: -6%; background: radial-gradient(circle at 30% 30%, rgba(29,78,216,.4), transparent 65%); animation: drift2 22s ease-in-out infinite; }
.aurora .b3 { width: 30vw; height: 30vw; max-width: 420px; max-height: 420px; bottom: -14%; left: 38%; background: radial-gradient(circle at 30% 30%, rgba(8,145,178,.4), transparent 65%); animation: drift3 26s ease-in-out infinite; }
@keyframes drift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-40px, 30px) scale(1.12); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(50px, -20px) scale(1.1); } }
@keyframes drift3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-30px, -40px) scale(1.15); } }
@media (prefers-reduced-motion: reduce) { .aurora-blob { animation: none !important; } }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.lede { font-size: 1.17rem; color: var(--text-muted); max-width: 42ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 26px 0 22px; }
.hero-points { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 18px; color: var(--text-muted); font-weight: 600; font-size: .95rem; }
.hero-points li { display: inline-flex; align-items: center; gap: 7px; }
.hero-points svg { width: 20px; height: 20px; color: var(--accent); background: var(--cyan-soft); border-radius: 50%; padding: 2px; }

/* Hero report mock */
.hero-visual { position: relative; animation: floatY 6s ease-in-out infinite; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@media (prefers-reduced-motion: reduce) { .hero-visual, .floaty { animation: none !important; } }
.report-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow-lg); position: relative; z-index: 2; }
.report-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.rc-brand { display: flex; align-items: center; gap: 10px; }
.rc-logo { width: 34px; height: 34px; border-radius: 9px; background: linear-gradient(135deg, var(--cyan-500), var(--cyan-700)); flex: none; }
.rc-lines { display: grid; gap: 5px; }
.rc-lines span { display: block; height: 7px; border-radius: 4px; background: var(--slate-200); }
.rc-lines span:first-child { width: 74px; }
.rc-lines span:last-child { width: 48px; }
.rc-badge { font-size: .74rem; font-weight: 700; color: var(--accent); background: var(--cyan-soft); padding: 5px 10px; border-radius: 999px; }
.rc-title { font-weight: 800; font-size: 1.15rem; color: var(--heading); }
.rc-sub { color: var(--text-muted); font-size: .84rem; margin-bottom: 14px; }
.rc-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
.rc-stat { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 12px; padding: 10px; text-align: center; }
.rc-stat b { display: block; font-size: 1.4rem; color: var(--heading); line-height: 1; }
.rc-stat span { font-size: .68rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; }
.rc-row { font-size: .85rem; color: var(--text); padding: 9px 0; border-top: 1px dashed var(--border); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.rc-row em { color: var(--accent); font-style: normal; font-weight: 600; }
.tag { font-size: .64rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: #fff; padding: 3px 7px; border-radius: 6px; flex: none; }
.tag-content { background: var(--tag-content); }
.tag-seo { background: var(--tag-seo); }
.tag-link { background: var(--tag-link); }
.tag-img { background: var(--tag-img); }
.rc-ai { margin-top: 14px; background: var(--cyan-soft); border-radius: 12px; padding: 12px 14px; display: flex; gap: 10px; align-items: flex-start; }
.rc-ai p { margin: 0; font-size: .82rem; color: var(--text); }
.rc-ai b { color: var(--accent); }
.rc-ai-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--cyan-500); margin-top: 5px; flex: none; box-shadow: 0 0 0 4px rgba(6, 182, 212, .2); }

.floaty { position: absolute; z-index: 3; background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow); border-radius: 12px; font-weight: 700; font-size: .82rem; padding: 8px 12px; color: var(--heading); }
.floaty-1 { top: -14px; left: -14px; color: var(--accent); animation: floatY 5s ease-in-out infinite .3s; }
.floaty-2 { bottom: -16px; right: -10px; font-size: .76rem; animation: floatY 7s ease-in-out infinite .8s; }

/* ---------- Trust strip (infinite marquee) ---------- */
.trust { padding: 28px 0 32px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-alt); overflow: hidden; }
.trust-label { text-align: center; color: var(--text-muted); font-size: .9rem; margin-bottom: 18px; }
.marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; width: max-content; gap: 14px; animation: marquee 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.chip {
  display: inline-flex; align-items: center; white-space: nowrap;
  font-weight: 700; font-size: .95rem; color: var(--slate-600);
  background: var(--surface); border: 1px solid var(--border); border-radius: 999px;
  padding: 10px 20px; box-shadow: var(--shadow-sm); transition: color .2s, border-color .2s, transform .2s;
}
.chip:hover { color: var(--accent); border-color: var(--cyan-500); transform: translateY(-2px); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; } }

/* ---------- Sections ---------- */
.section { padding: clamp(58px, 8vw, 108px) 0; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 640px; margin: 0 auto clamp(38px, 5vw, 60px); text-align: center; }
.section-sub { color: var(--text-muted); font-size: 1.1rem; margin: 0; }

/* ---------- Feature grid ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature { position: relative; overflow: hidden; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.feature::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .3s; pointer-events: none;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 0%), rgba(6,182,212,.14), transparent 60%);
}
.feature:hover::before { opacity: 1; }
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--cyan-500); }
.feat-ico { position: relative; display: inline-flex; width: 48px; height: 48px; align-items: center; justify-content: center; border-radius: 12px; background: var(--cyan-soft); color: var(--accent); margin-bottom: 16px; transition: transform .25s ease, background .25s ease; }
.feature:hover .feat-ico { transform: translateY(-2px) scale(1.06) rotate(-3deg); }
.feat-ico svg { width: 24px; height: 24px; }
.feature h3 { margin-bottom: .4em; }
.feature p { margin: 0; color: var(--text-muted); font-size: .96rem; }

/* ---------- Why agencies use it — scroll-stacking cards ---------- */
.stack-section { padding-bottom: clamp(50px, 7vw, 96px); }
.stack { display: flex; flex-direction: column; gap: 30px; }
.stack-card {
  position: sticky; top: 88px;
  display: grid; grid-template-columns: 1.02fr .98fr; gap: 34px; align-items: center;
  min-height: 360px; padding: clamp(28px, 4vw, 48px);
  border-radius: 26px; border: 1px solid var(--border);
  background: radial-gradient(130% 130% at 100% 0%, color-mix(in srgb, var(--sc) 12%, var(--surface)), var(--surface) 58%);
  box-shadow: var(--shadow-lg); overflow: hidden;
  transform-origin: center top; transition: transform .15s linear, opacity .15s linear;
}
.stack-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: var(--sc); }
.stack-card:nth-child(1) { top: 88px; }
.stack-card:nth-child(2) { top: 106px; }
.stack-card:nth-child(3) { top: 124px; }
.stack-card:nth-child(4) { top: 142px; }
.stack-card:nth-child(5) { top: 160px; }
.sc-1 { --sc: #06b6d4; }
.sc-2 { --sc: #6366f1; }
.sc-3 { --sc: #0ea5e9; }
.sc-4 { --sc: #14b8a6; }
.sc-5 { --sc: #3b82f6; }
.sc-tag { display: inline-block; font-size: .74rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--sc); background: color-mix(in srgb, var(--sc) 14%, transparent); padding: 6px 13px; border-radius: 999px; margin-bottom: 16px; }
.stack-card h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); margin-bottom: .5em; }
.sc-body p { color: var(--text-muted); margin: 0; font-size: 1.02rem; }
.sc-chips { list-style: none; margin: 18px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.sc-chips li { font-size: .8rem; font-weight: 650; color: var(--text); background: var(--bg-alt); border: 1px solid var(--border); border-radius: 999px; padding: 7px 13px; }

/* stacking-card visuals */
.sc-visual > div { border-radius: 16px; }
.seo-mock { background: var(--bg-alt); border: 1px solid var(--border); padding: 18px; display: grid; gap: 9px; }
.seo-row { display: flex; justify-content: space-between; align-items: center; font-size: .9rem; padding: 11px 13px; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; }
.seo-row span { color: var(--text-muted); }
.seo-row b.up { color: #059669; font-weight: 700; }
.seo-src { font-size: .74rem; color: var(--text-muted); text-align: center; margin-top: 3px; }

.ai-mock { background: var(--bg-alt); border: 1px solid var(--border); padding: 18px; }
.ai-head { display: flex; align-items: center; gap: 8px; font-weight: 800; color: var(--sc); margin-bottom: 12px; }
.ai-orb { width: 13px; height: 13px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, var(--cyan-400), var(--blue-700)); animation: aiPulse 2.2s ease-in-out infinite; }
@keyframes aiPulse { 0%,100% { box-shadow: 0 0 0 3px rgba(99,102,241,.2); } 50% { box-shadow: 0 0 0 8px rgba(99,102,241,.04); } }
.ai-mock p { font-size: .92rem; color: var(--text); margin: 0 0 12px; }
.type-line { display: inline-block; width: 2px; height: 1em; background: var(--sc); margin-right: 4px; vertical-align: -2px; animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.ai-foot { font-size: .74rem; color: var(--text-muted); border-top: 1px dashed var(--border); padding-top: 9px; }

.det-mock { background: var(--bg-alt); border: 1px solid var(--border); padding: 14px; display: grid; gap: 8px; }
.det-row { display: flex; align-items: center; gap: 8px; font-size: .87rem; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 11px 13px; }

.wl-mock { background: var(--surface); border: 1px solid var(--border); padding: 20px; box-shadow: var(--shadow); }
.wl-head { display: flex; align-items: center; gap: 10px; padding-bottom: 14px; border-bottom: 2px solid var(--sc); margin-bottom: 14px; }
.wl-logo { width: 28px; height: 28px; border-radius: 8px; background: linear-gradient(135deg, var(--cyan-500), var(--blue-700)); }
.wl-name { font-weight: 800; letter-spacing: .1em; color: var(--heading); font-size: .88rem; }
.wl-doc { margin-left: auto; font-size: .72rem; font-weight: 800; color: var(--accent); background: var(--cyan-soft); padding: 3px 9px; border-radius: 6px; }
.wl-line { height: 9px; border-radius: 5px; background: var(--slate-200); margin-bottom: 9px; }
.wl-line.w1 { width: 92%; } .wl-line.w2 { width: 74%; } .wl-line.w3 { width: 84%; }
.wl-foot { margin-top: 14px; font-size: .72rem; color: var(--text-muted); }

.per-mock { background: var(--bg-alt); border: 1px solid var(--border); padding: 18px; display: flex; flex-wrap: wrap; gap: 9px; }
.per-pill { font-size: .82rem; font-weight: 650; padding: 9px 15px; border-radius: 999px; background: var(--surface); border: 1px solid var(--border); color: var(--text-muted); }
.per-pill.active { background: linear-gradient(180deg, var(--cyan-500), var(--cyan-700)); color: #fff; border-color: transparent; }
.per-send { flex-basis: 100%; margin-top: 6px; font-size: .86rem; font-weight: 700; color: #059669; }

@media (max-width: 860px) {
  .stack-card { grid-template-columns: 1fr; gap: 22px; min-height: 0; top: 76px; }
  .stack-card:nth-child(1), .stack-card:nth-child(2), .stack-card:nth-child(3), .stack-card:nth-child(4), .stack-card:nth-child(5) { top: 76px; }
}

/* ---------- Audience: agencies & freelancers (transparency) ---------- */
.persona-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 24px; }
.persona { position: relative; overflow: hidden; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 34px 32px; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.persona:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--cyan-500); }
.persona-ico { display: inline-flex; width: 54px; height: 54px; align-items: center; justify-content: center; border-radius: 15px; background: var(--cyan-soft); color: var(--accent); margin-bottom: 16px; transition: transform .25s ease; }
.persona:hover .persona-ico { transform: translateY(-2px) scale(1.06); }
.persona-ico svg { width: 27px; height: 27px; }
.persona h3 { font-size: 1.4rem; margin-bottom: .5em; }
.persona > p { color: var(--text-muted); margin: 0; }
.persona ul { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 11px; }
.persona li { position: relative; padding-left: 28px; color: var(--text); font-size: .96rem; }
.persona li::before { content: "✓"; position: absolute; left: 3px; top: 0; color: var(--accent); font-weight: 800; }

.outcomes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.outcome { background: var(--cyan-soft); border: 1px solid color-mix(in srgb, var(--cyan-500) 28%, var(--border)); border-radius: var(--radius); padding: 26px 24px; transition: transform .25s ease, box-shadow .25s ease; }
.outcome:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.outcome b { display: block; font-size: 1.08rem; color: var(--heading); margin-bottom: 7px; }
.outcome p { margin: 0; color: var(--text-muted); font-size: .95rem; }

@media (max-width: 860px) {
  .persona-grid, .outcomes { grid-template-columns: 1fr; }
}

/* ---------- ROI calculator ---------- */
.roi-section { background: linear-gradient(180deg, var(--cyan-soft), var(--bg) 55%); }
.roi-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 30px; align-items: stretch; max-width: 980px; margin: 0 auto; }
.roi-inputs { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px 28px; box-shadow: var(--shadow-sm); }
.roi-field { margin-bottom: 22px; }
.roi-field:last-of-type { margin-bottom: 14px; }
.roi-field label { display: flex; justify-content: space-between; align-items: baseline; font-weight: 650; color: var(--heading); font-size: .96rem; margin-bottom: 10px; gap: 12px; }
.roi-field output { font-weight: 800; color: var(--accent); font-size: 1.15rem; background: var(--cyan-soft); padding: 2px 12px; border-radius: 999px; min-width: 54px; text-align: center; }
.roi-field input[type="range"] { width: 100%; height: 6px; border-radius: 999px; accent-color: var(--cyan-600); cursor: pointer; }
.roi-note { margin: 0; font-size: .84rem; color: var(--text-muted); border-top: 1px dashed var(--border); padding-top: 14px; }
.roi-note strong { color: var(--accent); }

.roi-result { background: linear-gradient(160deg, var(--navy), var(--navy-2)); color: #fff; border-radius: var(--radius-lg); padding: 30px 28px; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; }
.roi-line { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: .95rem; color: #c7cbe0; }
.roi-line b { color: #fff; font-weight: 700; font-size: 1.05rem; }
.roi-plugin b { color: var(--cyan-400); }
.roi-save { margin: 18px 0; padding: 20px; border-radius: 16px; background: linear-gradient(135deg, rgba(6,182,212,.18), rgba(59,130,246,.12)); border: 1px solid rgba(6,182,212,.35); text-align: center; }
.roi-save > span { display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: #a9d9e6; font-weight: 700; }
.roi-save b { display: block; font-size: clamp(2.2rem, 5vw, 3rem); font-weight: 800; color: #fff; line-height: 1.1; margin: 4px 0; }
.roi-save em { font-style: normal; font-size: .9rem; color: var(--cyan-300); font-weight: 600; }
.roi-result .btn { width: 100%; margin-top: auto; }

@media (max-width: 860px) {
  .roi-grid { grid-template-columns: 1fr; }
}

/* ---------- Guarantee (dark band + rotating money-back seal) ---------- */
.guarantee { position: relative; overflow: hidden; padding: clamp(52px, 8vw, 92px) 0; background: linear-gradient(150deg, var(--navy), #0d1030 60%, #0b2333); color: #fff; }
.guar-glow { position: absolute; top: -30%; right: -10%; width: 60vw; height: 60vw; max-width: 640px; max-height: 640px; border-radius: 50%; background: radial-gradient(circle, rgba(6,182,212,.28), transparent 62%); pointer-events: none; filter: blur(10px); }
.guar-wrap { position: relative; display: grid; grid-template-columns: auto 1fr; gap: clamp(30px, 5vw, 60px); align-items: center; }

/* pure-CSS medallion — reliably centered */
.guar-medal {
  position: relative; flex: none; width: clamp(180px, 22vw, 216px); aspect-ratio: 1;
  display: grid; place-items: center; border-radius: 50%;
  background: radial-gradient(circle at 50% 32%, #143548, #0a1a28 72%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06), inset 0 -14px 30px rgba(0,0,0,.45), 0 26px 54px -20px rgba(6,182,212,.6);
  animation: medalFloat 6s ease-in-out infinite;
}
@keyframes medalFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes sealSpin { to { transform: rotate(360deg); } }
/* glowing rotating gradient ring */
.medal-ring {
  position: absolute; inset: -3px; border-radius: 50%; z-index: 0;
  background: conic-gradient(from 180deg, var(--cyan-400), #3b82f6, #67e8f9, #0891b2, var(--cyan-400));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 6px), #000 calc(100% - 6px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 6px), #000 calc(100% - 6px));
  animation: sealSpin 9s linear infinite;
}
/* counter-rotating dashed ring */
.medal-dashes { position: absolute; inset: 15px; border-radius: 50%; border: 2px dashed rgba(103,232,249,.45); z-index: 0; animation: sealSpin 30s linear infinite reverse; }
.medal-inner { position: relative; z-index: 1; display: grid; justify-items: center; text-align: center; gap: 1px; }
.medal-check { width: 26px; height: 26px; color: var(--cyan-300); margin-bottom: 3px; }
.medal-inner b { font-size: clamp(2.6rem, 6vw, 3.4rem); font-weight: 800; color: #fff; line-height: .85; }
.medal-label { font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; color: var(--cyan-300); }
@media (prefers-reduced-motion: reduce) { .guar-medal, .medal-ring, .medal-dashes { animation: none; } }

.guar-content h2 { color: #fff; font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin-bottom: .4em; }
.guar-content > p { color: rgba(255,255,255,.82); max-width: 52ch; font-size: 1.06rem; }
.guar-content .eyebrow { color: var(--cyan-300); }
.guar-points { list-style: none; margin: 20px 0 26px; padding: 0; display: flex; flex-wrap: wrap; gap: 12px 24px; }
.guar-points li { display: inline-flex; align-items: center; gap: 8px; font-weight: 650; color: #fff; font-size: .96rem; }
.guar-points svg { width: 20px; height: 20px; color: #061a22; background: var(--cyan-400); border-radius: 50%; padding: 3px; flex: none; }
.guar-cta { display: flex; flex-wrap: wrap; gap: 14px; }

@media (max-width: 760px) {
  .guar-wrap { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .guar-content > p { margin-inline: auto; }
  .guar-points { justify-content: center; }
  .guar-cta { justify-content: center; }
}

/* ---------- Steps ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px 28px; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.step:hover .step-num { transform: scale(1.08) rotate(-4deg); }
.step-num { transition: transform .25s ease; }
.step-num { display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; border-radius: 12px; background: linear-gradient(135deg, var(--cyan-500), var(--cyan-700)); color: #fff; font-weight: 800; font-size: 1.1rem; margin-bottom: 14px; box-shadow: 0 8px 18px -8px rgba(8, 145, 178, .7); }
.step p { margin: 0; color: var(--text-muted); }

/* ---------- Detect showcase ---------- */
.detect-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; }
.detect-grid h2 { margin-top: .2em; }
.detect-grid .btn { margin-top: 8px; }
.detect-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.detect-list li { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 11px 12px; font-size: .88rem; font-weight: 600; color: var(--text); position: relative; padding-left: 30px; box-shadow: var(--shadow-sm); transition: transform .2s ease, border-color .2s ease, color .2s ease; }
.detect-list li:hover { transform: translateY(-3px); border-color: var(--cyan-500); color: var(--accent); }
.detect-list li::before { content: ""; position: absolute; left: 11px; top: 50%; width: 9px; height: 9px; margin-top: -4px; border-radius: 50%; background: var(--cyan-500); transition: transform .2s ease; }
.detect-list li:hover::before { transform: scale(1.5); }
.detect-list li.seo { border-color: var(--cyan-500); background: var(--cyan-soft); color: var(--accent); font-weight: 700; }
.detect-list li.seo::before { background: var(--cyan-600); }
.detect-list li.muted { opacity: .55; }

/* ---------- Report sections ---------- */
.report-sections { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rs { background: var(--surface); border: 1px solid var(--border); border-left: 4px solid var(--cyan-500); border-radius: var(--radius); padding: 24px 22px; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease, border-left-width .2s ease; }
.rs:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-left-width: 7px; }
.rs h3 { margin-bottom: .35em; }
.rs p { margin: 0; color: var(--text-muted); font-size: .94rem; }

/* ---------- Integrations ---------- */
.integ-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.integ-col { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.integ-col:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--cyan-500); }
.integ-col h3 { margin-bottom: 14px; }
.integ-col ul { list-style: none; margin: 0 0 14px; padding: 0; display: grid; gap: 9px; }
.integ-col li { position: relative; padding-left: 26px; color: var(--text); font-weight: 550; }
.integ-col li::before { content: ""; position: absolute; left: 6px; top: 9px; width: 8px; height: 8px; border-radius: 2px; background: var(--cyan-500); transform: rotate(45deg); }
.integ-note { margin: 0; font-size: .86rem; color: var(--text-muted); border-top: 1px dashed var(--border); padding-top: 12px; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; position: relative; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.price:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--cyan-500); }
.price-featured { border-color: var(--cyan-500); box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.price-featured:hover { transform: translateY(-10px); }
.price-flag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--cyan-500), var(--cyan-700)); color: #fff; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; padding: 5px 12px; border-radius: 999px; }
.price h3 { margin-bottom: .1em; }
.price-amt { font-size: 2.7rem; font-weight: 800; color: var(--heading); margin: 6px 0 2px; line-height: 1; }
.price-amt span { font-size: 1.3rem; vertical-align: super; color: var(--text-muted); }
.price-amt small { font-size: .95rem; font-weight: 600; color: var(--text-muted); }
.price-for { color: var(--text-muted); font-size: .9rem; margin-bottom: 18px; }
.price ul { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 11px; flex: 1; }
.price li { position: relative; padding-left: 27px; color: var(--text); font-size: .95rem; }
.price li::before { content: "✓"; position: absolute; left: 4px; top: 0; color: var(--accent); font-weight: 800; }
.price .btn { width: 100%; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 18px 22px; font-weight: 700; color: var(--heading); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--accent); transition: transform .2s; flex: none; line-height: 1; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 22px 20px; }
.faq-body p { margin: 0; color: var(--text-muted); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--charcoal), #0b2b3a); color: #fff; padding: clamp(58px, 8vw, 96px) 0; position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 120% at 88% 8%, rgba(6, 182, 212, .28), transparent 58%); }
.cta-inner { text-align: center; max-width: 660px; margin: 0 auto; position: relative; }
.cta-inner h2 { color: #fff; }
.cta-inner p { color: rgba(255,255,255,.82); font-size: 1.12rem; margin-bottom: 26px; }
.cta-inner .hero-cta { justify-content: center; }

/* ---------- Footer (dark charcoal, Piku-style) ---------- */
.site-footer { background: var(--charcoal); color: #cbd5e1; padding: 60px 0 26px; }
.site-footer .brand, .site-footer .brand-text, .site-footer h4 { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 2fr; gap: 40px; }
.footer-tag { color: #94a3b8; font-size: .92rem; max-width: 30ch; margin-top: 12px; }
.footer-req { color: #7c88a6; font-size: .8rem; margin-top: 10px; }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-nav h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: #93a4bd; margin-bottom: 12px; }
.footer-nav a { display: block; color: #cbd5e1; padding: 5px 0; font-size: .93rem; }
.footer-nav a:hover { color: var(--cyan-400); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding-top: 20px; }
.footer-bottom p { margin: 0; color: #8595ad; font-size: .86rem; }

/* ---------- Legal pages ---------- */
.legal { padding: clamp(36px, 6vw, 72px) 0 clamp(48px, 7vw, 88px); }
.legal-back { display: inline-flex; align-items: center; gap: 6px; color: var(--accent); font-weight: 650; font-size: .92rem; margin-bottom: 22px; }
.legal-back:hover { text-decoration: underline; }
.legal h1 { margin-bottom: .25em; }
.legal-updated { color: var(--text-muted); font-size: .9rem; margin: 0 0 2rem; padding-bottom: 1.4rem; border-bottom: 1px solid var(--border); }
.legal h2 { font-size: 1.3rem; margin: 2em 0 .5em; }
.legal p, .legal li { color: var(--text); }
.legal ul { padding-left: 1.25em; margin: 0 0 1.1rem; display: grid; gap: 6px; }
.legal a { color: var(--accent); }
.legal a:hover { text-decoration: underline; }
.legal .lead { font-size: 1.08rem; color: var(--text-muted); }

/* ---------- Hero trust line ---------- */
.hero-trust { margin: 14px 0 0; font-size: .9rem; color: var(--text-muted); font-weight: 600; }
.hero-trust .stars { color: #f5a623; letter-spacing: 1px; margin-right: 5px; }

/* ---------- Grand Slam Offer / value stack ---------- */
.offer-card { max-width: 820px; margin: 0 auto; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.offer-head { background: linear-gradient(135deg, var(--navy), #0b2333); color: #fff; padding: 28px 30px; text-align: center; }
.offer-head .urgency { display: inline-block; background: rgba(245,166,35,.16); color: #f5c06b; border: 1px solid rgba(245,166,35,.4); font-size: .74rem; font-weight: 800; letter-spacing: .04em; padding: 5px 13px; border-radius: 999px; margin-bottom: 12px; }
.offer-head h3 { color: #fff; font-size: clamp(1.35rem, 2.6vw, 1.7rem); margin: 0; }
.offer-head p { margin: 6px 0 0; color: rgba(255,255,255,.8); }
.offer-stack { padding: 20px 30px; }
.offer-item { display: flex; justify-content: space-between; gap: 16px; align-items: baseline; padding: 13px 0; border-bottom: 1px dashed var(--border); }
.offer-item:last-child { border-bottom: 0; }
.oi-name { color: var(--text); font-size: .98rem; }
.oi-name b { color: var(--heading); font-weight: 700; }
.oi-name .bonus { display: inline-block; font-size: .64rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: var(--accent); background: var(--cyan-soft); padding: 2px 7px; border-radius: 5px; margin-right: 7px; vertical-align: 1px; }
.oi-val { color: var(--text-muted); font-weight: 700; white-space: nowrap; }
.offer-total { display: flex; justify-content: space-between; align-items: center; padding: 18px 30px; background: var(--cyan-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.ot-label { font-weight: 800; color: var(--heading); }
.ot-val { text-align: right; }
.ot-val s { color: var(--text-muted); font-size: 1rem; }
.ot-val b { display: block; font-size: 1.9rem; font-weight: 800; color: var(--accent); line-height: 1; }
.offer-cta { padding: 24px 30px 30px; text-align: center; }
.offer-cta .btn { width: 100%; max-width: 360px; }
.offer-cta .fine { margin: 12px 0 0; font-size: .84rem; color: var(--text-muted); }

/* ---------- Sticky mobile CTA ---------- */
.mobile-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 55; display: none; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px)); background: color-mix(in srgb, var(--bg) 92%, transparent); backdrop-filter: saturate(160%) blur(12px); border-top: 1px solid var(--border); box-shadow: 0 -8px 24px rgba(15,23,42,.12); }
.mobile-cta .mc-info { display: flex; flex-direction: column; line-height: 1.2; }
.mobile-cta .mc-price { font-weight: 800; color: var(--heading); font-size: 1rem; }
.mobile-cta .mc-price s { color: var(--text-muted); font-weight: 500; font-size: .82rem; margin-right: 4px; }
.mobile-cta .mc-sub { font-size: .74rem; color: var(--text-muted); }
.mobile-cta .btn { flex: none; }
@media (max-width: 760px) {
  .mobile-cta { display: flex; }
  body { padding-bottom: 72px; }
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px) scale(.985); transition: opacity .7s cubic-bezier(.16,.84,.44,1), transform .7s cubic-bezier(.16,.84,.44,1); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { max-width: 460px; }
  .feature-grid, .steps, .report-sections, .integ-grid, .price-grid { grid-template-columns: repeat(2, 1fr); }
  .detect-grid { grid-template-columns: 1fr; gap: 30px; }
  .price-featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  /* Mobile header order: menu (hamburger), logo, button */
  .header-inner { gap: 10px; }
  .nav-toggle { display: inline-flex; order: 0; }
  .brand { order: 1; margin-inline: auto; }
  .brand-text { font-size: .98rem; }
  .header-actions { order: 2; margin-left: 0; }
  .cta-full { display: none; }
  .cta-short { display: inline; }
  .main-nav {
    order: 3;
    position: fixed; inset: 70px 0 auto 0; flex-direction: column; gap: 4px;
    background: var(--bg); border-bottom: 1px solid var(--border); padding: 14px 24px 22px;
    transform: translateY(-140%); transition: transform .28s ease; box-shadow: var(--shadow);
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 12px 10px; font-size: 1rem; }
}

@media (max-width: 560px) {
  .feature-grid, .steps, .report-sections, .integ-grid, .price-grid, .detect-list { grid-template-columns: 1fr; }
  .detect-list { grid-template-columns: repeat(2, 1fr); }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .rc-stats { grid-template-columns: repeat(3, 1fr); }
  .floaty-1 { left: 0; }
  .floaty-2 { right: 0; }
}
