/* ===== Cumanicus — design system ===== */
:root {
  --bg: #0a1628;
  --bg-2: #0F2038;
  --ink: #0f172a;
  --paper: #f6f3ec;
  --paper-2: #efe9dc;
  --text: #e8ecf5;
  --text-dim: #aab3c8;
  --text-dark: #1b2540;
  --muted-dark: #5b6580;
  --gold: #e8c47c;
  --gold-2: #f3d9a0;
  --line: rgba(255,255,255,.08);
  --line-dark: rgba(15,23,42,.1);
  --radius: 16px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--font-body); color: var(--text); background: var(--bg);
  line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 48px)); margin: 0 auto; }
.container.narrow { width: min(820px, calc(100% - 48px)); }
::selection { background: var(--gold); color: var(--ink); }

/* ===== Cursor glow & progress ===== */
.cursor-glow {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(600px circle at var(--mx, -500px) var(--my, -500px), rgba(232,196,124,.10), transparent 60%);
  transition: opacity .4s;
}
.progress { position: fixed; top: 0; left: 0; height: 2px; width: 100%; transform-origin: 0 0; transform: scaleX(var(--p, 0)); background: linear-gradient(90deg, var(--gold), #fff); z-index: 100; }

/* ===== Nav ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; gap: 32px;
  padding: 18px clamp(20px, 4vw, 48px);
  transition: background .35s, backdrop-filter .35s, padding .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled { background: rgba(11,16,32,.72); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); padding-top: 12px; padding-bottom: 12px; border-color: var(--line); }
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 30px; width: auto; display: block; transition: opacity .25s; }
.brand:hover .brand-logo { opacity: .8; }
.brand-logo--footer { height: 34px; }
.footer-desc { margin: 14px 0 0; font-size: 12px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); }
.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a { position: relative; color: var(--text-dim); font-size: 15px; font-weight: 500; transition: color .25s; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease); }
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-toggle { display: none; background: none; border: 0; width: 40px; height: 40px; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; height: 2px; background: #fff; margin: 6px 0; transition: transform .3s, opacity .3s; }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-8px) rotate(-45deg); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 24px; border-radius: 999px;
  font-weight: 600; font-size: 15px; border: 1px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s, box-shadow .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--ink); box-shadow: 0 10px 30px -10px rgba(232,196,124,.6); }
.btn-primary:hover { background: var(--gold-2); box-shadow: 0 16px 40px -10px rgba(232,196,124,.75); }
.btn-primary .arrow { transition: transform .25s var(--ease); }
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-ghost { border-color: rgba(255,255,255,.22); color: #fff; }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.btn-small { padding: 10px 18px; font-size: 14px; border-color: rgba(255,255,255,.22); }
.btn-small:hover { border-color: var(--gold); color: var(--gold); }
.btn-lg { padding: 18px 32px; font-size: 17px; }

/* ===== Typography ===== */
.eyebrow { font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin: 0 0 16px; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; margin: 0; letter-spacing: -.01em; }
h2 { font-size: clamp(32px, 4.2vw, 52px); margin-bottom: 18px; }
h3 { font-size: 22px; margin-bottom: 10px; }
.lead { font-size: 18px; color: var(--text-dim); max-width: 620px; margin: 0; }
.section-head { max-width: 720px; margin-bottom: 56px; }

/* ===== Hero ===== */
.hero { position: relative; min-height: 100svh; display: grid; place-items: center; padding: 140px 0 100px; overflow: hidden; isolation: isolate; }
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -1; opacity: .9; }
.hero-mark { position: absolute; right: -2vw; top: 50%; width: clamp(280px, 30vw, 520px); height: auto; opacity: .07; z-index: -1; pointer-events: none; animation: markFloat 10s ease-in-out infinite; }
@keyframes markFloat { 0%,100% { transform: translateY(-50%) rotate(-6deg); } 50% { transform: translateY(-55%) rotate(-3deg); } }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background:
  radial-gradient(800px 500px at 15% 20%, rgba(232,196,124,.14), transparent 60%),
  radial-gradient(700px 500px at 85% 80%, rgba(90,120,255,.16), transparent 60%),
  linear-gradient(180deg, rgba(11,16,32,0) 60%, var(--bg) 100%); }
