/* =========================================================
   Markirovka Etiket — HSR Baskı Teknolojileri
   Light, institutional, Chestny Znak-inspired palette
   ========================================================= */

:root {
  /* Core palette — Chestny Znak: yellow-dominant / clean cool-neutrals / graphite */
  --white:     #FFFFFF;
  --snow:      #F5F5F3;
  --stone:     #ECECEA;
  --stone-2:   #E2E2DF;
  --line:      #E5E5E1;
  --line-2:    #D7D7D2;

  --ink:       #1D1D1B;
  --ink-2:     #2E2E2B;
  --muted:     #6C6C67;
  --muted-2:   #9A9A94;

  --yellow:    #FFDD2D;
  --yellow-d:  #EAC400;
  --yellow-bg: #FFF4C2;
  --red:       #D7263D;
  --green:     #1F8A52;

  /* Typography */
  --sans:  "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --mono:  "IBM Plex Mono", ui-monospace, Menlo, monospace;

  /* Scale */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --r-xl: 20px;

  --wrap: 1200px;
  --pad: clamp(18px, 3.5vw, 36px);
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--yellow); color: var(--ink); }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ---------- Typography — reduced scale ---------- */

h1, h2, h3, h4 {
  font-family: var(--sans);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 .5em;
  color: var(--ink);
}

h1 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); font-weight: 800; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
h3 { font-size: clamp(1.05rem, 1.4vw, 1.2rem); }
h4 { font-size: .95rem; letter-spacing: -0.01em; }

p { margin: 0 0 1em; }

.lede {
  font-size: clamp(.98rem, 1.15vw, 1.1rem);
  color: var(--muted);
  max-width: 62ch;
  line-height: 1.65;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 18px; height: 1px;
  background: var(--ink);
  display: inline-block;
}

/* ---------- Navigation ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -.01em;
  color: var(--ink);
}
.brand-mark {
  width: 30px; height: 30px;
  background: var(--yellow);
  border-radius: 7px;
  position: relative;
  flex: 0 0 auto;
}
.brand-mark::after {
  content: "";
  position: absolute;
  left: 7px; top: 12px;
  width: 7px; height: 12px;
  border-right: 2.5px solid var(--ink);
  border-bottom: 2.5px solid var(--ink);
  transform: rotate(45deg) translate(-1px, -2px);
}
.brand small {
  display: block;
  font-family: var(--mono);
  font-weight: 400;
  font-size: 9px;
  letter-spacing: .14em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  gap: 2px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  display: inline-block;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: var(--r-md);
  transition: color .2s, background .2s;
}
.nav-links a:hover { background: var(--snow); }
.nav-links a.active { color: var(--ink); background: var(--snow); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  background: var(--ink);
  color: var(--white);
  font-weight: 600;
  font-size: 13px;
  border-radius: var(--r-md);
  transition: background .2s;
}
.nav-cta:hover { background: var(--ink-2); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--ink);
  width: 38px; height: 38px;
  border-radius: var(--r-md);
  cursor: pointer;
  font-size: 18px;
  align-items: center;
  justify-content: center;
}

@media (max-width: 960px) {
  .nav-links, .nav-cta-wrap { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-open .nav-links {
    display: flex;
    position: fixed;
    inset: 64px 0 0;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    padding: 20px var(--pad);
    border-top: 1px solid var(--line);
    z-index: 49;
    overflow-y: auto;
  }
  .nav-open .nav-links a {
    padding: 14px 0;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }
  .nav-open .nav-cta-wrap {
    display: block;
    position: fixed;
    bottom: 18px;
    left: var(--pad); right: var(--pad);
    z-index: 49;
  }
  .nav-open .nav-cta { width: 100%; justify-content: center; padding: 14px; font-size: 15px; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: clamp(40px, 5vw, 72px) 0 clamp(40px, 5vw, 72px);
  background: var(--yellow);
  border-bottom: 1px solid var(--ink);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

.hero h1 { margin: 14px 0 0; max-width: 18ch; }
.hero h1 .y { color: var(--yellow); background: var(--ink); padding: 0 .15em; border-radius: 4px; }

.hero-sub {
  margin-top: 20px;
  max-width: 52ch;
  font-size: clamp(.98rem, 1.1vw, 1.08rem);
  color: var(--muted);
  line-height: 1.6;
}
.hero-sub strong { color: var(--ink); font-weight: 600; }

/* Hero content legibility on the yellow field (index only) */
.hero .eyebrow { color: var(--ink-2); }
.hero .hero-sub { color: rgba(29,29,27,.82); }
.hero .trust { border-top-color: rgba(29,29,27,.16); }
.hero .trust .lbl { color: var(--ink-2); }

