:root {
  --kagit: #f6f3ed;
  --murekkep: #1c1b19;
  --murekkep-soluk: #5b5852;
  --vurgu: #1b3a5f;
  --vurgu-deep: #142c48;
  --damga: #c8443e;
  --kar: #ffffff;
  --ink: var(--murekkep);
  --ink-soft: #2e2c28;
  --paper: var(--kagit);
  --surface: var(--kar);
  --line: rgba(28, 27, 25, 0.12);
  --muted: var(--murekkep-soluk);
  --accent: var(--vurgu);
  --accent-deep: var(--vurgu-deep);
  --accent-soft: rgba(47, 94, 255, 0.1);
  --shadow: 0 28px 70px rgba(28, 27, 25, 0.14);
  --radius: 4px;
  --font-display: "Fraunces", "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  min-height: 100%;
  font-size: 16px;
  letter-spacing: -0.011em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(ellipse 120% 80% at 100% -20%, rgba(47, 94, 255, 0.06), transparent 50%),
    linear-gradient(180deg, #f8f5ef 0%, var(--kagit) 40%, #f3efe7 100%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
}

.container {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px) saturate(1.1);
  background: rgba(246, 243, 237, 0.88);
  border-bottom: 1px solid var(--line);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.04em;
}

.brand img {
  width: 32px;
  height: 32px;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 10px 12px;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 8px 12px;
  border-radius: var(--radius);
  color: var(--murekkep-soluk);
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.site-nav a:hover,
.site-nav a.is-active {
  background: rgba(28, 27, 25, 0.05);
  color: var(--murekkep);
}

.site-nav .btn {
  margin-left: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  padding: 12px 20px;
  font-weight: 600;
  border: 1px solid transparent;
  letter-spacing: -0.015em;
  font-size: 0.95rem;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.btn:hover {
  /* subtle — no bounce */
}

.btn-primary {
  background: var(--vurgu);
  color: #fff;
}

.btn-primary:hover {
  background: var(--vurgu-deep);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(246, 243, 237, 0.35);
  color: #f6f3ed;
}

.btn-ghost:hover {
  background: rgba(246, 243, 237, 0.08);
  border-color: rgba(246, 243, 237, 0.55);
}

.btn-outline {
  background: transparent;
  border-color: rgba(28, 27, 25, 0.2);
  color: var(--ink);
}

.btn-outline:hover {
  border-color: var(--vurgu);
  color: var(--vurgu);
}

/* —— Hero: full-bleed matbaa plane —— */
.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 68px);
  display: grid;
  align-items: stretch;
  color: #f6f3ed;
  background: var(--murekkep);
}

.hero-visual {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(28, 27, 25, 0.97) 0%, rgba(28, 27, 25, 0.82) 42%, rgba(28, 27, 25, 0.35) 68%, transparent 88%),
    linear-gradient(180deg, transparent 60%, rgba(28, 27, 25, 0.55) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-sheet {
  position: absolute;
  top: 8%;
  right: max(-4%, calc(50% - 520px));
  width: min(46vw, 520px);
  aspect-ratio: 210 / 297;
  background: #fffefb;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(252, 249, 243, 0.98)),
    repeating-linear-gradient(0deg, rgba(28, 27, 25, 0.02) 0 1px, transparent 1px 3px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(246, 243, 237, 0.12);
  padding: 7% 8%;
  z-index: 0;
  animation: sheetIn 1.4s var(--ease) 0.15s both;
  transform-origin: 70% 40%;
}

.hero-sheet::before,
.hero-sheet::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  opacity: 0.28;
  border-color: #5b5852;
  border-style: solid;
  pointer-events: none;
}

.hero-sheet::before {
  top: 10px;
  left: 10px;
  border-width: 1px 0 0 1px;
}

.hero-sheet::after {
  bottom: 10px;
  right: 10px;
  border-width: 0 1px 1px 0;
}

.hero-sheet .hs-name {
  font-family: "Source Sans 3", sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  color: #1b3a5f;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 2px;
  font-weight: 700;
}

.hero-sheet .hs-role {
  font-size: 11px;
  font-weight: 600;
  color: #444;
  margin-bottom: 3px;
  letter-spacing: -0.01em;
  text-transform: none;
  font-family: "Source Sans 3", sans-serif;
}

.hero-sheet .hs-contact {
  font-size: 8px;
  color: #666;
  margin-bottom: 8px;
}

.hero-sheet .hs-org {
  font-size: 8px;
  font-style: italic;
  color: #555;
  margin-bottom: 2px;
}

.hero-sheet .hs-label {
  font-family: "Source Sans 3", sans-serif;
  font-size: 7.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1b3a5f;
  margin: 9px 0 3px;
  font-weight: 700;
  padding-bottom: 2px;
  border-bottom: 1px solid #d4d4d4;
}

.hero-sheet .hs-bar {
  width: 100%;
  height: 1px;
  background: #d4d4d4;
  margin: 2px 0 2px;
}

.hero-sheet .hs-chips span {
  font-size: 7px;
  border: 1px solid #c9c9c9;
  background: #f5f5f5;
  padding: 2px 5px;
  border-radius: 2.5px;
  color: #1a1a1a;
}

.hero-sheet .hs-text,
.hero-sheet .hs-bullet {
  font-size: 8.5px;
  line-height: 1.4;
  color: #333;
  margin-bottom: 3px;
}

.hero-sheet .hs-bullet {
  padding-left: 8px;
  position: relative;
}

.hero-sheet .hs-bullet::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1a1a1a;
}

