/*
Theme Name: Plasmastatic Seeds
Theme URI: https://plasmastaticseeds.com
Author: Plasmastatic Seeds
Author URI: https://plasmastaticseeds.com
Description: Voltage Exotic — charged genetics. Custom single-page theme replicating the Plasmastatic Seeds mockup. Built for WooCommerce-ready cannabis-seed storefronts.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: plasmastatic-seeds
Tags: dark, custom-colors, custom-logo, custom-menu, e-commerce, one-page, full-width-template
*/

  /* ============================================================
     PLASMASTATIC SEEDS — Mockup v2
     Lane: Voltage Exotic · Electric Streetwear over Dark
     Logo-driven palette: Volt Lime + Electric Yellow + Chrome
     ============================================================ */

  :root {
    /* Palette */
    --obsidian: #060608;
    --carbon: #111114;
    --iron: #22232A;
    --iron-2: #34353D;
    --mercury: #C8C8CE;
    --bone: #EFECE3;

    /* Voltage accents (replacing plasma/magenta) */
    --volt: #C5F500;        /* electric lime */
    --volt-bright: #DBFF1A; /* hover/peak */
    --yellow: #F5E300;      /* electric yellow */
    --chrome: #B8B8C2;
    --chrome-2: #6E6E76;

    --gradient: linear-gradient(135deg, var(--volt) 0%, var(--yellow) 100%);
    --gradient-vert: linear-gradient(180deg, var(--volt) 0%, var(--yellow) 100%);

    /* Type */
    --display: 'Space Grotesk', system-ui, sans-serif;
    --bebas: 'Bebas Neue', 'Space Grotesk', sans-serif;
    --body: 'Inter', system-ui, sans-serif;
    --mono: 'JetBrains Mono', ui-monospace, monospace;

    /* Layout */
    --gutter: 32px;
    --container: 1280px;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--body);
    background: var(--obsidian);
    color: var(--bone);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* ============================================================
     LOGO SVG — used in nav, hero, footer, age gate
     ============================================================ */
  .logo-svg { display: block; }

  /* Reusable logo as a CSS-defined SVG defs block (declared once at top) */

  /* ============================================================
     PLASMA NOISE
     ============================================================ */
  .noise {
    position: absolute; inset: 0;
    pointer-events: none;
    opacity: 0.05;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
    z-index: 1;
  }

  /* ============================================================
     AGE GATE
     ============================================================ */
  .age-gate {
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(6,6,8,0.96);
    backdrop-filter: blur(12px);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 400ms ease;
    padding: 24px;
  }
  .age-gate.hidden { opacity: 0; pointer-events: none; }
  .age-gate-card {
    max-width: 460px; padding: 48px 40px;
    background: var(--carbon);
    border: 1px solid var(--iron);
    text-align: center;
  }
  .age-gate-card .logo-mark { width: 120px; height: auto; margin: 0 auto 24px; }
  .age-gate p { color: var(--mercury); font-size: 14px; margin-bottom: 24px; }
  .age-gate-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

  /* ============================================================
     UTILITY
     ============================================================ */
  .container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

  .label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mercury);
  }

  .eyebrow {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--volt);
    margin-bottom: 16px;
    display: inline-block;
  }

  /* Buttons */
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px;
    font-family: var(--display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 220ms cubic-bezier(0.2, 0.6, 0.2, 1);
    background: transparent;
  }
  .btn-primary {
    background: var(--volt);
    color: var(--obsidian);
    box-shadow: 0 0 0 0 rgba(197, 245, 0, 0);
  }
  .btn-primary:hover {
    background: var(--volt-bright);
    box-shadow: 0 0 28px rgba(197, 245, 0, 0.55), 0 0 60px rgba(245, 227, 0, 0.25);
    transform: translateY(-1px);
  }
  .btn-ghost {
    border-color: var(--iron);
    color: var(--bone);
  }
  .btn-ghost:hover {
    border-color: var(--volt);
    background: rgba(197, 245, 0, 0.06);
    color: var(--volt);
  }
  .btn-text {
    color: var(--mercury);
    text-decoration: none;
    font-family: var(--display);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--iron);
    padding-bottom: 2px;
    transition: all 200ms ease;
  }
  .btn-text:hover { color: var(--volt); border-color: var(--volt); }

  /* ============================================================
     NAV
     ============================================================ */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(6, 6, 8, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--iron);
    height: 68px;
  }
  .nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .brand-link {
    text-decoration: none;
    color: var(--bone);
    display: flex; align-items: center; gap: 12px;
  }
  .brand-link .logo-mark { width: 40px; height: 40px; }
  .brand-wordmark {
    font-family: var(--bebas);
    font-size: 22px;
    letter-spacing: 0.06em;
    line-height: 1;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 400;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .brand-wordmark .static {
    background: linear-gradient(180deg, #EAEAEC 0%, #6E6E76 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .brand-wordmark .seeds {
    font-family: var(--bebas);
    font-size: 0.55em;
    letter-spacing: 0.34em;
    color: var(--volt);
    background: none;
    -webkit-text-fill-color: var(--volt);
    line-height: 1;
    padding-left: 2px;
  }

  .nav-links { display: flex; gap: 32px; list-style: none; }
  .nav-links a {
    font-family: var(--display);
    font-size: 13px;
    font-weight: 500;
    color: var(--mercury);
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 200ms;
  }
  .nav-links a:hover { color: var(--volt); }

  .nav-actions { display: flex; gap: 16px; align-items: center; }
  .nav-icon {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    color: var(--mercury);
    cursor: pointer;
    transition: color 200ms;
    position: relative;
  }
  .nav-icon:hover { color: var(--volt); }
  .nav-icon::after {
    content: "";
    position: absolute;
    top: 8px; right: 8px;
    width: 6px; height: 6px;
    background: var(--volt);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--volt);
  }
  .nav-icon.no-dot::after { display: none; }

  /* ============================================================
     HERO
     ============================================================ */
  .hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--obsidian);
  }
  .hero-grid {
    max-width: var(--container);
    margin: 0 auto;
    padding: 80px var(--gutter);
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative; z-index: 2;
  }
  .hero-text h1 {
    font-family: var(--bebas);
    font-size: clamp(56px, 8.5vw, 116px);
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: 0.01em;
    margin-bottom: 28px;
    text-transform: uppercase;
  }
  .hero-text h1 .accent {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .hero-text h1 .chrome-text {
    background: linear-gradient(180deg, #EAEAEC 0%, #888890 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .hero-text .lede {
    font-size: 17px;
    color: var(--mercury);
    max-width: 480px;
    margin-bottom: 36px;
    line-height: 1.65;
  }
  .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

  .hero-meta {
    margin-top: 48px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
  }
  .hero-meta-item .label { display: block; margin-bottom: 4px; }
  .hero-meta-item .val {
    font-family: var(--bebas);
    font-size: 28px;
    color: var(--bone);
    letter-spacing: 0.02em;
  }
  .hero-meta-item .val .v { color: var(--volt); }

  /* Hero showcase — central logo with crackle */
  .hero-showcase {
    position: relative;
    aspect-ratio: 1 / 1;
    display: flex; align-items: center; justify-content: center;
  }
  .hero-disc {
    display: none;
  }

  .hero-logo {
    position: relative; z-index: 3;
    width: 76%; height: auto;
    filter: drop-shadow(0 0 50px rgba(138, 255, 20, 0.55)) drop-shadow(0 0 100px rgba(197, 245, 0, 0.3));
    animation: floatY 6s ease-in-out infinite;
  }
  .hero-image {
    width: 100%;
    max-width: 620px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    /* Zero green halo. Float + electric charge pulse. */
    mix-blend-mode: lighten;
    animation:
      floatY 6s ease-in-out infinite,
      chargePulse 3.4s ease-in-out infinite;
  }

  /* Electric charge pulse — irregular brightness/contrast oscillation,
     reads as the cogollo "charging and discharging" */
  @keyframes chargePulse {
    0%, 100% { filter: brightness(1) contrast(1) saturate(1); }
    28%      { filter: brightness(1.18) contrast(1.1) saturate(1.15); }
    42%      { filter: brightness(0.94) contrast(0.96) saturate(0.95); }
    63%      { filter: brightness(1.22) contrast(1.12) saturate(1.2); }
    78%      { filter: brightness(1) contrast(1) saturate(1); }
  }
  @keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  @keyframes flicker {
    0%, 100% { opacity: 1; }
    47% { opacity: 1; }
    50% { opacity: 0.4; }
    53% { opacity: 1; }
    91% { opacity: 1; }
    93% { opacity: 0.6; }
    95% { opacity: 1; }
  }
  .hero-logo .crackle { animation: flicker 4s infinite; }

  .hero-strain-card {
    position: absolute;
    bottom: 4%;
    right: 0;
    background: var(--carbon);
    border: 1px solid var(--iron);
    padding: 16px 20px;
    min-width: 240px;
    z-index: 4;
    transition: all 220ms ease;
  }
  .hero-strain-card:hover {
    border-color: var(--volt);
    box-shadow: 0 0 32px rgba(197, 245, 0, 0.30);
    transform: translateY(-3px);
  }
  .hero-strain-card .pill {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--gradient);
    color: var(--obsidian);
    font-family: var(--mono);
    font-size: 10px; font-weight: 600;
    letter-spacing: 0.16em;
    padding: 4px 10px;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .hero-strain-card .pill::before {
    content: ""; width: 6px; height: 6px; border-radius: 50%;
    background: var(--obsidian);
    animation: pulse 1.4s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }
  .hero-strain-card h4 {
    font-family: var(--display);
    font-size: 18px; font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
  }
  .hero-strain-card .breeder {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mercury);
    margin-bottom: 10px;
  }
  .hero-strain-card .specs {
    display: flex; gap: 14px;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--mercury);
  }
  .hero-strain-card .specs strong { color: var(--volt); font-weight: 600; }

  /* ============================================================
     TRUST STRIP
     ============================================================ */
  .trust-strip {
    background: var(--carbon);
    border-top: 1px solid var(--iron);
    border-bottom: 1px solid var(--iron);
  }
  .trust-grid {
    max-width: var(--container);
    margin: 0 auto;
    padding: 28px var(--gutter);
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
  }
  .trust-item {
    display: flex; align-items: center; gap: 12px;
    color: var(--mercury);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .trust-icon {
    width: 24px; height: 24px;
    color: var(--volt);
    flex-shrink: 0;
  }

  /* ============================================================
     SECTIONS
     ============================================================ */
  section.block { padding: 96px 0; position: relative; }
  .section-header {
    display: flex; justify-content: space-between; align-items: end;
    margin-bottom: 56px;
    gap: 32px;
  }
  .section-header h2 {
    font-family: var(--bebas);
    font-size: clamp(40px, 5.5vw, 76px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    max-width: 740px;
  }
  .section-header h2 .quiet { color: var(--iron-2); }
  .section-header h2 .v { color: var(--volt); }

  /* ============================================================
     TYPE TILES
     ============================================================ */
  .type-tiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .type-tile {
    background: var(--carbon);
    border: 1px solid var(--iron);
    padding: 32px 24px;
    text-decoration: none;
    color: var(--bone);
    position: relative;
    overflow: hidden;
    transition: all 240ms cubic-bezier(0.2, 0.6, 0.2, 1);
    aspect-ratio: 1.2 / 1;
    display: flex; flex-direction: column; justify-content: space-between;
  }
  .type-tile:hover {
    border-color: var(--volt);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(197, 245, 0, 0.18);
  }
  .type-tile-icon {
    width: 40px; height: 40px;
    color: var(--mercury);
    transition: color 200ms;
  }
  .type-tile:hover .type-tile-icon { color: var(--volt); }
  .type-tile h3 {
    font-family: var(--bebas);
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1.0;
    margin-bottom: 6px;
  }
  .type-tile .count {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    color: var(--mercury);
    text-transform: uppercase;
  }

  /* ============================================================
     STRAIN GRID (3-up)
     ============================================================ */
  .strain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .strain-card {
    background: var(--carbon);
    border: 1px solid var(--iron);
    padding: 24px;
    text-decoration: none;
    color: var(--bone);
    transition: all 220ms cubic-bezier(0.2, 0.6, 0.2, 1);
    position: relative;
  }
  .strain-card:hover {
    border-color: var(--volt);
    transform: translateY(-4px);
    box-shadow: 0 0 32px rgba(197, 245, 0, 0.20);
  }
  .strain-img {
    aspect-ratio: 1 / 1;
    background:
      radial-gradient(circle at 50% 60%, rgba(197, 245, 0, 0.22) 0%, transparent 60%),
      var(--obsidian);
    border: 1px solid var(--iron);
    margin-bottom: 20px;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .strain-img svg { width: 70%; height: 70%; }
  .strain-img.alt-1 { background: radial-gradient(circle at 60% 50%, rgba(245, 227, 0, 0.22) 0%, transparent 55%), var(--obsidian); }
  .strain-img.alt-2 { background: radial-gradient(circle at 40% 60%, rgba(184, 184, 194, 0.16) 0%, transparent 55%), var(--obsidian); }

  .strain-badges {
    position: absolute; top: 12px; left: 12px;
    display: flex; gap: 6px;
  }
  .badge {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
    font-weight: 600;
  }
  .badge-new {
    background: var(--gradient);
    color: var(--obsidian);
  }
  .badge-stock {
    background: rgba(197, 245, 0, 0.10);
    color: var(--volt);
    border: 1px solid rgba(197, 245, 0, 0.35);
  }
  .badge-stock::before {
    content: ""; display: inline-block; width: 6px; height: 6px;
    background: var(--volt); border-radius: 50%; margin-right: 6px;
    box-shadow: 0 0 6px var(--volt);
  }
  .badge-limited {
    background: var(--yellow);
    color: var(--obsidian);
  }
  .badge-reserve {
    background: linear-gradient(135deg, #B8B8C2 0%, #6E6E76 100%);
    color: var(--obsidian);
    font-weight: 700;
  }

  .strain-meta { margin-bottom: 12px; }
  .strain-meta .breeder {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mercury);
    margin-bottom: 6px;
    display: block;
  }
  .strain-meta h3 {
    font-family: var(--bebas);
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1.0;
  }
  .strain-desc {
    color: var(--mercury);
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 16px;
    min-height: 40px;
  }
  .strain-specs {
    display: flex;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--iron);
    margin-bottom: 16px;
  }
  .strain-spec { flex: 1; }
  .strain-spec .label { font-size: 9px; }
  .strain-spec .val {
    display: block;
    font-family: var(--mono);
    font-size: 13px;
    color: var(--bone);
    font-weight: 500;
    margin-top: 2px;
  }
  .strain-spec .val.volt { color: var(--volt); font-weight: 600; }

  .terpene-chips {
    display: flex; gap: 6px; flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .terp {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mercury);
    padding: 4px 10px;
    background: var(--obsidian);
    border: 1px solid var(--iron);
    display: inline-flex; align-items: center; gap: 6px;
  }
  .terp::before {
    content: ""; width: 6px; height: 6px; border-radius: 50%;
  }
  .terp.lim::before { background: #F2D479; }
  .terp.myr::before { background: #6FBE9C; }
  .terp.car::before { background: #C97644; }
  .terp.lin::before { background: #B889E0; }
  .terp.pin::before { background: #5BCFD0; }

  .strain-foot {
    display: flex; justify-content: space-between; align-items: center;
  }
  .strain-price {
    font-family: var(--bebas);
    font-size: 30px;
    letter-spacing: 0.02em;
    line-height: 1;
  }
  .strain-price small {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--mercury);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-left: 4px;
    font-weight: 400;
  }
  .reserve-btn {
    font-family: var(--display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 10px 18px;
    border: 1px solid var(--iron);
    background: transparent;
    color: var(--bone);
    cursor: pointer;
    transition: all 200ms;
  }
  .reserve-btn:hover {
    border-color: var(--volt);
    background: var(--volt);
    color: var(--obsidian);
  }

  /* ============================================================
     BREEDER SPOTLIGHT
     ============================================================ */
  .breeder-spotlight {
    background: linear-gradient(180deg, var(--obsidian) 0%, var(--carbon) 100%);
    border-top: 1px solid var(--iron);
    border-bottom: 1px solid var(--iron);
  }
  .breeder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .breeder-visual {
    aspect-ratio: 1.1 / 1;
    background:
      radial-gradient(circle at 50% 50%, rgba(197, 245, 0, 0.30) 0%, transparent 60%),
      radial-gradient(circle at 70% 30%, rgba(245, 227, 0, 0.18) 0%, transparent 55%),
      var(--obsidian);
    border: 1px solid var(--iron);
    position: relative;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .breeder-visual .logo-mark { width: 60%; height: 60%; }
  .breeder-visual .tag {
    position: absolute;
    top: 24px; left: 24px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--volt);
  }
  .breeder-visual .num {
    position: absolute;
    bottom: 24px; right: 24px;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--mercury);
    letter-spacing: 0.12em;
  }
  .breeder-text .eyebrow { color: var(--yellow); }
  .breeder-text h2 {
    font-family: var(--bebas);
    font-size: clamp(48px, 6.5vw, 92px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: 0.01em;
    margin-bottom: 24px;
    text-transform: uppercase;
  }
  .breeder-text h2 em {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: normal;
  }
  .breeder-text p {
    color: var(--mercury);
    font-size: 16px;
    margin-bottom: 28px;
    max-width: 460px;
  }
  .breeder-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 32px 0;
    border-top: 1px solid var(--iron);
    border-bottom: 1px solid var(--iron);
    margin-bottom: 32px;
    max-width: 460px;
  }
  .stat .num {
    font-family: var(--bebas);
    font-size: 44px;
    color: var(--bone);
    letter-spacing: 0.01em;
    display: block;
    line-height: 1;
  }
  .stat .num.accent { color: var(--volt); }
  .stat .label { margin-top: 4px; }

  /* ============================================================
     DROP COUNTDOWN
     ============================================================ */
  .drop-section {
    background: var(--obsidian);
    position: relative;
    overflow: hidden;
  }
  .drop-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 50%, rgba(197, 245, 0, 0.10) 0%, transparent 50%);
  }
  .drop-card {
    background: var(--carbon);
    border: 1px solid var(--iron);
    padding: 64px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .drop-card::before {
    content: "";
    position: absolute;
    top: 0; right: 0;
    width: 240px; height: 100%;
    background: var(--gradient);
    opacity: 0.08;
  }
  .drop-card .pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gradient);
    color: var(--obsidian);
    font-family: var(--mono);
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.18em;
    padding: 6px 14px;
    text-transform: uppercase;
    margin-bottom: 24px;
  }
  .drop-card .pill::before {
    content: ""; width: 8px; height: 8px; border-radius: 50%;
    background: var(--obsidian);
    animation: pulse 1.4s infinite;
  }
  .drop-card h2 {
    font-family: var(--bebas);
    font-size: clamp(44px, 5.5vw, 72px);
    font-weight: 400;
    letter-spacing: 0.01em;
    margin-bottom: 16px;
    line-height: 0.95;
    text-transform: uppercase;
  }
  .drop-card h2 .v { color: var(--volt); }
  .drop-card p {
    color: var(--mercury);
    margin-bottom: 32px;
    max-width: 460px;
  }
  .countdown {
    display: flex; gap: 16px; flex-wrap: wrap;
    margin-bottom: 32px;
  }
  .count-block {
    background: var(--obsidian);
    border: 1px solid var(--iron);
    padding: 16px 20px;
    min-width: 80px;
    text-align: center;
  }
  .count-block .n {
    font-family: var(--bebas);
    font-size: 44px;
    color: var(--volt);
    letter-spacing: 0.02em;
    display: block;
    line-height: 1;
  }
  .count-block .lab {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    color: var(--mercury);
    text-transform: uppercase;
    margin-top: 6px;
    display: block;
  }

  /* ============================================================
     EDITORIAL / JOURNAL
     ============================================================ */
  .journal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .journal-card {
    text-decoration: none;
    color: var(--bone);
    transition: transform 220ms;
  }
  .journal-card:hover { transform: translateY(-4px); }
  .journal-card:hover h3 { color: var(--volt); }
  .journal-img {
    aspect-ratio: 16 / 10;
    background: var(--carbon);
    border: 1px solid var(--iron);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
  }
  .journal-img.j1 { background: radial-gradient(ellipse at 30% 40%, rgba(197, 245, 0, 0.32) 0%, transparent 60%), var(--carbon); }
  .journal-img.j2 { background: radial-gradient(ellipse at 70% 50%, rgba(245, 227, 0, 0.24) 0%, transparent 55%), var(--carbon); }
  .journal-img.j3 { background: radial-gradient(ellipse at 50% 30%, rgba(184, 184, 194, 0.20) 0%, transparent 60%), var(--carbon); }
  .journal-card .label { display: block; margin-bottom: 8px; color: var(--volt); }
  .journal-card h3 {
    font-family: var(--bebas);
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.0;
    margin-bottom: 12px;
    transition: color 200ms;
    text-transform: uppercase;
  }
  .journal-card p {
    color: var(--mercury);
    font-size: 14px;
    line-height: 1.55;
  }

  /* ============================================================
     NEWSLETTER
     ============================================================ */
  .newsletter {
    background: var(--carbon);
    border-top: 1px solid var(--iron);
    border-bottom: 1px solid var(--iron);
    position: relative;
    overflow: hidden;
  }
  .newsletter::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 0% 50%, rgba(197, 245, 0, 0.06) 0%, transparent 40%),
      radial-gradient(circle at 100% 50%, rgba(245, 227, 0, 0.04) 0%, transparent 40%);
  }
  .newsletter-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 96px var(--gutter);
    position: relative;
    z-index: 1;
  }
  .newsletter h2 {
    font-family: var(--bebas);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.0;
    margin-bottom: 16px;
    text-transform: uppercase;
  }
  .newsletter h2 .v { color: var(--volt); }
  .newsletter p {
    color: var(--mercury);
    margin-bottom: 32px;
  }
  .newsletter-form {
    display: flex; gap: 8px;
    max-width: 480px;
    margin: 0 auto;
  }
  .newsletter-form input {
    flex: 1;
    background: var(--obsidian);
    border: 1px solid var(--iron);
    color: var(--bone);
    padding: 14px 20px;
    font-family: var(--body);
    font-size: 14px;
    outline: none;
    transition: border-color 200ms;
  }
  .newsletter-form input:focus { border-color: var(--volt); }
  .newsletter-form input::placeholder {
    font-family: var(--mono);
    color: var(--mercury);
    font-size: 12px;
    letter-spacing: 0.06em;
  }

  /* ============================================================
     FOOTER
     ============================================================ */
  footer {
    background: var(--obsidian);
    padding: 80px 0 40px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
  }
  .footer-brand .brand-link { margin-bottom: 16px; }
  .footer-brand p {
    color: var(--mercury);
    font-size: 13px;
    line-height: 1.55;
    max-width: 280px;
    margin-bottom: 24px;
  }
  .pay-icons {
    display: flex; gap: 8px; flex-wrap: wrap;
  }
  .pay {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.1em;
    color: var(--mercury);
    border: 1px solid var(--iron);
    padding: 4px 8px;
    text-transform: uppercase;
  }
  .footer-col h5 {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    color: var(--volt);
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 12px; }
  .footer-col a {
    color: var(--mercury);
    font-size: 13px;
    text-decoration: none;
    transition: color 200ms;
  }
  .footer-col a:hover { color: var(--volt); }
  .footer-bottom {
    border-top: 1px solid var(--iron);
    padding-top: 32px;
    display: flex; justify-content: space-between;
    color: var(--mercury);
    font-size: 11px;
    font-family: var(--mono);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    flex-wrap: wrap; gap: 16px;
  }
  .footer-disclaimer {
    margin-top: 40px;
    color: var(--iron-2);
    font-size: 11px;
    line-height: 1.6;
    max-width: 800px;
  }

  /* ============================================================
     RESPONSIVE
     ============================================================ */
  @media (max-width: 980px) {
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .nav-links { display: none; }
    .trust-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .type-tiles { grid-template-columns: repeat(2, 1fr); }
    .strain-grid { grid-template-columns: 1fr; }
    .journal-grid { grid-template-columns: 1fr; }
    .breeder-grid { grid-template-columns: 1fr; gap: 32px; }
    .drop-card { grid-template-columns: 1fr; padding: 40px; gap: 32px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    section.block { padding: 64px 0; }
  }
  @media (max-width: 560px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
    .section-header { flex-direction: column; align-items: flex-start; }
  }
