/* ============================================================
   natalie.kreatywnie — landing
   Tokens, base, components
   ============================================================ */

:root {
  /* Color */
  --bg: #FAFAFA;
  --ink: #0A0A0A;
  --ink-2: #1A1A1A;
  --muted: #6B6B6B;
  --muted-2: #9A9A9A;
  --line: #E6E6E6;
  --line-strong: #0A0A0A;

  --lime: #51F500;
  --lime-tint: #F0FCE0;
  --lime-tint-2: #EBF9D6;
  --marker: #FFE600;

  /* Shadow */
  --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-lift: 0 12px 24px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 18px 36px rgba(0, 0, 0, 0.10);

  /* Type */
  --f-sans: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  --f-mono: "DM Mono", ui-monospace, "JetBrains Mono", Menlo, monospace;
  --f-serif: "Instrument Serif", "Times New Roman", serif;

  /* Radius */
  --r-card: 16px;
  --r-pill: 999px;

  /* Container */
  --maxw: 1240px;
  --pad: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }

::selection { background: var(--lime); color: var(--ink); }

/* ---------------- Layout ---------------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.section {
  padding-block: clamp(72px, 11vw, 128px);
  position: relative;
}

/* ---------------- Type ---------------- */
.mono {
  font-family: var(--f-mono);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  color: var(--muted);
  display: inline-block;
}
.section .mono { display: block; margin-bottom: 6px; }
.mono--ink { color: var(--ink); }

.eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--lime); display: inline-block; }

.h-display {
  font-family: var(--f-sans);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.02;
  font-size: clamp(40px, 7.4vw, 92px);
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
.h-display .italic {
  font-family: var(--f-serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.015em;
  /* serif sits slightly differently — visual nudge */
  padding-inline: 0.04em;
}

.h-section {
  font-family: var(--f-sans);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.04;
  font-size: clamp(34px, 5vw, 64px);
  margin: 8px 0 0;
  text-wrap: balance;
}
.h-section .italic {
  font-family: var(--f-serif);
  font-weight: 400;
  font-style: italic;
}

.h-sub {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: clamp(20px, 2vw, 22px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin: 0;
}

.body p { margin: 0 0 1em; }
.body p:last-child { margin-bottom: 0; }

/* Yellow marker — sits on top of the descender baseline */
.marker {
  background-image: linear-gradient(transparent 58%, var(--marker) 58%, var(--marker) 94%, transparent 94%);
  background-repeat: no-repeat;
  padding-inline: 2px;
}

/* ---------------- Pill badges ---------------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1.5px solid var(--ink);
  border-radius: var(--r-pill);
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.005em;
  background: #fff;
  color: var(--ink);
  white-space: nowrap;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.pill .dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 0 3px rgba(81,245,0,0.18);
}
.pill:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }

/* CTA pill */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  border-radius: var(--r-pill);
  background: var(--ink);
  color: #fff;
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.005em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  border: 1.5px solid var(--ink);
}
.cta:hover {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(81,245,0,0.28);
}
.cta .arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 999px;
  background: rgba(255,255,255,0.14);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), background .25s ease;
}
.cta:hover .arrow { background: rgba(10,10,10,0.1); transform: translateY(4px); }

.cta--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.cta--ghost:hover { background: var(--lime); border-color: var(--lime); color: var(--ink); }

/* ---------------- Nav ---------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  background: rgba(250, 250, 250, 0.78);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.nav.is-scrolled { border-bottom-color: var(--line); }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 18px;
}
.nav__brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-sans);
  font-weight: 700;
  letter-spacing: -0.015em;
  font-size: 16px;
}
.nav__brand .glyph {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--lime);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--f-serif); font-style: italic;
  font-size: 20px; color: var(--ink);
  box-shadow: 0 0 0 2px #fff inset, 0 4px 14px rgba(81,245,0,0.35);
}
.nav__links { display: flex; gap: 28px; align-items: center; }
.nav__links a {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  color: var(--muted);
  transition: color .2s ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__cta {
  font-family: var(--f-sans); font-weight: 500;
  font-size: 14px;
  padding: 10px 16px;
  border: 1.5px solid var(--ink);
  border-radius: var(--r-pill);
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s ease, color .2s ease;
}
.nav__cta:hover { background: var(--ink); color: #fff; }

@media (max-width: 760px) {
  .nav__links { display: none; }
}

/* ---------------- Hero ---------------- */
.hero {
  padding-top: clamp(40px, 7vw, 88px);
  padding-bottom: clamp(56px, 9vw, 120px);
  position: relative;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 920px) {
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
}