.hero-sheet .hs-job {
  font-size: 9px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 5px 0 1px;
}

.hero-sheet .hs-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 4px;
}

@keyframes sheetIn {
  from {
    opacity: 0;
    transform: translate3d(24px, 12px, 0) rotate(1.4deg);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0.5deg);
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 64px 0 72px;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 68px);
  animation: rise 1s var(--ease) both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(246, 243, 237, 0.5);
  margin-bottom: 18px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5.5vw, 3.65rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  max-width: 14ch;
  margin-bottom: 18px;
  font-weight: 800;
  color: #f6f3ed;
  font-optical-sizing: auto;
}

.hero-lead,
.hero p.hero-lead {
  font-size: 1.08rem;
  line-height: 1.55;
  color: rgba(246, 243, 237, 0.72);
  max-width: 36ch;
  margin-bottom: 28px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(246, 243, 237, 0.12);
}

.trust-row li {
  font-size: 13px;
  font-weight: 500;
  color: rgba(246, 243, 237, 0.55);
  position: relative;
  padding-left: 14px;
}

.trust-row li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--vurgu);
  border-radius: 1px;
}

.hero-meta {
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246, 243, 237, 0.45);
}

.section {
  padding: 88px 0;
}

.section-tight {
  padding: 72px 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 40px;
}

.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
}

.section-head-row .btn {
  flex-shrink: 0;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vurgu);
  margin-bottom: 12px;
}

.section-head h2,
.feature-copy h2,
.page-hero h1,
.why-grid h2 {
  font-family: var(--font-display);
  letter-spacing: -0.045em;
  line-height: 1.05;
  font-weight: 700;
}

.section-head h2,
.why-grid h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  margin-bottom: 12px;
  font-weight: 800;
  font-optical-sizing: auto;
}

.section-head p,
.why-grid > div > p {
  color: var(--muted);
  font-size: 1.05rem;
}

/* Home template gallery */
.templates-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.home-template-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.home-tpl {
  display: grid;
  gap: 12px;
}

.home-tpl:hover .home-tpl-sheet {
  box-shadow: 0 18px 40px rgba(28, 27, 25, 0.14);
  transform: translateY(-3px);
}

