/* Velvet Lantern UK — Retro-Modern */
@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,700;1,9..40,400&display=swap");

:root {
  --white: #ffffff;
  --ink: #12141a;
  --blue: #1a3a8f;
  --blue-deep: #122868;
  --red: #e03a2f;
  --red-soft: #f5e0de;
  --tint: #f4f6fb;
  --muted: #5a6170;
  --line: #1a3a8f;
  --space-xs: 0.4rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 2.25rem;
  --space-xl: 3.5rem;
  --space-2xl: 5rem;
  --max: 1120px;
  --font-display: "Archivo Black", "Arial Black", sans-serif;
  --font-body: "DM Sans", "Segoe UI", sans-serif;
  --radius: 0;
  --shadow-card: 4px 4px 0 var(--blue);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--white);
  background-image:
    radial-gradient(circle at 12% 8%, rgba(224, 58, 47, 0.05), transparent 42%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cpath d='M36 10 L38 16 L36 22 L34 16 Z' fill='%231a3a8f' fill-opacity='0.045'/%3E%3Ccircle cx='58' cy='36' r='2.2' fill='%23e03a2f' fill-opacity='0.05'/%3E%3Cpath d='M12 48 L18 50 L12 52 L6 50 Z' fill='%231a3a8f' fill-opacity='0.04'/%3E%3C/svg%3E");
  padding-bottom: 3.25rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;

  &::after {
    content: " ›";
    font-weight: 700;
  }

  &:hover {
    text-decoration: underline;
    text-underline-offset: 0.18em;
  }
}

a.btn::after,
a.logo::after,
a.nav-link::after,
a.safety-card::after,
a.skip::after,
.card-cta a::after,
footer a::after,
.age-bar a::after,
.cookie-banner a::after,
.mark-link::after {
  content: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-md);
  color: var(--blue-deep);
}

h1 {
  font-size: clamp(2.4rem, 7vw, 4.6rem);
}

h2 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

p {
  margin: 0 0 var(--space-md);
}

ul,
ol {
  margin: 0 0 var(--space-md);
  padding-left: 1.2rem;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--blue);
  color: var(--white);
  padding: 0.5rem 1rem;
  z-index: 1000;

  &:focus {
    left: 0;
  }
}

.label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--space-sm);
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.wrap-wide {
  width: min(100% - 2rem, 1240px);
  margin-inline: auto;
}

/* Age notice — bottom persistent */
.age-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--blue);
  color: var(--white);
  font-size: 0.82rem;
  padding: 0.55rem 1rem;
  text-align: center;
  border-top: 3px solid var(--red);

  a {
    color: #ffd4cf;
    text-decoration: underline;
  }
}

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--blue);
  position: sticky;
  top: 0;
  z-index: 800;

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: 0.85rem 0;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--blue-deep);
    font-family: var(--font-display);
    font-size: 1.05rem;
    letter-spacing: -0.01em;
    text-decoration: none;

    img {
      width: 40px;
      height: 40px;
    }
  }

  .nav-toggle {
    display: none;
    background: transparent;
    border: 2px solid var(--blue);
    color: var(--blue);
    font-family: var(--font-body);
    font-weight: 700;
    padding: 0.4rem 0.7rem;
    cursor: pointer;
  }

  nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nav-link {
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;

    &:hover {
      color: var(--red);
    }
  }
}

@media (max-width: 860px) {
  .site-header {
    .nav-toggle {
      display: inline-block;
    }

    nav {
      display: none;
      width: 100%;
      padding-bottom: 0.75rem;
    }

    nav.is-open {
      display: block;
    }

    .header-inner {
      flex-wrap: wrap;
    }

    nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
  }
}

/* Hero — colour-blocked + diagonal */
.hero {
  position: relative;
  background: var(--blue);
  color: var(--white);
  overflow: hidden;
  padding: var(--space-2xl) 0 var(--space-xl);

  &::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 72px;
    background: var(--white);
    clip-path: polygon(0 55%, 100% 0, 100% 100%, 0 100%);
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: var(--space-lg);
    align-items: end;
    position: relative;
    z-index: 1;
  }

  .label {
    color: #ffb4ad;
  }

  h1 {
    color: var(--white);
    max-width: 14ch;
  }

  .hero-lead {
    font-size: 1.15rem;
    max-width: 38ch;
    color: rgba(255, 255, 255, 0.92);
  }

  .hero-note {
    margin-top: var(--space-md);
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 48ch;
  }

  .hero-visual {
    justify-self: end;
    width: min(100%, 380px);
    border: 4px double var(--white);
    background: var(--red);
    padding: 0.35rem;
  }

  .hero-visual img {
    width: 100%;
    mix-blend-mode: luminosity;
    opacity: 0.95;
  }
}

@media (max-width: 760px) {
  .hero .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero .hero-visual {
    justify-self: start;
    order: -1;
    width: min(100%, 280px);
  }
}

