/* ═══════════════════════════════════════════════════════════════════
   DragonDefer Studio – style.css
   Palette : fond #1a1410, surface #231c14, accent #c96a2e, or #d4a55a
   ═══════════════════════════════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #161210;
  --bg-card:     #1e1810;
  --bg-card-2:   #231d13;
  --bg-light:    #2a2116;
  --border:      rgba(255,255,255,.07);
  --border-warm: rgba(196,132,60,.18);

  --accent:      #c96a2e;
  --accent-h:    #e07a38;
  --gold:        #c9943a;
  --gold-light:  #dbb97a;

  --text:        #e8ddd0;
  --text-muted:  #9e8e7a;
  --text-soft:   #c4b49a;

  --tag-red:     rgba(180,60,40,.85);
  --tag-brown:   rgba(130,80,30,.85);
  --tag-green:   rgba(60,110,70,.85);

  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   20px;

  --shadow:      0 4px 32px rgba(0,0,0,.5);
  --shadow-card: 0 2px 20px rgba(0,0,0,.4);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

a { text-decoration: none; color: inherit; transition: color .2s; }

ul { list-style: none; }

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 28px;
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 11px 22px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary {
  background: var(--accent);
  color: #fff;
}
.btn--primary:hover { background: var(--accent-h); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,.25);
}
.btn--ghost:hover { border-color: rgba(255,255,255,.5); }

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,.2);
  font-size: 13px;
  padding: 8px 18px;
}
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-icon {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  display: flex;
  transition: color .2s;
}
.btn-icon:hover { color: var(--text); }

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(22, 18, 16, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.navbar__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 64px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo__img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 6px;
}
.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--text);
  letter-spacing: .01em;
}
.logo__sub {
  font-size: 9px;
  letter-spacing: .25em;
  color: var(--gold);
  font-weight: 500;
  margin-top: 2px;
}

/* Nav links */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav__link {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color .2s, background .2s;
  position: relative;
}
.nav__link:hover { color: var(--text); }
.nav__link--active {
  color: var(--text);
}
.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Burger (mobile) */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse 70% 60% at 70% 50%, #2e1d0a 0%, var(--bg) 70%);
  padding-block: 64px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/hero-texture.png') repeat;
  opacity: .03;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero__accent {
  color: var(--accent);
  font-style: italic;
}

.hero__desc {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 24px;
}

.hero__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.hero__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-soft);
}
.hero__list-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__list-icon svg { width: 16px; height: 16px; }
.hero__list-icon--red { color: #c0443a; }

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero image */
.hero__visual {
  position: relative;
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2a1f0f 0%, #1a1208 100%);
  color: var(--text-muted);
  font-size: 12px;
  font-family: monospace;
  border: 1px dashed var(--border-warm);
  border-radius: var(--radius-lg);
  /* hidden when real image loads */
}
.hero__visual img:not([src="images/hero-desk.jpg"]) + .hero__img-placeholder,
.hero__visual img[src="images/hero-desk.jpg"] { /* placeholder hides when img loads */ }

/* ══════════════════════════════════════════
   SECTION COMMON HEADER
══════════════════════════════════════════ */
.section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.section-header__left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-icon {
  width: 32px;
  height: 32px;
  color: var(--gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-icon svg { width: 22px; height: 22px; }
.section-icon--gold { color: var(--gold); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}
.section-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}
.section-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  text-align: right;
  max-width: 320px;
}

/* ══════════════════════════════════════════
   PROFILES
══════════════════════════════════════════ */
.profiles {
  background: #0e0c09;
  padding-block: 72px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.profiles__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.profile-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  cursor: pointer;
}
.profile-card:hover {
  border-color: var(--border-warm);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.profile-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.profile-card__icon svg { width: 22px; height: 22px; }

.profile-card__icon--dark  { background: #1e1e22; color: #a0a8c0; }
.profile-card__icon--green { background: #1a2e1e; color: #6aaf7a; }
.profile-card__icon--brown { background: #2a1e10; color: var(--gold); }
.profile-card__icon--red   { background: #2e1414; color: #d06060; }
.profile-card__icon--teal  { background: #102a2a; color: #5aafaf; }

.profile-card__title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}
.profile-card__desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}
.profile-card__arrow {
  font-size: 18px;
  color: var(--text-muted);
  margin-top: 6px;
  transition: color .2s, transform .2s;
  display: inline-block;
}
.profile-card:hover .profile-card__arrow {
  color: var(--accent);
  transform: translateX(4px);
}

/* ══════════════════════════════════════════
   SELECTION
══════════════════════════════════════════ */
.selection {
  padding-block: 72px;
  background: var(--bg);
}

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

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  cursor: pointer;
}
.product-card:hover {
  border-color: var(--border-warm);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.product-card__img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #1e1608 0%, #0e0c06 100%);
}
.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.product-card:hover .product-card__img { transform: scale(1.04); }

.product-card__img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 11px;
  font-family: monospace;
  border-bottom: 1px dashed var(--border-warm);
  background: linear-gradient(135deg, #1e1608 0%, #0e0c06 100%);
}

.product-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  color: #fff;
}
.product-card:nth-child(1) .product-card__tag { background: var(--tag-red); }
.product-card:nth-child(2) .product-card__tag { background: var(--tag-brown); }
.product-card:nth-child(3) .product-card__tag { background: rgba(50,80,50,.85); }

.product-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.product-card__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.product-card__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.product-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.dot { color: var(--accent); font-size: 10px; }

/* ══════════════════════════════════════════
   METHOD
══════════════════════════════════════════ */
.method {
  padding-block: 72px;
  background: #0e0c09;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.method__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0 16px;
  margin-top: 16px;
}

.method__step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  transition: border-color .25s, box-shadow .25s;
}
.method__step:hover {
  border-color: var(--border-warm);
  box-shadow: var(--shadow-card);
}

.method__step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: #1a1208;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.method__step-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.method__step-icon svg { width: 22px; height: 22px; }

.method__step-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.method__step-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

.method__connector {
  color: var(--border-warm);
  letter-spacing: .2em;
  font-size: 11px;
  align-self: center;
  padding-top: 28px;
  user-select: none;
}

/* ══════════════════════════════════════════
   NEWSLETTER
══════════════════════════════════════════ */
.newsletter {
  padding-block: 72px;
  background: var(--bg);
}

.newsletter__inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: center;
  background: var(--bg-card-2);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  padding: 48px;
  overflow: hidden;
  position: relative;
}

.newsletter__visual {
  width: 160px;
  height: 160px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}
.newsletter__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.newsletter__img-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2a1e0e, #1a1208);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 11px;
  font-family: monospace;
  border: 1px dashed var(--border-warm);
  border-radius: var(--radius);
}