.hero-cta {
  margin-top: 28px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s, background .15s, color .15s, border-color .15s, box-shadow .15s;
  font-family: var(--sans);
  line-height: 1;
}
.btn-primary { background: var(--yellow); color: var(--ink); }
.btn-primary:hover { background: var(--yellow-d); }
.btn-ink { background: var(--ink); color: var(--white); }
.btn-ink:hover { background: var(--ink-2); }
.btn-ghost { background: transparent; border-color: var(--line-2); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-on-yellow-ghost { background: transparent; border-color: rgba(29,29,27,.32); color: var(--ink); }
.btn-on-yellow-ghost:hover { border-color: var(--ink); background: rgba(29,29,27,.05); }
.btn .arr { font-weight: 400; }

/* ---------- Data Matrix visual ---------- */

.datamatrix {
  --cell: 10px;
  --cols: 16;
  --rows: 16;
  width: calc(var(--cell) * var(--cols));
  height: calc(var(--cell) * var(--rows));
  display: grid;
  grid-template-columns: repeat(var(--cols), var(--cell));
  grid-template-rows: repeat(var(--rows), var(--cell));
  gap: 1px;
  position: relative;
}
.datamatrix .c { background: transparent; }
.datamatrix .c.on { background: var(--ink); }

.hero-dm {
  position: relative;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  aspect-ratio: 1 / 1;
  max-width: 440px;
  margin-left: auto;
  box-shadow: 0 1px 0 rgba(0,0,0,.02), 0 16px 40px -24px rgba(0,0,0,.12);
}
.hero-dm::before {
  content: "DATAMATRIX · GS1";
  position: absolute;
  top: 16px; left: 24px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  color: var(--muted);
}
.hero-dm::after {
  content: "GRADE A · DOĞRULANDI";
  position: absolute;
  bottom: 16px; right: 24px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  color: var(--green);
}
.hero-dm .datamatrix {
  --cell: clamp(9px, 1.6vw, 14px);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.hero-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
  box-shadow: 0 4px 16px -6px rgba(0,0,0,.15);
}
.hero-chip.tr { top: 28px; right: -14px; }
.hero-chip.br { bottom: 40px; left: -16px; background: var(--ink); border-color: var(--ink); color: var(--white); }
.hero-chip .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); }

/* ---------- Trust bar ---------- */

.trust {
  margin-top: clamp(32px, 4vw, 48px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust .item { display: flex; flex-direction: column; gap: 2px; }
.trust .num {
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1.1;
}
.trust .lbl { font-size: 12px; color: var(--muted); }
@media (max-width: 700px) {
  .trust { grid-template-columns: repeat(2,1fr); gap: 16px; }
}

/* ---------- Sections ---------- */

.section { padding: clamp(48px, 6vw, 88px) 0; position: relative; }
.section.grey { background: var(--snow); }
.section.stone { background: var(--stone); }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: end;
  margin-bottom: 40px;
}
@media (max-width: 800px) {
  .section-head { grid-template-columns: 1fr; gap: 14px; margin-bottom: 28px; }
}

/* ---------- Feature cards ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 900px) { .cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .cards { grid-template-columns: 1fr; } }

.card {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.section.grey .card { background: var(--white); }
.section.stone .card { background: var(--white); }
.card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -12px rgba(0,0,0,.12);
}
.card .num {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: .18em;
}
.card h3 { margin: 12px 0 8px; }
.card-body { color: var(--muted); font-size: 14px; line-height: 1.6; margin: 0; }

.card-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 10px;
}
.card-icon svg { width: 20px; height: 20px; }

/* ---------- Categories grid ---------- */

.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (max-width: 900px) { .cat-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 520px) { .cat-grid { grid-template-columns: repeat(2,1fr); } }

.cat {
  background: var(--white);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background .15s;
  position: relative;
}
.cat:hover { background: var(--snow); }
.cat .ic { font-size: 22px; line-height: 1; margin-bottom: 4px; }
.cat .ic svg { width: 24px; height: 24px; }
.cat .nm { font-weight: 600; font-size: 14px; color: var(--ink); }
.cat .yr {
  position: absolute;
  top: 12px; right: 12px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
}

/* ---------- Process steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  counter-reset: step;
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

.step {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  position: relative;
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--muted);
  display: block;
  margin-bottom: 14px;
}
.step h4 { font-size: 16px; margin: 0 0 6px; }
.step p { color: var(--muted); font-size: 13.5px; margin: 0; line-height: 1.55; }

/* ---------- CTA banner ---------- */

.cta-banner {
  padding: clamp(40px, 5vw, 72px) 0;
  background: var(--yellow);
  color: var(--ink);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.cta-banner h2 { color: var(--ink); max-width: 22ch; }
.cta-banner .eyebrow { color: var(--ink-2); }
.cta-banner p { color: rgba(29,29,27,.78); max-width: 54ch; margin-bottom: 0; }
.cta-banner-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  align-items: center;
}
@media (max-width: 800px) {
  .cta-banner-inner { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */

.foot {
  background: var(--ink);
  color: var(--stone);
  padding: 56px 0 24px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 36px;
}
@media (max-width: 800px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .foot-grid { grid-template-columns: 1fr; } }

.foot .brand { color: var(--white); margin-bottom: 14px; }
.foot .brand small { color: var(--muted-2); }
.foot h5 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin: 0 0 12px;
  font-weight: 500;
}
.foot ul { list-style: none; padding: 0; margin: 0; }
.foot li { margin-bottom: 6px; }
.foot a, .foot span { color: var(--stone); font-size: 13.5px; }
.foot a:hover { color: var(--yellow); }
.foot-blurb { color: var(--muted-2); font-size: 13px; max-width: 38ch; line-height: 1.55; }

.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* ---------- FAQ accordion ---------- */

.faq { display: flex; flex-direction: column; gap: 0; }
.faq details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.faq details:last-of-type { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  font-size: clamp(.98rem, 1.2vw, 1.1rem);
  letter-spacing: -.01em;
  color: var(--ink);
  line-height: 1.35;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .mark {
  flex: 0 0 auto;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--snow);
  border: 1px solid var(--line);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform .25s, background .25s;
}
.faq details[open] summary .mark { transform: rotate(45deg); background: var(--yellow); border-color: var(--yellow); }
.faq .a {
  margin-top: 12px;
  color: var(--muted);
  max-width: 72ch;
  font-size: 14.5px;
  line-height: 1.65;
}

/* ---------- Timeline ---------- */

.timeline {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (max-width: 800px) { .timeline { grid-template-columns: 1fr 1fr; } }

.tl {
  background: var(--white);
  padding: 22px 18px;
  border-top: 3px solid var(--yellow);
}
.tl .yr {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.02em;
}
.tl .ttl { margin-top: 4px; font-weight: 600; font-size: 14px; }
.tl .d { margin-top: 6px; font-size: 12.5px; color: var(--muted); line-height: 1.55; }

/* ---------- Two-col info block ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
}
@media (max-width: 800px) { .split { grid-template-columns: 1fr; } }

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  padding: 12px 0 12px 32px;
  border-bottom: 1px solid var(--line);
  position: relative;
  color: var(--ink);
  font-size: 14.5px;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 20px; height: 20px;
  background: var(--yellow);
  border-radius: 5px;
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 6px; top: calc(50% - 4px);
  width: 5px; height: 9px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(45deg);
}

/* ---------- Notice banner ---------- */

.notice {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--yellow-bg);
  border: 1px solid rgba(0,0,0,.08);
  border-left: 3px solid var(--yellow);
  border-radius: var(--r-md);
  color: var(--ink);
  margin: 24px 0;
}
.notice .tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--yellow);
  padding: 3px 7px;
  border-radius: 4px;
  flex: 0 0 auto;
  margin-top: 1px;
  font-weight: 600;
}
.notice p { margin: 0; font-size: 14px; max-width: 80ch; line-height: 1.6; }