/* Trust strip */
.trust-strip {
  padding: var(--space-lg) 0;
  background: var(--tint);

  .trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
  }

  .trust-item {
    border: 3px double var(--blue);
    background: var(--white);
    padding: var(--space-md);
    text-align: center;
  }

  .trust-num {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    color: var(--red);
    line-height: 1;
    display: block;
  }

  .trust-cap {
    font-size: 0.88rem;
    color: var(--muted);
    margin: 0.4rem 0 0;
  }
}

@media (max-width: 640px) {
  .trust-strip .trust-grid {
    grid-template-columns: 1fr;
  }
}

/* Sections */
.section {
  padding: var(--space-2xl) 0;
}

.section-tight {
  padding: var(--space-xl) 0;
}

.section-tint {
  background: var(--tint);
}

.section-blue {
  background: var(--blue);
  color: var(--white);

  h2,
  h3 {
    color: var(--white);
  }

  .label {
    color: #ffb4ad;
  }
}

.diagonal-band {
  position: relative;
  padding: var(--space-2xl) 0;
  background: var(--red);
  color: var(--white);
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);

  h2 {
    color: var(--white);
  }

  .label {
    color: rgba(255, 255, 255, 0.85);
  }

  a {
    color: #ffe8e5;
  }
}

.updated {
  font-size: 0.88rem;
  color: var(--muted);
}

.accent-word {
  color: var(--red);
}

.accent-word-light {
  color: #ffd4cf;
}

/* Showcase — two-column grid, bordered rows */
.showcase {
  .showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }
}

.operator-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-md);
  align-items: center;
  border: 2px solid var(--blue);
  background: var(--white);
  padding: var(--space-md);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;

  &:hover {
    transform: translate(-3px, -3px);
    box-shadow: var(--shadow-card);
  }

  &.featured {
    border-width: 4px;
    border-style: double;
  }

  .card-main {
    display: grid;
    gap: 0.55rem;
    min-width: 0;
  }

  .card-top {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .logo-box {
    width: 72px;
    height: 48px;
    border: 2px solid var(--blue);
    background: var(--tint);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    padding: 0.25rem;
  }

  .logo-box img {
    max-height: 40px;
    max-width: 64px;
    width: auto;
    object-fit: contain;
  }

  .logo-fallback {
    font-family: var(--font-display);
    font-size: 0.7rem;
    color: var(--blue);
    text-align: center;
    line-height: 1.1;
  }

  .card-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--blue-deep);
    margin: 0;
  }

  .card-desc {
    font-size: 0.95rem;
    margin: 0;
    color: var(--ink);
  }

  .badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
  }

  .card-action {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
    min-width: 7.5rem;
    text-align: center;
  }

  .verdict {
    font-family: var(--font-display);
    font-size: 1.05rem;
    background: var(--red);
    color: var(--white);
    padding: 0.35rem 0.5rem;
    border: 2px solid var(--blue);
  }

  .offer-line {
    font-size: 0.78rem;
    color: var(--muted);
    margin: 0;
  }

  .card-note {
    font-size: 0.72rem;
    color: var(--muted);
    margin: 0;
  }

  .info-link {
    font-size: 0.85rem;
  }
}

@media (max-width: 900px) {
  .showcase .showcase-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .operator-card {
    grid-template-columns: 1fr;

    .card-action {
      flex-direction: row;
      flex-wrap: wrap;
      align-items: center;
    }
  }
}

/* Badges — square-cut sharp */
.badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.22rem 0.4rem;
  border: 2px solid var(--blue);
  background: var(--tint);
  color: var(--blue-deep);
  border-radius: 0;
}

.badge-accent {
  background: var(--red);
  color: var(--white);
  border-color: var(--blue);
}

/* Buttons — outlined/ghost */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.55rem 0.9rem;
  border: 2px solid var(--red);
  background: transparent;
  color: var(--red);
  text-decoration: none;
  cursor: pointer;
  border-radius: 0;
  text-align: center;
  transition: background 0.15s ease, color 0.15s ease;

  &:hover {
    background: var(--red);
    color: var(--white);
    text-decoration: none;
  }
}

.btn-light {
  border-color: var(--white);
  color: var(--white);

  &:hover {
    background: var(--white);
    color: var(--blue);
  }
}

.btn-solid {
  background: var(--red);
  color: var(--white);

  &:hover {
    background: var(--blue);
    border-color: var(--blue);
  }
}

/* Head-to-head duels */
.duels {
  .duel {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-md);
    align-items: stretch;
    margin-bottom: var(--space-lg);
    border: 4px double var(--blue);
    padding: var(--space-md);
    background: var(--white);
  }

  .duel-side {
    padding: var(--space-sm);
  }

  .duel-vs {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--red);
    align-self: center;
    line-height: 1;
  }

  .duel-num {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--blue);
    line-height: 1;
    display: block;
    margin-bottom: 0.35rem;
  }

  .duel h3 {
    margin-bottom: 0.35rem;
  }

  .duel p {
    margin: 0;
    font-size: 0.95rem;
  }
}