.home-tpl-sheet {
  aspect-ratio: 210 / 297;
  background: #fffefb;
  border: 1px solid rgba(28, 27, 25, 0.1);
  box-shadow: 0 12px 32px rgba(28, 27, 25, 0.08);
  padding: 14px 12px;
  display: grid;
  align-content: start;
  gap: 4px;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.home-tpl-sheet strong {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.home-tpl-sheet em {
  font-style: normal;
  font-size: 8px;
  color: var(--vurgu);
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-tpl-sheet b {
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--murekkep-soluk);
  margin-top: 6px;
  font-weight: 500;
}

.home-tpl-sheet .ht-line {
  display: block;
  height: 4px;
  background: rgba(28, 27, 25, 0.08);
  width: 100%;
  border-radius: 1px;
}

.home-tpl-sheet .ht-line.short { width: 55%; }
.home-tpl-sheet .ht-line.mid { width: 78%; }

.home-tpl-sheet.skin-accent {
  border-left: 4px solid #0f5c5c;
}

.home-tpl-sheet.skin-executive {
  background: linear-gradient(180deg, #1b3a5f 0 28%, #fffefb 28%);
}

.home-tpl-sheet.skin-executive strong,
.home-tpl-sheet.skin-executive em {
  color: #f6f3ed;
}

.home-tpl-sheet.skin-executive em {
  color: rgba(246, 243, 237, 0.7);
}

.home-tpl-sheet.skin-editorial strong {
  font-family: Fraunces, Georgia, serif;
  font-size: 15px;
}

.home-tpl-sheet.skin-sidebar {
  background: linear-gradient(90deg, #1b3a5f 0 32%, #fffefb 32%);
  padding-left: 38%;
}

.home-tpl-sheet.skin-classic {
  background: #faf8f5;
  border-color: #ddd5c8;
}

.home-tpl-sheet.skin-classic strong {
  font-family: Merriweather, Georgia, serif;
  color: #5c1a2e;
}

.home-tpl-sheet.skin-minimal strong {
  color: #1a1a1a;
}

.home-tpl-sheet em {
  color: #1b3a5f;
}

.home-tpl-name {
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  color: var(--murekkep-soluk);
}

.home-tpl:hover .home-tpl-name {
  color: var(--murekkep);
}

.why-band {
  background: rgba(28, 27, 25, 0.03);
  border-block: 1px solid var(--line);
}

.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.why-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}

.why-list li {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 6px;
}

.why-list strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.why-list span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}

.step {
  padding: 28px 28px 8px 0;
  border-right: 1px solid var(--line);
  position: relative;
}

.step:last-child {
  border-right: 0;
  padding-right: 0;
}

.step-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--vurgu);
  margin-bottom: 14px;
  letter-spacing: 0.12em;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.step p {
  color: var(--muted);
  max-width: 28ch;
  line-height: 1.55;
}

/* —— Lower homepage: open layout, no hairline grid —— */
.section-head-center {
  text-align: center;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
}

.lower-flow {
  padding: 88px 0 72px;
  background: #fff;
}

.steps-open {
  border: 0;
  gap: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps-open .step {
  border: 0;
  padding: 28px 26px 30px;
  background: var(--kagit);
  border-radius: 4px;
}

.steps-open .step-num {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--vurgu);
  opacity: 0.9;
  margin-bottom: 18px;
}

.steps-open .step h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.steps-open .step p {
  max-width: none;
  font-size: 1rem;
  line-height: 1.6;
}

.lower-why {
  padding: 88px 0;
  background:
    linear-gradient(180deg, rgba(27, 58, 95, 0.04), transparent 40%),
    var(--kagit);
  border: 0;
}

.why-open {
  gap: 56px;
  align-items: center;
}

.why-intro h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  margin-bottom: 14px;
}

.why-intro p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 34ch;
  margin-bottom: 24px;
}

.why-list-open {
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}

.why-list-open li {
  border: 0;
  padding: 22px 22px 24px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 0 rgba(28, 27, 25, 0.06);
  gap: 8px;
}

.why-list-open strong {
  display: block;
  font-size: 1.15rem;
  color: var(--murekkep);
}

.why-list-open strong::before {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  background: var(--vurgu);
  margin-bottom: 14px;
  border-radius: 1px;
}

.why-list-open span {
  font-size: 0.98rem;
  line-height: 1.55;
}

.lower-guides {
  padding: 80px 0 64px;
  background: #fff;
}

.text-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--vurgu);
  white-space: nowrap;
  align-self: flex-end;
  margin-bottom: 4px;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-grid-open {
  gap: 20px;
}