.newsletter__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.newsletter__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--text);
}
.newsletter__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 480px;
}

.newsletter__form {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  max-width: 460px;
}
.newsletter__input {
  flex: 1;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 11px 20px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
}
.newsletter__input::placeholder { color: var(--text-muted); }
.newsletter__input:focus { border-color: rgba(201,106,46,.4); }

.newsletter__legal {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
}
.newsletter__legal svg { color: #4caf6a; flex-shrink: 0; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: #0a0806;
  border-top: 1px solid var(--border);
  padding-block: 48px 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 220px repeat(3, 1fr) 80px;
  gap: 32px;
  align-items: start;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__tagline {
  font-family: var(--font-display);
  font-size: 13px;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.55;
}

.footer__col-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: .04em;
  margin-bottom: 12px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color .2s;
}
.footer__links a:hover { color: var(--text); }

.footer__social {
  display: flex;
  gap: 14px;
}
.footer__social-link {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  transition: color .2s, border-color .2s;
}
.footer__social-link svg { width: 16px; height: 16px; }
.footer__social-link:hover { color: var(--text); border-color: var(--border-warm); }

.footer__deco {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  height: 100%;
}
.footer__plant {
  width: 80px;
  height: auto;
  opacity: .5;
  object-fit: contain;
}

/* ══════════════════════════════════════════
   IMAGE PLACEHOLDER LOGIC
   (hides placeholder when real img loads)
══════════════════════════════════════════ */
img.loaded + .hero__img-placeholder,
img.loaded + .product-card__img-placeholder,
img.loaded + .newsletter__img-placeholder { display: none; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .profiles__grid { grid-template-columns: repeat(3, 1fr); }
  .method__steps {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .method__connector { display: none; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { height: 300px; order: -1; }
  .selection__grid { grid-template-columns: 1fr 1fr; }
  .newsletter__inner { grid-template-columns: 1fr; }
  .newsletter__visual { width: 100%; height: 200px; }
  .section-header { flex-direction: column; }
  .section-desc { text-align: left; max-width: 100%; }
}

@media (max-width: 640px) {
  .nav { display: none; }
  .navbar__actions { display: none; }
  .burger { display: flex; }

  .nav.nav--open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 64px 0 0;
    background: rgba(14,12,9,.97);
    padding: 32px 24px;
    gap: 6px;
    z-index: 99;
  }
  .nav.nav--open .nav__link {
    font-size: 18px;
    padding: 12px 16px;
  }
  .nav.nav--open + .navbar__actions {
    display: flex;
  }

  .profiles__grid { grid-template-columns: 1fr 1fr; }
  .selection__grid { grid-template-columns: 1fr; }
  .method__steps { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in {
  animation: fadeUp .5s ease forwards;
}

/* Scroll reveal targets */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
[data-reveal].visible {
  opacity: 1;
  transform: none;
}

/* DragonDefer integration: keeps the provided template structure, wired to the live catalogue. */
:root {
  --bg:          #121412;
  --bg-card:     #1a1f1b;
  --bg-card-2:   #20241e;
  --bg-light:    #252b25;
  --border:      rgba(255,255,255,.08);
  --border-warm: rgba(196,132,60,.22);

  --accent:      #c96a2e;
  --accent-h:    #de7b3c;
  --gold:        #c9943a;
  --gold-light:  #dfc17a;

  --text:        #f1eadf;
  --text-muted:  #a99c8d;
  --text-soft:   #d2c4ad;

  --tag-red:     rgba(176,74,58,.9);
  --tag-brown:   rgba(163,109,43,.9);
  --tag-green:   rgba(70,126,87,.9);
}

.logo__mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #161210;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -.08em;
}

.hero__eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero__disclosure {
  margin-top: 24px;
  max-width: 620px;
  padding: 14px 16px;
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-sm);
  background: rgba(201,106,46,.08);
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.6;
}

.hero__visual--cards {
  padding: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1.1fr .9fr .8fr;
  gap: 16px;
  background:
    radial-gradient(circle at 20% 20%, rgba(201,106,46,.25), transparent 34%),
    radial-gradient(circle at 80% 70%, rgba(82,132,93,.24), transparent 34%),
    linear-gradient(135deg, #252a24 0%, #141713 100%);
  border: 1px solid var(--border-warm);
}

.hero-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 120px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  background: rgba(10,8,6,.56);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.hero-card--large {
  grid-column: span 2;
}

.hero-card--green {
  background: rgba(37,76,51,.48);
}

.hero-card--red {
  background: rgba(95,43,36,.48);
}

.hero-card--line {
  grid-column: span 2;
  min-height: 96px;
  background: rgba(201,106,46,.12);
  border-color: var(--border-warm);
}

.hero-card span {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-card strong {
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(20px, 2.8vw, 34px);
  line-height: 1.1;
}

.hero-card--small strong,
.hero-card--line strong {
  font-size: clamp(17px, 1.8vw, 22px);
}

.selection__grid--dynamic {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: stretch;
}

.product-card--detailed {
  cursor: default;
}

.product-card--detailed:hover {
  transform: translateY(-2px);
}

.product-card--notice {
  grid-column: 1 / -1;
  border-color: var(--border-warm);
  background: rgba(201,106,46,.08);
}

.product-card code {
  padding: 2px 5px;
  border-radius: 5px;
  background: rgba(255,255,255,.07);
  color: var(--text);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: .92em;
}

.product-card__img-wrap--generated {
  height: 190px;
}

.product-card__img-placeholder--visible {
  padding: 28px;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  color: var(--text-soft);
  background:
    radial-gradient(circle at 25% 20%, rgba(201,106,46,.24), transparent 32%),
    radial-gradient(circle at 75% 70%, rgba(73,121,88,.2), transparent 32%),
    linear-gradient(135deg, #20170d 0%, #11140f 100%);
}

.product-card__img-placeholder--visible span {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.product-card__img-placeholder--visible strong {
  max-width: 320px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.2;
}

.product-card__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}

.product-card__status {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-muted);
  background: rgba(255,255,255,.04);
  font-size: 11px;
  font-weight: 700;
}

.product-card__status--tested {
  color: #c8f0d4;
  background: rgba(70,126,87,.28);
}

.product-card__status--research {
  color: #f0d8a8;
  background: rgba(201,148,58,.24);
}

.product-card__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 8px;
}

.product-card__details h4,
.product-card__variants h4 {
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.product-card__details ul {
  display: grid;
  gap: 6px;
  list-style: disc;
  padding-left: 18px;
  color: var(--text-muted);
  font-size: 12.5px;
  line-height: 1.55;
}

.product-card__weakness {
  margin-top: 8px;
  padding: 12px 14px;
  border: 1px solid rgba(176,74,58,.22);
  border-radius: var(--radius-sm);
  background: rgba(176,74,58,.08);
  color: var(--text-soft);
  font-size: 12.5px;
  line-height: 1.6;
}

.product-card__weakness strong {
  color: var(--text);
}

.product-card__variants {
  margin-top: 6px;
}

.product-card__variant-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-card__variant {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 11px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.04);
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 700;
}

a.product-card__variant:hover {
  border-color: var(--accent);
  color: var(--text);
}

.product-card__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.product-card__action-note {
  color: var(--text-muted);
  font-size: 12px;
}

.btn--disabled,
.btn--disabled:hover {
  background: rgba(201,148,58,.55);
  color: #19130d;
  cursor: not-allowed;
  transform: none;
}

.transparency-panel .newsletter__inner {
  grid-template-columns: 180px 1fr;
}

.transparency-panel__visual {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 35% 25%, rgba(201,106,46,.34), transparent 35%),
    linear-gradient(135deg, #2b2014, #131611);
  border: 1px solid var(--border-warm);
}

.transparency-panel__visual span {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 700;
  letter-spacing: -.06em;
}

.footer__inner {
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
}

@media (max-width: 900px) {
  .hero__visual--cards {
    height: auto;
    min-height: 360px;
  }

  .product-card__details {
    grid-template-columns: 1fr;
  }

  .transparency-panel .newsletter__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding-block: 46px;
  }

  .hero__visual--cards {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: auto;
    order: 0;
  }

  .hero-card,
  .hero-card--large,
  .hero-card--line {
    grid-column: auto;
    min-height: 118px;
  }

  .selection__grid--dynamic {
    grid-template-columns: 1fr;
  }

  .product-card__img-placeholder--visible strong {
    font-size: 21px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
  }
}