@media (max-width: 700px) {
  .duels .duel {
    grid-template-columns: 1fr;
    text-align: center;

    .duel-vs {
      transform: rotate(90deg);
      margin: 0.25rem auto;
    }
  }
}

/* Methodology / check / FAQ */
.method-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-lg);
  align-items: start;
}

.framed {
  border: 4px double var(--blue);
  padding: var(--space-md);
  background: var(--white);
}

.check-list {
  list-style: none;
  padding: 0;

  li {
    padding: 0.55rem 0;
    border-bottom: 2px dotted rgba(26, 58, 143, 0.25);
    padding-left: 1.4rem;
    position: relative;

    &::before {
      content: "◆";
      position: absolute;
      left: 0;
      color: var(--red);
      font-size: 0.7rem;
      top: 0.75rem;
    }
  }
}

.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;

  li {
    padding: var(--space-md) 0;
  }

  h3 {
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
  }

  p:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 760px) {
  .method-grid {
    grid-template-columns: 1fr;
  }
}

/* Safety cards */
.safety-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.safety-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 120px;
  border: 3px double var(--blue);
  background: var(--white);
  padding: var(--space-md);
  text-decoration: none;
  color: var(--blue-deep);
  font-weight: 700;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;

  &:hover {
    transform: translate(-3px, -3px);
    box-shadow: var(--shadow-card);
    text-decoration: none;
    color: var(--red);
  }

  img {
    max-height: 40px;
    max-width: 120px;
    object-fit: contain;
  }
}

@media (max-width: 800px) {
  .safety-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Prose pages */
.page-hero {
  background: var(--blue);
  color: var(--white);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;

  &::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 48px;
    background: var(--white);
    clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
  }

  h1 {
    color: var(--white);
    max-width: 18ch;
  }

  .label {
    color: #ffb4ad;
  }

  p {
    max-width: 52ch;
    color: rgba(255, 255, 255, 0.9);
  }
}

.prose {
  max-width: 68ch;

  h2 {
    margin-top: var(--space-xl);
  }

  .num-mark {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--red);
    line-height: 1;
    display: block;
    margin-bottom: 0.25rem;
  }
}

.media-break {
  margin: var(--space-xl) 0;
  border: 4px double var(--blue);
  max-width: 720px;

  &.grain {
    filter: contrast(1.05);
  }
}

.split-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

@media (max-width: 700px) {
  .split-visual {
    grid-template-columns: 1fr;
  }
}

/* Contact */
.contact-form {
  display: grid;
  gap: var(--space-md);
  max-width: 520px;

  label {
    display: grid;
    gap: 0.35rem;
    font-weight: 600;
    font-size: 0.92rem;
  }

  input,
  textarea {
    font: inherit;
    padding: 0.65rem 0.75rem;
    border: 2px solid var(--blue);
    background: var(--white);
    border-radius: 0;
  }

  textarea {
    min-height: 140px;
    resize: vertical;
  }
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Footer */
.site-footer {
  background: var(--blue-deep);
  color: rgba(255, 255, 255, 0.88);
  padding: var(--space-xl) 0 calc(var(--space-xl) + 0.5rem);
  margin-top: var(--space-lg);
  position: relative;

  &::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.07;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M40 12 L44 28 L40 44 L36 28 Z' fill='%23ffffff'/%3E%3C/svg%3E");
    pointer-events: none;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: var(--space-lg);
    position: relative;
  }

  h2 {
    color: var(--white);
    font-size: 1.1rem;
  }

  a {
    color: #ffd4cf;
  }

  ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  li {
    margin-bottom: 0.4rem;
  }

  .footer-mark {
    width: 48px;
    height: 48px;
    margin-bottom: 0.75rem;
    opacity: 0.85;
  }

  .footer-fine {
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.82rem;
    position: relative;
  }
}

@media (max-width: 760px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
  }
}

.disclaimer {
  font-size: 0.88rem;
  color: var(--muted);
  border: 2px solid rgba(26, 58, 143, 0.25);
  padding: var(--space-md);
  background: var(--tint);
}

.aff-note {
  font-size: 0.9rem;
  border-left: 4px solid var(--red);
  padding: 0.65rem 0.9rem;
  background: var(--red-soft);
  margin: var(--space-md) 0;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 3.4rem;
  z-index: 950;
  max-width: 420px;
  margin-inline: auto;
  background: var(--white);
  border: 4px double var(--blue);
  padding: var(--space-md);
  box-shadow: var(--shadow-card);
  display: none;

  &.is-visible {
    display: block;
  }

  p {
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
  }

  .cookie-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .operator-card,
  .safety-card {
    transition: none;

    &:hover {
      transform: none;
      box-shadow: none;
    }
  }
}