/* ---------- Page header ---------- */

.page-hero {
  padding: clamp(48px, 6vw, 84px) 0 clamp(28px, 3vw, 44px);
  background: var(--snow);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { max-width: 20ch; font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
.page-hero .lede { margin-top: 16px; }

.breadcrumb {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--ink); }
.breadcrumb a:hover { color: var(--ink-2); text-decoration: underline; }
.breadcrumb .sep { margin: 0 8px; color: var(--muted-2); }

/* ---------- Contact form ---------- */

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form .full { grid-column: 1 / -1; }
@media (max-width: 600px) { .form { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 5px; }
.field label {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-2);
}
.field input, .field textarea, .field select {
  background: var(--white);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  padding: 11px 13px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px var(--yellow-bg);
}
.field textarea { min-height: 120px; resize: vertical; }

/* ---------- Contact info cards ---------- */

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (max-width: 600px) { .info-grid { grid-template-columns: 1fr; } }

.info {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.section.grey .info { background: var(--white); }
.info .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 500;
}
.info .v { font-size: clamp(.98rem, 1.2vw, 1.08rem); font-weight: 600; line-height: 1.4; color: var(--ink); }
.info a:hover { color: var(--ink-2); text-decoration: underline; }

/* ---------- Certs badges ---------- */

.certs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
}
.cert {
  padding: 7px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--ink);
  font-weight: 500;
}

/* ---------- Scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Utilities ---------- */

.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 12px; }
.mt-4 { margin-top: 24px; }
.mt-6 { margin-top: 36px; }
.muted { color: var(--muted); }
.yel { color: var(--ink); background: var(--yellow); padding: 0 .15em; border-radius: 3px; }

/* Press tech badge row */
.press-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}
@media (max-width: 600px) { .press-row { grid-template-columns: 1fr; } }
.press {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.press-tag {
  flex: 0 0 auto;
  width: 52px; height: 52px;
  background: var(--ink);
  color: var(--yellow);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .04em;
  text-align: center;
  line-height: 1.1;
}
.press h4 { margin: 0 0 4px; font-size: 15px; }
.press p { margin: 0; color: var(--muted); font-size: 13.5px; line-height: 1.55; }