.hero__label {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 28px;
}
.hero__label .tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  color: var(--ink);
  padding: 6px 10px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: #fff;
}
.hero__label .ast {
  font-family: var(--f-mono);
  color: var(--lime);
  font-size: 14px;
}

.hero__h1 { margin-bottom: 28px; }

.hero__badges { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }

.hero__cta-row {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.hero__meta {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

/* Hero image with lime aura */
.hero__photo {
  position: relative;
  justify-self: center;
  width: min(520px, 100%);
  aspect-ratio: 4 / 5;
  display: flex; align-items: center; justify-content: center;
}
.hero__photo .aura {
  position: absolute; inset: -8% -10% -4% -10%;
  background:
    radial-gradient(60% 55% at 55% 45%, rgba(81,245,0,0.42), rgba(81,245,0,0) 70%),
    radial-gradient(45% 60% at 30% 65%, rgba(81,245,0,0.18), rgba(81,245,0,0) 75%);
  filter: blur(8px);
  z-index: 0;
  pointer-events: none;
}
.hero__photo .frame {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: #efefef;
  box-shadow: var(--shadow-soft);
}
.hero__photo .frame img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 22%;
}
.hero__photo .frame .placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-mono); font-size: 12px; color: var(--muted);
  text-align: center; padding: 24px;
  background: linear-gradient(180deg, #f6f6f6, #ececec);
}

/* Decorative floating chips around photo */
.hero__chip {
  position: absolute;
  z-index: 2;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  background: #fff;
  border: 1px solid var(--ink);
  padding: 8px 12px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 8px;
}
.hero__chip .dot { width:6px; height: 6px; border-radius: 999px; background: var(--lime); }
.hero__chip.--tl { top: -8px; left: -14px; transform: rotate(-3deg); }
.hero__chip.--br { bottom: 10%; right: -22px; transform: rotate(2deg); background: var(--lime); border-color: var(--ink); }

@media (max-width: 920px) {
  .hero__chip.--tl { left: 6%; top: 0; }
  .hero__chip.--br { right: 6%; bottom: -10px; }
}

/* Hero corner ornaments */
.corner-ornament {
  position: absolute;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.corner-ornament .lime { color: var(--lime); }

/* ---------------- Section heading shared ---------------- */
.section__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: clamp(40px, 5vw, 72px);
}
.section__head-row {
  display: flex; align-items: end; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
}
.section__head-meta {
  font-family: var(--f-mono); font-size: 12px; color: var(--muted);
  letter-spacing: 0.06em; text-transform: lowercase;
}

/* ---------------- Instagram grid ---------------- */
.insta {
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.insta__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.4vw, 20px);
}
@media (max-width: 920px) { .insta__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .insta__grid { grid-template-columns: 1fr; } }

.insta__tile {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--r-card);
  background: #f0f0f0;
  isolation: isolate;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
}
.insta__tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.2,1), filter .35s ease;
}
.insta__tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.insta__tile:hover img { transform: scale(1.045); }

.insta__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.55));
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: lowercase;
}
.insta__overlay .ig-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 10px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.insta__tile:hover .insta__overlay { opacity: 1; transform: translateY(0); }

.insta__tile .corner {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.92);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  opacity: 0; transform: translateY(-4px);
  transition: opacity .25s ease, transform .25s ease;
}
.insta__tile:hover .corner { opacity: 1; transform: translateY(0); }

.insta__placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  background:
    repeating-linear-gradient(45deg, #f4f4f4 0 12px, #ececec 12px 24px);
  font-family: var(--f-mono); font-size: 11px; color: var(--muted);
  text-align: center; padding: 16px;
  letter-spacing: 0.06em; text-transform: lowercase;
}
.insta__placeholder .num { font-family: var(--f-sans); font-weight: 800; font-size: 32px; color: #c8c8c8; letter-spacing: -0.02em; }

.insta__more {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 36px;
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 4px;
  transition: gap .25s ease, color .25s ease;
}
.insta__more:hover { gap: 18px; }

/* ---------- Oficjalne embedy Instagrama ---------- */
.insta__embed-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.4vw, 20px);
  align-items: start;
}
@media (max-width: 920px) { .insta__embed-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 540px) { .insta__embed-grid { grid-template-columns: minmax(0, 1fr); } }