.post-grid-open .post-link {
  border: 0;
  padding: 26px 24px 28px;
  background: var(--kagit);
  border-radius: 4px;
  gap: 10px;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.post-grid-open .post-link:hover {
  background: #ebe6dc;
  color: inherit;
  border-color: transparent;
  transform: translateY(-2px);
}

.post-grid-open .post-link h3 {
  font-size: 1.25rem;
  line-height: 1.25;
}

.post-grid-open .post-link p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.post-grid-open .post-meta {
  color: var(--vurgu);
}

.lower-cta {
  padding: 0 0 72px;
  background: #fff;
}

.cta-band-open {
  margin: 0;
  padding: 48px 44px;
  border-radius: 4px;
  background: #1b3a5f;
}

.cta-band-open::before {
  background: #c8443e;
  width: 5px;
}

.cta-band-open h2 {
  max-width: 14ch;
  color: #fff;
}

.cta-band-open p {
  color: rgba(255, 255, 255, 0.75);
}

.cta-band-open .btn-primary {
  background: #fff;
  color: #1b3a5f;
}

.cta-band-open .btn-primary:hover {
  background: #f0ebe3;
}

.feature-band {
  background:
    linear-gradient(180deg, rgba(28, 27, 25, 0.03), transparent),
    var(--kagit);
  border-block: 1px solid var(--line);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.feature-copy h2 {
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  margin-bottom: 14px;
}

.feature-copy p {
  color: var(--muted);
  margin-bottom: 18px;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
}

.feature-list li {
  padding-left: 18px;
  position: relative;
  color: var(--ink-soft);
  font-weight: 500;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  background: var(--vurgu);
}

.feature-panel {
  min-height: 360px;
  border-radius: var(--radius);
  background: var(--murekkep);
  color: #f6f3ed;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(246, 243, 237, 0.08);
}

.feature-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--vurgu);
}

.feature-panel::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(246, 243, 237, 0.08);
  pointer-events: none;
  opacity: 0.5;
}

.feature-panel h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  letter-spacing: -0.03em;
}

.feature-panel p {
  color: rgba(246, 243, 237, 0.72);
  position: relative;
  z-index: 1;
  max-width: 28ch;
}

.feature-panel .fp-mono {
  position: relative;
  z-index: 1;
  margin-top: 40px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--damga);
}

.principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 40px;
}