.hero-inner { width: min(1120px, calc(100% - 48px)); margin: 0 auto; }
.hero-title { font-size: clamp(42px, 7.2vw, 96px); font-weight: 600; max-width: 14ch; margin: 0 0 28px; }
.hero-title .line { display: block; overflow: hidden; padding: 0 .2em .26em; margin: 0 0 -.2em -.2em; }
.hero-title .word { display: inline-block; transform: translateY(110%); opacity: 0; animation: rise 1s var(--ease) forwards; }
.hero-title .line:nth-child(1) .word:nth-child(1) { animation-delay: .10s; }
.hero-title .line:nth-child(1) .word:nth-child(2) { animation-delay: .18s; }
.hero-title .line:nth-child(2) .word:nth-child(1) { animation-delay: .26s; }
.hero-title .line:nth-child(2) .word:nth-child(2) { animation-delay: .34s; }
.hero-title .line:nth-child(3) .word:nth-child(1) { animation-delay: .42s; }
.hero-title .line:nth-child(3) .word:nth-child(2) { animation-delay: .50s; }
.hero-title .accent { font-style: italic; font-weight: 400; color: var(--gold); padding: 0 .14em; margin: 0 -.14em; background: linear-gradient(90deg, var(--gold), #fff3d6, var(--gold)); background-size: 200% 100%; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: rise 1s var(--ease) forwards, shimmer 6s linear 1.2s infinite; }
@keyframes rise { to { transform: translateY(0); opacity: 1; } }
@keyframes shimmer { to { background-position: 200% 0; } }
.hero-sub { font-size: clamp(17px, 1.6vw, 21px); color: var(--text-dim); max-width: 560px; margin: 0 0 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }
.hero-badges { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; font-size: 14px; color: var(--text-dim); }
.hero-badges i { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.scroll-hint { position: absolute; bottom: 28px; left: 50%; width: 22px; height: 36px; border: 1.5px solid rgba(255,255,255,.35); border-radius: 12px; transform: translateX(-50%); }
.scroll-hint span { position: absolute; top: 6px; left: 50%; width: 3px; height: 7px; border-radius: 2px; background: var(--gold); transform: translateX(-50%); animation: drop 1.8s ease-in-out infinite; }
@keyframes drop { 0% { transform: translate(-50%, 0); opacity: 1; } 70% { transform: translate(-50%, 14px); opacity: 0; } 100% { opacity: 0; } }

/* Staggered reveal for hero text */
.reveal-up { opacity: 0; transform: translateY(18px); animation: fadeUp .9s var(--ease) forwards; animation-delay: calc(var(--d, 0) * 1ms); }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

/* ===== Marquee ===== */
.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 16px 0; background: rgba(255,255,255,.02); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee-track { display: flex; gap: 48px; width: max-content; animation: scroll 38s linear infinite; }
.marquee-track span { white-space: nowrap; font-family: var(--font-display); font-size: 18px; color: var(--text-dim); display: inline-flex; align-items: center; gap: 48px; }
.marquee-track span::after { content: "✦"; color: var(--gold); font-size: 12px; }
@keyframes scroll { to { transform: translateX(-50%); } }
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ===== Stats ===== */
.stats { padding: 72px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01)); }
.stat-num { font-family: var(--font-display); font-size: 44px; font-weight: 600; color: #fff; line-height: 1; margin-bottom: 10px; }
.stat-num span { color: var(--gold); }
.stat p { margin: 0; color: var(--text-dim); font-size: 15px; }

/* ===== Sections ===== */
.section { padding: 110px 0; position: relative; }
.section-dark { background: var(--bg-2); }
.section:not(.section-dark):not(.hero):not(.story):not(.cta) { background: var(--bg); }

/* ===== Cards ===== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  position: relative; padding: 34px 30px; border-radius: 20px; border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  transform-style: preserve-3d; transition: border-color .3s, box-shadow .3s;
  overflow: hidden;
}
.card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(400px circle at var(--cx, 50%) var(--cy, 50%), rgba(232,196,124,.16), transparent 45%); opacity: 0; transition: opacity .35s; pointer-events: none; }
.card:hover { border-color: rgba(232,196,124,.45); box-shadow: 0 30px 60px -30px rgba(0,0,0,.7); }
.card:hover::before { opacity: 1; }
.card-icon { width: 56px; height: 56px; color: #fff; margin-bottom: 22px; padding: 10px; border-radius: 14px; background: rgba(255,255,255,.06); border: 1px solid var(--line); transform: translateZ(30px); }
.card h3 { transform: translateZ(20px); }
.card p { color: var(--text-dim); margin: 0 0 18px; transform: translateZ(10px); }
.check { list-style: none; padding: 0; margin: 0; }
.check li { position: relative; padding-left: 22px; color: var(--text); font-size: 14.5px; margin: 8px 0; }
.check li::before { content: ""; position: absolute; left: 0; top: 9px; width: 10px; height: 5px; border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(-45deg); }

/* ===== Timeline ===== */
.timeline { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; position: relative; }
.timeline::before { content: ""; position: absolute; top: 22px; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: .5; }
.timeline li { position: relative; padding-top: 64px; }
.tl-num { position: absolute; top: 0; left: 0; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: var(--bg); border: 1px solid var(--gold); color: var(--gold); font-family: var(--font-display); font-weight: 600; box-shadow: 0 0 0 8px var(--bg-2); }
.timeline p { color: var(--text-dim); margin: 0; font-size: 15.5px; }

/* ===== Story (light section) ===== */
.story { background: var(--paper); color: var(--text-dark); }
.story .eyebrow { color: #a5772e; }
.story .lead, .story p { color: var(--muted-dark); }
.story h2 { color: var(--text-dark); }
.story strong { color: var(--text-dark); }
.story-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
.link-arrow { display: inline-flex; gap: 8px; align-items: center; font-weight: 600; color: var(--text-dark); margin-top: 8px; border-bottom: 1px solid currentColor; padding-bottom: 2px; }
.link-arrow span { transition: transform .25s var(--ease); }
.link-arrow:hover span { transform: translateX(4px); }
.codex { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 26px; padding: 30px; perspective: 1000px; }
.codex-page { background: #fbf8f1; border: 1px solid #e3dccb; border-radius: 8px; padding: 26px 22px; box-shadow: 0 30px 50px -30px rgba(27,37,64,.35); transform: rotateY(8deg); animation: float 7s ease-in-out infinite; }
.codex-page--ai { background: var(--ink); border-color: #263252; transform: rotateY(-8deg); animation-delay: -3.5s; }
.codex-page--ai .codex-line { background: linear-gradient(90deg, #3b4a75, #5a6fb0); }
.codex-page--ai .codex-rule { background: var(--gold); }
@keyframes float { 0%,100% { translate: 0 0; } 50% { translate: 0 -10px; } }
.codex-line { display: block; height: 8px; border-radius: 4px; background: linear-gradient(90deg, #cfc4a8, #e5dcc4); margin: 12px 0; transform-origin: left; animation: ink 2.4s var(--ease) both; }
.codex-rule { display: block; height: 2px; background: #a5772e; margin: 18px 0; opacity: .6; }
.w40{width:40%}.w45{width:45%}.w50{width:50%}.w55{width:55%}.w60{width:60%}.w70{width:70%}.w75{width:75%}.w80{width:80%}.w85{width:85%}.w90{width:90%}
.codex-bridge { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 78px; height: 78px; display: grid; place-items: center; background: #fff; border-radius: 50%; animation: pulseRing 2.6s ease-in-out infinite; }
.codex-bridge img { width: 34px; height: auto; }
@keyframes pulseRing { 0%,100% { box-shadow: 0 12px 30px -12px rgba(15,32,56,.5), 0 0 0 8px rgba(232,196,124,.28); } 50% { box-shadow: 0 12px 30px -12px rgba(15,32,56,.5), 0 0 0 18px rgba(232,196,124,.06); } }
.story-art.in .codex-line { animation-name: ink; }
@keyframes ink { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* ===== Use cases ===== */
.usecases { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.usecase { padding: 30px; border-radius: 18px; border: 1px solid var(--line); background: rgba(255,255,255,.025); transition: transform .3s var(--ease), border-color .3s, background .3s; }
.usecase:hover { transform: translateY(-4px); border-color: rgba(232,196,124,.4); background: rgba(232,196,124,.05); }
.uc-tag { display: inline-block; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(232,196,124,.4); padding: 4px 10px; border-radius: 999px; margin-bottom: 16px; }
.usecase p { color: var(--text-dim); margin: 0; }

/* ===== FAQ ===== */
.faq details { border-bottom: 1px solid var(--line); padding: 6px 0; }
.faq summary { list-style: none; cursor: pointer; padding: 18px 44px 18px 0; font-family: var(--font-display); font-size: 21px; position: relative; transition: color .25s; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 26px; color: var(--gold); transition: transform .35s var(--ease); }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq summary:hover { color: var(--gold); }
.faq p { margin: 0 0 20px; color: var(--text-dim); max-width: 700px; animation: fadeUp .5s var(--ease); }

/* ===== CTA ===== */
.cta { background: radial-gradient(900px 500px at 50% 0%, rgba(232,196,124,.18), transparent 65%), var(--bg); text-align: center; }
.cta-inner { max-width: 760px; margin: 0 auto; }
.cta .lead { margin: 0 auto 36px; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

/* ===== Footer ===== */
.footer { border-top: 1px solid var(--line); padding: 48px 0; background: #081220; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 32px; align-items: start; }
.footer-tag { color: var(--text-dim); font-size: 14px; margin: 12px 0 0; max-width: 300px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; color: var(--text-dim); }
.footer-links a:hover { color: var(--gold); }
.footer-meta { display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: var(--text-dim); text-align: right; }
.footer-meta a { color: var(--gold); }

/* ===== Scroll reveal ===== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: calc(var(--d, 0) * 1ms); }
.reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-meta { text-align: left; }
}
@media (max-width: 720px) {
  .nav { gap: 16px; }
  .nav-links { position: fixed; inset: 64px 0 auto 0; flex-direction: column; gap: 0; background: rgba(11,16,32,.96); backdrop-filter: blur(14px); padding: 12px 24px 24px; border-bottom: 1px solid var(--line); transform: translateY(-120%); transition: transform .35s var(--ease); }
  .nav-links.open { transform: none; }
  .nav-links a { padding: 14px 0; font-size: 18px; border-bottom: 1px solid var(--line); }
  .nav .btn-small { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
  .section { padding: 80px 0; }
  .stats-grid, .timeline, .usecases { grid-template-columns: 1fr; }
  .hero { padding-top: 120px; }
  .cursor-glow { display: none; }
  .hero-mark { width: 60vw; right: -20vw; opacity: .05; }
  .brand-logo { height: 26px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-title .word, .reveal-up { opacity: 1; transform: none; }
  .reveal { opacity: 1; transform: none; }
  .hero-canvas { display: none; }
}

/* ===== İç sayfalar (blog, iletişim) ===== */
.page { padding-top: 96px; }
.page-head { padding: 72px 0 24px; }
.page-head h1 { font-size: clamp(36px, 5vw, 60px); margin-bottom: 16px; max-width: 16ch; }
.page-head--center { text-align: center; padding: 96px 0 40px; }
.page-head--center h1, .page-head--center .lead { margin-left: auto; margin-right: auto; max-width: none; }
.section-tight { padding: 48px 0 110px; }
.center { text-align: center; margin-top: 40px; }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post-grid--compact { grid-template-columns: repeat(3, 1fr); }
.post-card { display: flex; flex-direction: column; gap: 10px; padding: 28px; border-radius: 18px; border: 1px solid var(--line); background: rgba(255,255,255,.03); transition: transform .3s var(--ease), border-color .3s, background .3s; }
.post-card:hover { transform: translateY(-4px); border-color: rgba(232,196,124,.45); background: rgba(232,196,124,.05); }
.post-card h2, .post-card h3 { font-size: 22px; margin: 0; }
.post-card p { color: var(--text-dim); margin: 0; font-size: 15px; flex: 1; }
.post-date { font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.post-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.post-tags span { font-size: 12px; border: 1px solid rgba(232,196,124,.35); color: var(--gold); padding: 3px 9px; border-radius: 999px; }
.post-card .link-arrow { color: #fff; margin-top: 4px; border-bottom-color: rgba(255,255,255,.4); align-self: flex-start; }
.pager { display: flex; gap: 8px; justify-content: center; margin-top: 40px; }
.pager a { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--text-dim); }
.pager a[aria-current] { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.crumbs { font-size: 13.5px; color: var(--text-dim); margin: 0 0 18px; }
.crumbs a:hover { color: var(--gold); }
.crumbs span { margin: 0 8px; opacity: .5; }
.article-head { padding: 72px 0 32px; }
.article-head h1 { font-size: clamp(32px, 4.6vw, 56px); margin-bottom: 18px; }
.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; color: var(--text-dim); font-size: 14.5px; margin: 0 0 14px; }
.article-meta i { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.article-cover { width: 100%; border-radius: 18px; border: 1px solid var(--line); margin: 8px 0 32px; }
.article-body { font-size: 18px; line-height: 1.8; color: #d9dfec; padding-bottom: 48px; }
.article-body h2 { font-size: 30px; margin: 44px 0 14px; color: #fff; }
.article-body h3 { font-size: 23px; margin: 34px 0 10px; color: #fff; }
.article-body p { margin: 0 0 20px; }
.article-body a { color: var(--gold); border-bottom: 1px solid rgba(232,196,124,.4); }
.article-body ul, .article-body ol { padding-left: 24px; margin: 0 0 20px; }
.article-body li { margin: 6px 0; }
.article-body blockquote { margin: 26px 0; padding: 14px 22px; border-left: 3px solid var(--gold); background: rgba(232,196,124,.06); border-radius: 0 12px 12px 0; font-family: var(--font-display); font-size: 21px; color: #fff; }
.article-body img { border-radius: 14px; margin: 10px 0 22px; }
.article-body pre { background: #08111f; border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; overflow: auto; font-size: 14px; }
.article-body code { font-family: ui-monospace, Consolas, monospace; font-size: .92em; background: rgba(255,255,255,.07); padding: 2px 6px; border-radius: 6px; }
.article-body pre code { background: none; padding: 0; }
.article-body table { width: 100%; border-collapse: collapse; margin: 0 0 22px; font-size: 15.5px; }
.article-body th, .article-body td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; }
.article-body hr { border: 0; border-top: 1px solid var(--line); margin: 36px 0; }
.article-foot { padding-bottom: 100px; }
.article-cta { padding: 34px; border-radius: 20px; border: 1px solid rgba(232,196,124,.35); background: radial-gradient(600px 300px at 20% 0%, rgba(232,196,124,.14), transparent 60%), rgba(255,255,255,.03); margin-bottom: 56px; }
.article-cta h2 { font-size: 28px; margin-bottom: 8px; }
.article-cta p { color: var(--text-dim); margin: 0 0 20px; }
.related-title { font-size: 20px; margin-bottom: 18px; color: var(--text-dim); }
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start; }
.form { display: flex; flex-direction: column; gap: 18px; padding: 34px; border-radius: 20px; border: 1px solid var(--line); background: rgba(255,255,255,.03); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form label { display: flex; flex-direction: column; gap: 8px; font-size: 14px; font-weight: 500; color: var(--text-dim); }
.form label span { color: var(--gold); }
.form input, .form textarea { font: inherit; color: #fff; background: rgba(11,22,40,.7); border: 1px solid rgba(255,255,255,.14); border-radius: 10px; padding: 13px 14px; transition: border-color .25s, box-shadow .25s; }
.form input:focus, .form textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(232,196,124,.18); }
.form textarea { resize: vertical; min-height: 140px; }
.form .btn { align-self: flex-start; }
.form-note { font-size: 13px; color: var(--text-dim); margin: 0; }
.form-error { padding: 12px 16px; border-radius: 10px; background: rgba(220,60,60,.12); border: 1px solid rgba(220,60,60,.4); color: #ffb3b3; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contact-aside h2 { font-size: 24px; margin-bottom: 18px; }
.steps { list-style: none; padding: 0; margin: 0 0 24px; counter-reset: s; }
.steps li { position: relative; padding: 0 0 18px 48px; counter-increment: s; }
.steps li::before { content: counter(s, decimal-leading-zero); position: absolute; left: 0; top: 0; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--gold); color: var(--gold); font-family: var(--font-display); font-size: 14px; }
.steps strong { display: block; margin-bottom: 4px; }
.steps span { color: var(--text-dim); font-size: 15px; }
.contact-alt { color: var(--text-dim); font-size: 14.5px; }
.contact-alt a { color: var(--gold); }
.ok-mark { width: 72px; margin: 0 auto 20px; }
@media (max-width: 1024px) { .post-grid, .post-grid--compact { grid-template-columns: repeat(2, 1fr); } .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 720px) { .post-grid, .post-grid--compact { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } .form { padding: 22px; } .page { padding-top: 72px; } .article-body { font-size: 17px; } }