.insta__embed-cell {
  min-width: 0;
  border-radius: var(--r-card);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
}
.insta__embed-cell:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

/* Wymuszamy, by IG embed nie wystawał z komórki gridu */
.insta__embed-cell .instagram-media,
.insta__embed-cell iframe.instagram-media {
  min-width: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}

/* ---------------- About ---------------- */
.about {
  background: var(--lime-tint);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(35% 30% at 90% 10%, rgba(81,245,0,0.18), transparent 70%),
    radial-gradient(40% 35% at 0% 100%, rgba(81,245,0,0.16), transparent 70%);
  pointer-events: none;
}
.about__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
  position: relative;
}
@media (max-width: 920px) { .about__grid { grid-template-columns: 1fr; } }

.about__intro {
  font-size: 19px;
  line-height: 1.5;
  margin: 24px 0 36px;
  max-width: 56ch;
  color: var(--ink-2);
}

.about__list-title {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 20px;
}
.about__list-title .emoji { font-size: 18px; }

.about__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.about__list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: baseline;
  font-size: 18px;
  line-height: 1.45;
  color: var(--ink-2);
}
.about__list li .num {
  font-family: var(--f-sans);
  font-weight: 800;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  -webkit-text-stroke: 1px var(--ink);
  text-shadow:
    2px 2px 0 var(--lime);
}
.about__list li.--soft .num { color: var(--muted-2); text-shadow: none; -webkit-text-stroke: 0; font-weight: 600; font-style: italic; }

.about__sep {
  font-family: var(--f-mono);
  font-size: 18px;
  color: var(--lime);
  text-align: center;
  margin: 40px auto;
  letter-spacing: 0.4em;
  display: flex; align-items: center; justify-content: center; gap: 14px;
}
.about__sep::before, .about__sep::after {
  content: "";
  flex: 0 0 56px;
  height: 1px;
  background: rgba(10,10,10,0.18);
}

.about__manifest {
  border-left: 2px solid var(--lime);
  padding: 4px 0 4px 22px;
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 60ch;
  font-style: normal;
}
.about__manifest strong { font-weight: 600; }

/* Right column: photo */
.about__photo {
  position: relative;
  aspect-ratio: 1 / 1.05;
  width: 100%;
  max-width: 480px;
  justify-self: end;
}
@media (max-width: 920px) { .about__photo { justify-self: start; max-width: 100%; } }
.about__photo .frame {
  position: relative;
  width: 100%; height: 100%;
  border-radius: var(--r-card);
  overflow: hidden;
  background: #ddd;
  box-shadow: var(--shadow-soft);
  transform: rotate(-1.2deg);
}
.about__photo .frame img { width: 100%; height: 100%; object-fit: cover; }
.about__photo .tape {
  position: absolute;
  top: -14px; left: 32px;
  width: 90px; height: 22px;
  background: rgba(255, 230, 0, 0.7);
  transform: rotate(-6deg);
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.about__photo .caption {
  position: absolute;
  bottom: -36px; right: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  transform: rotate(2deg);
}
.about__photo .caption .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--lime); }

/* ---------------- Contact ---------------- */
.contact { background: var(--bg); }
.contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.6vw, 24px);
}
@media (max-width: 900px) { .contact__grid { grid-template-columns: 1fr; } }

