/* ============================================================================
   My-Feedbacks — landing (my-feedbacks.com)
   Style aligned with the extension's Settings WINDOW: a dark "premium glass"
   look — radial black → deep violet (#350136), frosted panels, white-on-dark,
   violet (#8b5cf6) + electric-cyan (#22d3ee) accents from the logo, ✦ sparkle.
   Hand-written static CSS — no framework, no external font (fast + private).
   ============================================================================ */
:root {
  --violet: #8b5cf6;
  --violet-2: #b794f4;
  --cyan: #22d3ee;
  --cyan-2: #38bdf8;
  --grad: linear-gradient(135deg, #8b5cf6 0%, #22d3ee 100%);
  --grad-text: linear-gradient(135deg, #ffffff 38%, #b794f4 100%);

  --bg: #07060b;
  --panel: rgba(10, 10, 12, 0.62);
  --panel-2: rgba(255, 255, 255, 0.035);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);

  --text: #f3f1f9;
  --muted: #a6a2bd;
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1120px;
  --glow: 0 24px 60px -18px rgba(139, 92, 246, 0.6);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  background: var(--bg);
  color: var(--text);
  font:
    16px/1.6 'Inter',
    'SF Pro Text',
    'Segoe UI Variable',
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}

/* Deep-violet aurora background (the Settings-window radial, extended) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(120% 120% at 50% 100%, #07060b 38%, #350136 100%),
    radial-gradient(50% 40% at 12% 0%, rgba(139, 92, 246, 0.28), transparent 70%),
    radial-gradient(45% 35% at 100% 6%, rgba(34, 211, 238, 0.16), transparent 65%);
}

a {
  color: var(--cyan-2);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3 {
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0;
}
::selection {
  background: rgba(139, 92, 246, 0.45);
}
:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 6px;
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}
.eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet-2);
  margin-bottom: 14px;
}
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.muted {
  color: var(--muted);
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: 12px;
  font-weight: 650;
  font-size: 15px;
  cursor: pointer;
  border: 0;
  transition:
    transform 0.14s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: var(--glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.07);
  text-decoration: none;
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-strong);
  color: var(--text);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}
.btn svg {
  width: 18px;
  height: 18px;
}

/* ── Brand mark (gradient rounded square + white ✦, like the logo) ───────── */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.brand:hover {
  text-decoration: none;
}
.mark {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--grad);
  box-shadow:
    0 8px 22px -6px rgba(139, 92, 246, 0.8),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  flex: 0 0 auto;
}
.mark::before {
  content: '✦';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 16px;
  text-shadow: 0 0 9px rgba(255, 255, 255, 0.6);
}

/* ── Header ──────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 6, 11, 0.6);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 66px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.site-nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 14.5px;
}
.site-nav a:hover {
  color: var(--text);
  text-decoration: none;
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ── Section rhythm ──────────────────────────────────────────────────────── */
section {
  padding: 86px 0;
}
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 46px;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 820;
}
.section-head p {
  color: var(--muted);
  font-size: 17px;
  margin: 14px 0 0;
}

/* ── Glass panel ─────────────────────────────────────────────────────────── */
.panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow:
    0 30px 60px -30px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  padding: clamp(70px, 11vw, 130px) 0 92px;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.3);
  font-size: 13px;
  font-weight: 600;
  color: var(--violet-2);
  margin-bottom: 26px;
}
.hero h1 {
  font-size: clamp(36px, 6.4vw, 68px);
  font-weight: 850;
  max-width: 16ch;
  margin: 0 auto;
}
.hero p.lead {
  font-size: clamp(17px, 2.1vw, 21px);
  color: var(--muted);
  max-width: 60ch;
  margin: 22px auto 0;
}
.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 34px;
}
.hero-note {
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--muted);
}
.hero-note strong {
  color: var(--text);
}

/* logos / trust strip */
.trust {
  margin-top: 56px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: center;
  align-items: center;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 600;
}
.trust .chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--panel-2);
  border: 1px solid var(--border);
}
.trust .chip b {
  color: var(--text);
  font-weight: 700;
}

/* ── Steps ───────────────────────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.step {
  padding: 28px;
}
.step .num {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--grad);
  color: #fff;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.step h3 {
  font-size: 19px;
  margin-bottom: 8px;
}
.step p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}

/* ── Features grid ───────────────────────────────────────────────────────── */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature {
  padding: 24px;
}
.feature .ico {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: rgba(139, 92, 246, 0.14);
  border: 1px solid rgba(139, 92, 246, 0.28);
  color: var(--violet-2);
  margin-bottom: 15px;
}
.feature .ico svg {
  width: 21px;
  height: 21px;
}
.feature h3 {
  font-size: 17px;
  margin-bottom: 7px;
}
.feature p {
  color: var(--muted);
  font-size: 14.5px;
  margin: 0;
}

/* ── Security ────────────────────────────────────────────────────────────── */
.security {
  position: relative;
}
.sec-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  align-items: center;
}
.sec-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sec-list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}
.sec-list .dot {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.3);
  color: var(--cyan);
  display: grid;
  place-items: center;
  font-size: 14px;
}
.sec-list strong {
  display: block;
}
.sec-list .sec-desc {
  display: block;
  color: var(--muted);
  font-size: 14.5px;
}
.sec-card {
  padding: 30px;
  text-align: center;
}
.sec-card .big {
  font-size: clamp(40px, 6vw, 58px);
  font-weight: 850;
}
.sec-card .cap {
  color: var(--muted);
  margin-top: 6px;
}