.principle {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.principle h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.principle p {
  color: var(--muted);
  font-size: 0.98rem;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.post-link {
  display: grid;
  gap: 12px;
  padding-top: 18px;
  border-top: 2px solid var(--murekkep);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.post-link:hover {
  border-color: var(--vurgu);
  color: var(--vurgu);
}

.post-meta {
  font-family: var(--font-mono);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.post-link h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.cta-band {
  margin: 0 0 40px;
  border-radius: var(--radius);
  padding: 44px 40px;
  background: var(--murekkep);
  color: #f6f3ed;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--vurgu);
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  letter-spacing: -0.04em;
  max-width: 18ch;
  margin-bottom: 8px;
}

.cta-band p {
  color: rgba(246, 243, 237, 0.68);
  max-width: 42ch;
}

/* Scroll reveal — intentional, quiet */
.reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
  transition-delay: var(--d, 0ms);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.ad-slot {
  display: none;
}

.ad-slot.is-live {
  display: block;
  margin: 28px auto;
  width: min(100% - 40px, var(--max));
  min-height: 90px;
  background: rgba(28, 27, 25, 0.03);
  border: 1px dashed rgba(28, 27, 25, 0.12);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 56px;
  color: #f6f3ed;
  background: var(--murekkep);
  background-image:
    radial-gradient(ellipse 70% 60% at 90% 0%, rgba(47, 94, 255, 0.16), transparent 55%),
    linear-gradient(180deg, #1c1b19 0%, #161512 100%);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(246, 243, 237, 0.06);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  margin-bottom: 14px;
  color: #fff;
  font-weight: 800;
  font-optical-sizing: auto;
}

.page-hero p {
  color: rgba(246, 243, 237, 0.68);
  max-width: 58ch;
  font-size: 1.08rem;
}

.content-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 40px;
  padding: 40px 0 96px;
}

.prose {
  max-width: 720px;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: -0.035em;
  margin: 34px 0 12px;
}

.prose h3 {
  font-family: var(--font-display);
  font-size: 1.22rem;
  letter-spacing: -0.025em;
  margin: 24px 0 10px;
}

.prose p,
.prose li {
  color: var(--ink-soft);
  margin-bottom: 14px;
}

.prose ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.prose a {
  color: var(--vurgu);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose .lead {
  font-size: 1.12rem;
  color: var(--ink);
  font-weight: 500;
}

.side-box {
  position: sticky;
  top: 96px;
  align-self: start;
  border-top: 2px solid var(--ink);
  padding-top: 16px;
}

.side-box h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}

.side-box p {
  color: var(--muted);
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.faq-list {
  display: grid;
  gap: 0;
  max-width: 840px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 22px 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.faq-item button span {
  color: var(--vurgu);
  font-family: var(--font-mono);
  font-size: 1rem;
}

.faq-panel {
  display: none;
  padding: 0 0 20px;
  color: var(--muted);
}

.faq-item.is-open .faq-panel {
  display: block;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding-bottom: 96px;
}

.contact-form,
.contact-info {
  border-top: 2px solid var(--ink);
  padding-top: 18px;
}

.field {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.field label {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--murekkep-soluk);
}

.field input,
.field textarea {
  border: 0;
  border-bottom: 1px solid rgba(28, 27, 25, 0.2);
  background: transparent;
  border-radius: 0;
  padding: 12px 0;
  color: var(--ink);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--vurgu);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.blog-list {
  display: grid;
  gap: 8px;
  padding-bottom: 96px;
}

.blog-item {
  display: grid;
  gap: 8px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.blog-item h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: -0.035em;
}

.blog-item p {
  color: var(--muted);
}

.site-footer {
  background: var(--murekkep);
  color: rgba(246, 243, 237, 0.78);
  padding: 56px 0 28px;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: 10px;
}

.site-footer h3 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(246, 243, 237, 0.5);
  margin-bottom: 14px;
  font-weight: 500;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
  color: rgba(246, 243, 237, 0.7);
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(246, 243, 237, 0.12);
  padding-top: 16px;
  font-size: 0.88rem;
  color: rgba(246, 243, 237, 0.45);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

@media (max-width: 1100px) {
  .home-template-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .steps,
  .steps-open,
  .post-grid,
  .post-grid-open,
  .feature-grid,
  .content-wrap,
  .contact-grid,
  .footer-grid,
  .principles,
  .why-grid,
  .why-list,
  .why-list-open,
  .home-template-grid {
    grid-template-columns: 1fr;
  }

  .home-template-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-head-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .text-link {
    align-self: flex-start;
  }

  .step,
  .steps-open .step {
    border-right: 0;
    border-bottom: 0;
    padding: 24px 22px;
  }

  .cta-band-open {
    padding: 32px 28px;
  }

  .hero-sheet {
    opacity: 0.18;
    right: -18%;
    width: 70vw;
    filter: blur(0.5px);
  }

  .hero h1 {
    max-width: 16ch;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px 20px 18px;
    background: rgba(246, 243, 237, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav .btn {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .hero-inner {
    padding: 56px 0 64px;
    min-height: calc(100vh - 68px);
  }

  .section,
  .section-tight {
    padding: 56px 0;
  }

  .home-template-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .cta-band {
    padding: 28px;
  }

  .cta-band h2 {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-inner,
  .hero-sheet,
  .btn:hover,
  .reveal {
    animation: none;
    transition: none;
    transform: none;
    opacity: 1;
  }
}

/* Cookie notice */
.cookie-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 16px 18px;
  background: #1b3a5f;
  color: #f6f3ed;
  border-radius: 4px;
  box-shadow: 0 16px 40px rgba(28, 27, 25, 0.25);
}
.cookie-bar p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  max-width: 52ch;
  color: rgba(246, 243, 237, 0.88);
}
.cookie-bar a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-bar-btn {
  flex-shrink: 0;
  background: #fff !important;
  color: #1b3a5f !important;
}