.contact__card {
  display: flex; flex-direction: column;
  gap: 18px;
  padding: 32px 28px 28px;
  background: #fff;
  border: 1.5px solid var(--ink);
  border-radius: var(--r-card);
  min-height: 280px;
  position: relative;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease, background .3s ease;
}
.contact__card:hover {
  background: var(--lime);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.contact__card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--ink);
  background: #fff;
  transition: background .3s ease;
}
.contact__card:hover .contact__card-icon { background: #fff; }
.contact__card-icon svg { width: 24px; height: 24px; }

.contact__card-platform {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  color: var(--muted);
}
.contact__card:hover .contact__card-platform { color: var(--ink-2); }

.contact__card-handle {
  font-family: var(--f-sans);
  font-weight: 800;
  font-size: 19px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.contact__card-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}
.contact__card:hover .contact__card-desc { color: var(--ink-2); }

.contact__card-cta {
  margin-top: auto;
  display: inline-flex; align-items: center; justify-content: space-between;
  padding-top: 16px;
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 15px;
  border-top: 1px dashed rgba(10,10,10,0.18);
}
.contact__card:hover .contact__card-cta { border-top-color: rgba(10,10,10,0.35); }
.contact__card-cta .arrow {
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
}
.contact__card:hover .arrow { transform: translateX(6px); }

/* ---------------- Footer ---------------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 36px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.footer a:hover { color: var(--ink); }

/* ---------------- Misc ornaments ---------------- */
.ast {
  font-family: var(--f-mono);
  color: var(--lime);
  font-size: 14px;
  display: inline-block;
}

.hide-mobile { display: inline; }
@media (max-width: 760px) { .hide-mobile { display: none; } }

/* ---------------- Tweaks panel visibility hook ---------------- */
/* (panel handles itself, here for safety) */

/* ---------------- Responsive type tweaks ---------------- */
@media (max-width: 640px) {
  body { font-size: 16px; }
  .pill { padding: 9px 14px; font-size: 13px; }
  .cta { padding: 16px 22px; font-size: 15px; }
  .about__list li { font-size: 16px; grid-template-columns: 40px 1fr; }
  .about__list li .num { font-size: 26px; }
  .contact__card-handle { font-size: 22px; }
}

/* ============================================================
   Prompt Teaser Section
   ============================================================ */

.prompt-teaser {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Subtle grid texture */
.prompt-teaser::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(81,245,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(81,245,0,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* Lime glow top-right */
.prompt-teaser::after {
  content: "";
  position: absolute;
  top: -10%; right: -5%;
  width: 45%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(81,245,0,0.14) 0%, transparent 70%);
  pointer-events: none;
}

.prompt-teaser .section__head { margin-bottom: clamp(32px, 4vw, 56px); }
.prompt-teaser .section__head .mono { color: rgba(255,255,255,0.4); }

.prompt-teaser .h-section { color: #fff; }
.prompt-teaser .h-section .italic { color: var(--lime); }

.prompt-teaser .section__head-meta { color: rgba(255,255,255,0.35); }

.prompt-teaser__desc {
  font-size: clamp(16px, 1.4vw, 18px);
  color: rgba(255,255,255,0.55);
  max-width: 62ch;
  margin: 16px 0 0;
  line-height: 1.6;
}

/* --- Preview strip --- */
.prompt-teaser__strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(10px, 1vw, 14px);
  margin-bottom: clamp(32px, 4vw, 48px);
  position: relative;
  z-index: 1;
}

@media (max-width: 1000px) { .prompt-teaser__strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .prompt-teaser__strip { grid-template-columns: repeat(2, 1fr); } }

.prompt-teaser__card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
}

.prompt-teaser__img-wrap {
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, border-color .3s ease;
}
.prompt-teaser__card:hover .prompt-teaser__img-wrap {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(81,245,0,0.3);
  border-color: rgba(81,245,0,0.4);
}

.prompt-teaser__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.prompt-teaser__card:hover .prompt-teaser__img-wrap img {
  transform: scale(1.04);
}

.prompt-teaser__card-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: rgba(255,255,255,0.35);
  transition: color .25s ease;
  text-align: center;
}
.prompt-teaser__card:hover .prompt-teaser__card-label {
  color: var(--lime);
}

/* --- CTA row --- */
.prompt-teaser__cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: clamp(24px, 3vw, 36px);
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 1;
}

.prompt-teaser__pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.prompt-teaser .pill {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.7);
}
.prompt-teaser .pill .dot {
  background: var(--lime);
  box-shadow: 0 0 0 3px rgba(81,245,0,0.2);
}
.prompt-teaser .pill:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.prompt-teaser .cta {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
}
.prompt-teaser .cta:hover {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(255,255,255,0.15);
}
.prompt-teaser .cta .arrow {
  background: rgba(10,10,10,0.12);
}
.prompt-teaser .cta:hover .arrow {
  background: rgba(10,10,10,0.1);
}

@media (max-width: 640px) {
  .prompt-teaser__cta-row { flex-direction: column; align-items: flex-start; }
  .prompt-teaser__pill-group { gap: 8px; }
}