/* ── Comparison table (Free vs Paid) with popovers ───────────────────────── */
/* No overflow clip here: it would also clip the upward-opening .tip popovers
   (overflow-x:auto forces overflow-y:auto per spec). The table fits within the
   container on desktop; on mobile it wraps (min-width dropped in the media query). */
.cmp-wrap {
  border-radius: var(--radius);
  overflow: visible;
}
table.cmp {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14.5px;
}
table.cmp tbody tr:last-child td {
  border-bottom: none;
}
table.cmp th,
table.cmp td {
  padding: 13px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
table.cmp thead th {
  font-weight: 700;
  font-size: 14px;
}
table.cmp th.plan,
table.cmp td.plan {
  width: 130px;
  text-align: center;
}
table.cmp th.paid,
table.cmp td.paid {
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.1), rgba(34, 211, 238, 0.05));
}
table.cmp thead th.paid {
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.2), rgba(34, 211, 238, 0.1));
}
.paid-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.paid-label::before {
  content: '✦';
  color: var(--violet-2);
}
tr.grp td {
  background: rgba(255, 255, 255, 0.03);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
}
table.cmp tbody tr:not(.grp):hover td {
  background: rgba(255, 255, 255, 0.03);
}
.yes {
  color: var(--cyan);
  font-weight: 800;
}
.yes.p {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.no {
  color: #8e89ad; /* WCAG: ~4.6:1 on the panel — the only "not in Free" signal */
}
.note {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

/* Pure-CSS popover (hover + keyboard focus + tap), no JS. The trigger is a real
   <button> (focusable, tappable, announced) — reset its native chrome here. */
.info {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: help;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  text-align: left;
}
.info > .lbl {
  border-bottom: 1px dotted var(--border-strong);
}
.info > .q {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}
.info:hover > .q,
.info:focus-visible > .q {
  color: #fff;
  border-color: transparent;
  background: var(--grad);
}
.tip {
  position: absolute;
  bottom: calc(100% + 9px);
  left: 0;
  z-index: 30;
  width: max-content;
  max-width: 300px;
  padding: 11px 13px;
  border-radius: 12px;
  background: rgba(20, 16, 32, 0.98);
  border: 1px solid var(--border-strong);
  box-shadow:
    0 22px 50px -16px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(139, 92, 246, 0.2);
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  opacity: 0;
  transform: translateY(5px) scale(0.97);
  transform-origin: bottom left;
  pointer-events: none;
  transition:
    opacity 0.16s ease,
    transform 0.16s ease;
}
.tip .tech {
  display: block;
  margin-top: 6px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--cyan-2);
}
.info:hover .tip,
.info:focus-within .tip {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── Pricing ─────────────────────────────────────────────────────────────── */
.pricing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 760px;
  margin: 0 auto;
}
.price {
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.price.featured {
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow:
    0 30px 70px -30px rgba(139, 92, 246, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.price .tier {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--violet-2);
}
.price .amount {
  font-size: 44px;
  font-weight: 850;
  margin: 10px 0 2px;
}
.price .amount small {
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
}
.price ul {
  list-style: none;
  margin: 20px 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.price li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--muted);
}
.price li::before {
  content: '✓';
  color: var(--cyan);
  font-weight: 800;
  flex: 0 0 auto;
}
.price li strong {
  color: var(--text);
  font-weight: 600;
}
.price .btn {
  margin-top: auto;
}

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.faq {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq details {
  padding: 6px 20px;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 0;
  font-weight: 650;
  font-size: 16.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: '+';
  color: var(--violet-2);
  font-size: 22px;
  font-weight: 400;
  transition: transform 0.2s ease;
}
.faq details[open] summary::after {
  transform: rotate(45deg);
}
.faq details p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ── Final CTA ───────────────────────────────────────────────────────────── */
.cta {
  text-align: center;
}
.cta .panel {
  padding: clamp(40px, 7vw, 72px) 28px;
}
.cta h2 {
  font-size: clamp(28px, 4.4vw, 44px);
  font-weight: 840;
  max-width: 18ch;
  margin: 0 auto;
}
.cta p {
  color: var(--muted);
  font-size: 17px;
  max-width: 52ch;
  margin: 16px auto 0;
}
.cta .hero-cta {
  margin-top: 30px;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 44px 0;
  color: var(--muted);
  font-size: 14px;
}
.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
  justify-content: space-between;
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.site-footer nav a {
  color: var(--muted);
  font-weight: 600;
}
.site-footer nav a:hover {
  color: var(--text);
  text-decoration: none;
}

/* ── Language switcher (footer) ──────────────────────────────────────────── */
.lang-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.lang-switch a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--muted);
  padding: 4px 8px;
  border-radius: 7px;
  border: 1px solid transparent;
}
.lang-switch a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
}
.lang-switch a[aria-current='true'] {
  color: #fff;
  background: var(--grad-soft, rgba(139, 92, 246, 0.18));
  border-color: rgba(139, 92, 246, 0.4);
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .steps,
  .features {
    grid-template-columns: 1fr 1fr;
  }
  .sec-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  section {
    padding: 64px 0;
  }
  .site-nav {
    display: none;
  }
  .steps,
  .features,
  .pricing {
    grid-template-columns: 1fr;
  }
  table.cmp {
    min-width: 0;
    font-size: 13px;
  }
  table.cmp th,
  table.cmp td {
    padding: 10px 8px;
  }
  .tip {
    max-width: 220px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  .btn,
  .tip {
    transition: none !important;
  }
}
