/*
Theme Name: DK Designs
Theme URI: https://dkdesigns.nl
Author: DK Designs
Author URI: https://dkdesigns.nl
Description: Eigen WordPress-thema voor DK Designs: UX-advies en webdesign voor zelfstandigen. Gebouwd als eenvoudig één-pagina thema met licht/donker thema, interactieve toggles en een WhatsApp-widget.
Version: 1.0
Requires at least: 6.0
Requires PHP: 7.4
License: Alleen voor eigen gebruik
Text Domain: dkdesigns
*/

:root{
  /* brand palette (fixed, supplied by client) */
  --sky-1:#78A4CB;
  --sky-2:#95BDD7;
  --sky-3:#B4E1EB;
  --sun:#F9E8A2;
  --orange:#FF9E20;

  /* derived neutrals for AA contrast */
  --ink:#0E1B24;
  --ink-soft:#17303D;
  --slate:#3E5866;

  --radius:4px;
  --maxw:1120px;
}

/* ---------- LIGHT THEME: genuinely light, white/near-white base, no dark bands ---------- */
html[data-theme="light"]{
  --bg:#FFFFFF;
  --bg-soft:#F1F8FB;
  --bg-band:var(--ink);
  --bg-card:#FFFFFF;
  --text:var(--ink);
  --text-dim:var(--slate);
  --text-on-band:#EAF4F8;
  --text-on-band-dim:#B9CCD6;
  --line:rgba(14,27,36,0.14);
  --line-on-band:rgba(234,244,248,0.16);
  --accent-strong:var(--ink);
  --cta-bg:var(--sun);
  --cta-text:var(--ink);
  --wa-teaser-shadow:rgba(14,27,36,0.18);
}

/* ---------- DARK THEME: genuinely dark, near-black base throughout ---------- */
html[data-theme="dark"]{
  --bg:#0A141B;
  --bg-soft:#111F28;
  --bg-band:#060D12;
  --bg-card:#111F28;
  --text:#EAF4F8;
  --text-dim:#93AEBB;
  --text-on-band:#EAF4F8;
  --text-on-band-dim:#93AEBB;
  --line:rgba(234,244,248,0.12);
  --line-on-band:rgba(234,244,248,0.10);
  --accent-strong:var(--sun);
  --cta-bg:var(--sun);
  --cta-text:var(--ink);
  --wa-teaser-shadow:rgba(0,0,0,0.45);
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:'IBM Plex Sans', sans-serif;
  -webkit-font-smoothing:antialiased;
  line-height:1.55;
  transition:background .3s ease, color .3s ease;
}
h1,h2,h3{
  font-family:'Fraunces', serif;
  font-weight:600;
  margin:0;
  letter-spacing:-0.01em;
}
a{color:inherit;}
img{max-width:100%;display:block;}
.wrap{max-width:var(--maxw); margin:0 auto; padding:0 28px;}
.eyebrow{
  font-family:'IBM Plex Mono', monospace;
  font-size:12px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--accent-strong);
}
.eyebrow-band{color:var(--orange);}

/* utility: robust hide (used by all interactive toggles instead of the [hidden] attribute,
   which gets overridden whenever an element also has an author display rule) */
.is-hidden{display:none !important;}

.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:'IBM Plex Mono', monospace;
  font-size:14px;
  letter-spacing:0.02em;
  padding:13px 22px;
  border-radius:var(--radius);
  text-decoration:none;
  border:1px solid transparent;
  cursor:pointer;
  transition:transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover{transform:translateY(-1px);}
.btn-primary{background:var(--cta-bg); color:var(--cta-text); position:relative; padding-right:38px;}
.btn-primary::after{
  content:"→"; position:absolute; right:16px; top:50%;
  transform:translateY(-50%); transition:transform .2s ease;
}
.btn-primary:hover{filter:brightness(0.96);}
.btn-primary:hover::after{transform:translateY(-50%) translateX(4px);}
.btn-ghost-band{background:transparent; color:var(--text-on-band); border-color:var(--line-on-band);}
.btn-ghost-band:hover{border-color:var(--orange); color:var(--orange);}
.btn-ghost{background:transparent; color:var(--text); border-color:var(--line);}
.btn-ghost:hover{border-color:var(--sky-1); color:var(--slate);}
:focus-visible{outline:2px solid var(--sky-1); outline-offset:3px;}

/* ---------- NAV ---------- */
header.site-header{
  position:sticky; top:0; z-index:50;
  background:var(--bg);
  border-bottom:1px solid var(--line);
  transition:background .3s ease, border-color .3s ease;
}
nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 28px; max-width:var(--maxw); margin:0 auto; gap:16px;
}
.logo{font-family:'IBM Plex Mono', monospace; font-weight:500; font-size:15px; letter-spacing:0.02em; white-space:nowrap; text-decoration:none; display:inline-flex; align-items:center; gap:9px;}
.logo-mark{width:22px; height:auto; color:var(--orange); flex:none; transition:transform .2s ease;}
.logo:hover .logo-mark{transform:rotate(-8deg);}
.logo-word span{color:var(--sky-1); transition:color .2s ease;}
.logo:hover .logo-word span{color:var(--orange);}
.navlinks{display:none; gap:26px; list-style:none; margin:0; padding:0; font-size:14px;}
.navlinks a{text-decoration:none; opacity:.75; transition:opacity .15s ease; position:relative; padding-bottom:2px;}
.navlinks a:hover{opacity:1;}
.navlinks a::after{
  content:""; position:absolute; left:0; bottom:-3px; width:100%; height:1px;
  background:var(--orange); transform:scaleX(0); transform-origin:left; transition:transform .25s ease;
}
.navlinks a:hover::after{transform:scaleX(1);}
@media(min-width:820px){.navlinks{display:flex;}}
.nav-right{display:flex; align-items:center; gap:14px;}
.navcta{display:none;}
@media(min-width:820px){.navcta{display:inline-flex;}}

.nav-burger{
  display:inline-flex; align-items:center; justify-content:center;
  width:38px; height:38px; border:1px solid var(--line); border-radius:var(--radius);
  background:transparent; cursor:pointer; flex-direction:column; gap:4px;
  transition:border-color .2s ease;
}
.nav-burger:hover{border-color:var(--orange);}
@media(min-width:820px){.nav-burger{display:none;}}
.nav-burger span{display:block; width:16px; height:2px; background:var(--text);}

.mobile-panel{
  display:none;
  flex-direction:column;
  gap:2px;
  border-top:1px solid var(--line);
  background:var(--bg);
}
.mobile-panel.open{display:flex;}
.mobile-panel a{
  padding:16px 28px; text-decoration:none; color:var(--text);
  border-bottom:1px solid var(--line); font-size:15px;
}
@media(min-width:820px){.mobile-panel{display:none !important;}}

/* theme toggle */
.theme-toggle{
  display:inline-flex; align-items:center; gap:6px;
  border:1px solid var(--line); border-radius:20px;
  padding:5px; background:var(--bg-soft); cursor:pointer;
  font-family:'IBM Plex Mono',monospace; font-size:12px;
}
.theme-toggle button{
  border:none; background:transparent; cursor:pointer;
  padding:6px 10px; border-radius:16px; color:var(--text-dim);
  font-family:inherit; font-size:12px; transition:background .2s ease, color .2s ease;
}
.theme-toggle button:hover{color:var(--text);}
.theme-toggle button[aria-pressed="true"]{background:var(--sky-1); color:var(--ink);}

/* ---------- HERO ---------- */
.hero{
  background:var(--bg-band);
  color:var(--text-on-band);
  padding:96px 0 84px;
  position:relative;
  overflow:hidden;
  transition:background .3s ease;
}
.hero-grid{
  display:grid; grid-template-columns:1.15fr 0.85fr; gap:56px; align-items:center;
}
@media(max-width:900px){ .hero-grid{grid-template-columns:1fr;} }
.hero-inner{max-width:760px; position:relative;}
.hero h1{
  font-size:clamp(34px, 5.4vw, 58px);
  line-height:1.08;
  margin:18px 0 22px;
}
.hero h1 em{
  font-style:normal;
  color:inherit;
  position:relative;
  white-space:nowrap;
}
.hero h1 em::after{
  content:"";
  position:absolute; left:-2px; right:-2px; bottom:0.06em; height:0.32em;
  background:var(--orange); opacity:0.65; z-index:-1; border-radius:2px;
}
.hero p.lead{
  font-size:18px;
  color:var(--text-on-band-dim);
  max-width:560px;
  margin-bottom:34px;
}
.hero-actions{display:flex; flex-wrap:wrap; gap:14px;}

/* hero entrance micro-animation */
@keyframes fadeUp{ from{opacity:0; transform:translateY(14px);} to{opacity:1; transform:translateY(0);} }
.hero-inner > *{opacity:0; animation:fadeUp .7s ease forwards;}
.hero-inner > *:nth-child(1){animation-delay:.05s;}
.hero-inner > *:nth-child(2){animation-delay:.15s;}
.hero-inner > *:nth-child(3){animation-delay:.25s;}
.hero-inner > *:nth-child(4){animation-delay:.35s;}

/* hero image */
.hero-media{opacity:0; animation:fadeUp .8s ease forwards; animation-delay:.3s;}
.hero-image-frame{
  position:relative;
  border-radius:14px;
  overflow:hidden;
  border:1px solid var(--line-on-band);
  box-shadow:0 24px 60px rgba(0,0,0,0.35);
  animation:floatY 5s ease-in-out infinite;
}
.hero-image-frame img{width:100%; height:auto; display:block;}
.hero-image-placeholder{display:block; width:100%; height:auto;}
.hero-image-tag{
  position:absolute; top:12px; right:12px; z-index:2;
  font-family:'IBM Plex Mono',monospace; font-size:10.5px; letter-spacing:.03em;
  background:rgba(14,27,36,0.75); color:#EAF4F8;
  border:1px dashed var(--orange);
  padding:5px 9px; border-radius:20px;
}
@keyframes floatY{ 0%,100%{transform:translateY(0);} 50%{transform:translateY(-10px);} }

/* ---------- SIGNATURE TOGGLE ---------- */
.compare{
  padding:88px 0;
  border-bottom:1px solid var(--line);
}
.compare-head{
  display:flex; align-items:flex-end; justify-content:space-between; gap:20px; flex-wrap:wrap;
  margin-bottom:36px;
}
.compare-head h2{font-size:clamp(24px,3vw,32px);}
.switch-row{display:flex; align-items:center; gap:12px; font-family:'IBM Plex Mono',monospace; font-size:13px;}
.switch{
  position:relative; width:52px; height:28px; border-radius:20px;
  background:var(--slate); cursor:pointer; border:1px solid transparent; padding:0; flex:none;
}
.switch::before{
  content:""; position:absolute; top:3px; left:3px;
  width:22px; height:22px; border-radius:50%; background:var(--bg);
  transition:transform .25s ease;
}
.switch[aria-checked="true"]{background:var(--orange); border-color:var(--ink);}
.switch[aria-checked="true"]::before{transform:translateX(24px);}
.switch-label{opacity:.55;}
.switch-label.active{color:var(--accent-strong); opacity:1; font-weight:500;}

.compare-panel{
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:36px;
  background:var(--bg-soft);
  transition:background .3s ease, border-color .3s ease;
}
.compare-panel ul{list-style:none; margin:0; padding:0; display:grid; gap:16px;}
.compare-panel li{
  display:flex; gap:14px; font-size:16px; align-items:flex-start; color:var(--text);
  transform:rotate(0deg);
  transition:transform .3s ease, opacity .3s ease, color .3s ease;
}
.compare-panel li .mark{font-family:'IBM Plex Mono',monospace; font-size:13px; flex:none; padding-top:2px;}
.state-chaos li .mark{color:var(--slate);}
.state-calm li .mark{color:var(--accent-strong);}
.compare-panel[data-mode="chaos"] li:nth-child(odd){transform:rotate(-0.6deg);}
.compare-panel[data-mode="chaos"] li:nth-child(even){transform:rotate(0.5deg);}
.compare-panel[data-mode="calm"]{background:var(--bg-card); border-color:var(--sky-1);}
.compare-panel[data-mode="calm"] li{transform:rotate(0deg);}

/* ---------- SECTION SHELL ---------- */
section{padding:88px 0;}
.section-head{max-width:620px; margin-bottom:48px;}
.section-head h2{font-size:clamp(26px,3.2vw,36px); margin-top:12px;}
.section-head p{color:var(--text-dim); font-size:16px; margin-top:14px;}

/* ---------- SERVICES ---------- */
.service-grid{display:grid; gap:22px; grid-template-columns:repeat(auto-fit,minmax(260px,1fr));}
.service-card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:30px 26px;
  background:var(--bg-card);
  transition:border-color .2s ease, transform .2s ease, background .3s ease;
}
.service-card:hover{border-color:var(--sky-1); transform:translateY(-3px);}
.service-card:hover .num{transform:translateX(3px);}
.service-card .num{font-family:'IBM Plex Mono',monospace; font-size:13px; color:var(--accent-strong); display:inline-block; margin-bottom:14px; transition:transform .2s ease;}
.service-card h3{font-size:20px; margin-bottom:10px;}
.service-card p{color:var(--text-dim); font-size:15px; margin:0;}

/* ---------- UX UITGELEGD ---------- */
.ux-explainer{background:var(--bg-soft); border-top:1px solid var(--line); border-bottom:1px solid var(--line); transition:background .3s ease;}
.ux-example{
  border:1px solid var(--line); border-radius:var(--radius);
  padding:32px; background:var(--bg-card); transition:background .3s ease, border-color .3s ease;
}
.ux-example-head{
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap;
  gap:16px; margin-bottom:26px;
}
.ux-example-head h3{font-size:18px; font-family:'IBM Plex Sans',sans-serif; font-weight:600;}
.ux-mockup-wrap{
  border:1px solid var(--line); border-radius:10px; overflow:hidden;
  margin-bottom:26px; background:#0E1B24;
}
.ux-mockup{display:block; width:100%; height:auto;}
.ux-annotations{list-style:none; margin:0; padding:0; display:grid; gap:12px;}
.ux-annotations li{
  display:flex; gap:10px; font-size:14.5px; color:var(--text-dim); align-items:flex-start;
}
.ux-annotations li::before{content:"•"; color:var(--orange); flex:none;}

/* ---------- WERKWIJZE ---------- */
.werkwijze{background:var(--bg-band); color:var(--text-on-band); transition:background .3s ease;}
.werkwijze .section-head p{color:var(--text-on-band-dim);}
.timeline{
  display:grid; gap:0;
  grid-template-columns:repeat(5,1fr);
  border-top:1px solid var(--line-on-band);
}
.timeline .step{
  padding:26px 20px 0 0;
  border-right:1px solid var(--line-on-band);
  position:relative;
}
.timeline .step:last-child{border-right:none;}
.timeline .step .step-num{
  font-family:'IBM Plex Mono',monospace; font-size:13px; color:var(--orange);
  display:inline-block; margin-bottom:10px; transition:transform .2s ease;
}
.timeline .step:hover .step-num{transform:scale(1.18);}
.timeline .step h3{font-size:16px; margin-bottom:8px; font-family:'IBM Plex Sans',sans-serif; font-weight:600;}
.timeline .step p{font-size:13.5px; color:var(--text-on-band-dim); margin:0;}
@media(max-width:820px){
  .timeline{grid-template-columns:1fr; border-top:none;}
  .timeline .step{border-right:none; border-top:1px solid var(--line-on-band); padding:22px 0 0;}
}

/* ---------- OVER ---------- */
.over{display:grid; grid-template-columns:1.1fr 0.9fr; gap:56px; align-items:start;}
@media(max-width:820px){.over{grid-template-columns:1fr;}}
.over h2{font-size:clamp(26px,3.2vw,34px); margin-bottom:20px;}
.over p{color:var(--text-dim); font-size:16px; margin:0 0 16px;}
.badge-stack{display:grid; gap:14px;}
.badge{
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:20px 22px;
  background:var(--bg-soft);
  transition:transform .2s ease, border-color .2s ease;
}
.badge:hover{transform:translateY(-3px); border-color:var(--sky-1);}
.badge .b-num{font-family:'Fraunces',serif; font-size:30px; color:var(--slate); display:block;}
html[data-theme="dark"] .badge .b-num{color:var(--sky-2);}
.badge .b-label{font-family:'IBM Plex Mono',monospace; font-size:12.5px; color:var(--text-dim); letter-spacing:.03em;}

/* ---------- CASE STUDY: SINGLE PAGE ---------- */
.case-hero{
  background:var(--bg-band);
  color:var(--text-on-band);
  padding:48px 0 0;
  transition:background .3s ease;
}
.case-hero-inner{padding-bottom:56px;}
.case-back{
  display:inline-block; margin-bottom:28px;
  font-family:'IBM Plex Mono',monospace; font-size:13px;
  color:var(--text-on-band-dim); text-decoration:none;
  transition:color .2s ease;
}
.case-back:hover{color:var(--orange);}
.case-hero h1{font-size:clamp(30px,4.6vw,46px); margin:14px 0 16px; line-height:1.1;}
.case-hero-sub{font-size:17px; color:var(--text-on-band-dim); max-width:600px; margin:0;}
.case-hero-image{padding-bottom:0; transform:translateY(40%); max-width:900px;}
.case-hero-image-el{
  width:100%; height:auto; display:block;
  border-radius:12px; border:1px solid var(--line);
  box-shadow:0 24px 50px rgba(0,0,0,0.28);
}

.case-article{
  max-width:680px; margin:0 auto;
  padding:96px 0 40px;
  font-size:17px; line-height:1.75; color:var(--text);
}
.case-article h2{font-size:26px; margin:44px 0 16px;}
.case-article h3{font-size:20px; margin:32px 0 12px;}
.case-article p{margin:0 0 20px; color:var(--text-dim);}
.case-article ul, .case-article ol{margin:0 0 20px; padding-left:22px; color:var(--text-dim);}
.case-article li{margin-bottom:8px;}
.case-article img{width:100%; height:auto; border-radius:8px; margin:28px 0;}
.case-article blockquote{
  margin:28px 0; padding:4px 0 4px 20px;
  border-left:3px solid var(--orange);
  font-style:italic; color:var(--text);
}
.case-article a{color:var(--accent-strong); text-decoration:underline;}

.case-cta{
  background:var(--bg-soft);
  border-top:1px solid var(--line);
  text-align:center;
  padding:72px 0;
}
.case-cta-inner{max-width:480px; margin:0 auto;}
.case-cta h2{font-size:clamp(24px,3vw,30px); margin-bottom:12px;}
.case-cta p{color:var(--text-dim); margin-bottom:26px;}

/* ---------- CASE STUDY'S ---------- */
.cases{background:var(--bg-soft); border-top:1px solid var(--line); border-bottom:1px solid var(--line); transition:background .3s ease;}
.case-grid{display:grid; gap:22px; grid-template-columns:repeat(auto-fit,minmax(260px,1fr));}
.case-card{
  display:block;
  text-decoration:none;
  border:1px dashed var(--line);
  border-radius:var(--radius);
  padding:30px 26px;
  background:var(--bg-card);
  color:var(--text-dim);
  transition:transform .2s ease, border-color .2s ease;
}
.case-card:hover{transform:translateY(-3px); border-color:var(--orange); border-style:solid;}
.case-card-image{width:100%; height:180px; object-fit:cover; border-radius:6px; margin-bottom:16px; display:block;}
.case-card h3{color:var(--text); font-size:18px; margin-bottom:8px; font-weight:600; font-family:'IBM Plex Sans',sans-serif;}
.case-card p{font-size:14.5px; margin:0;}

/* ---------- VOOR WIE ---------- */
.voorwie{transition:background .3s ease;}
.tag-grid{display:flex; flex-wrap:wrap; gap:12px; margin-top:8px;}
.tag{
  font-family:'IBM Plex Mono',monospace; font-size:14px; color:var(--text);
  border:1px solid var(--line); border-radius:20px;
  padding:9px 18px; background:var(--bg-card);
  transition:transform .2s ease, border-color .2s ease;
}
.tag:hover{transform:translateY(-2px); border-color:var(--orange);}

/* ---------- CONTACT / FOOTER ---------- */
footer.site-footer{background:var(--bg-band); color:var(--text-on-band); padding:92px 0 40px; transition:background .3s ease;}
.contact-inner{max-width:620px;}
footer.site-footer h2{font-size:clamp(28px,4vw,42px); margin-bottom:18px;}
footer.site-footer p.lead{color:var(--text-on-band-dim); font-size:17px; margin-bottom:32px;}
.foot-bottom{
  margin-top:80px; padding-top:24px; border-top:1px solid var(--line-on-band);
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px;
  font-family:'IBM Plex Mono',monospace; font-size:12.5px; color:var(--text-on-band-dim);
}

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

/* ---------- WHATSAPP WIDGET ---------- */
.wa-widget{
  position:fixed; right:22px; bottom:22px; z-index:100;
  display:flex; flex-direction:column; align-items:flex-end; gap:12px;
}
.wa-teaser{
  max-width:260px;
  background:var(--bg-card);
  color:var(--text);
  border:1px solid var(--line);
  border-radius:14px;
  padding:14px 16px 14px 14px;
  box-shadow:0 10px 30px var(--wa-teaser-shadow);
  display:flex; gap:10px; align-items:flex-start;
  opacity:0; transform:translateY(10px) scale(0.98);
  pointer-events:none;
  transition:opacity .35s ease, transform .35s ease;
  position:relative;
}
.wa-teaser.show{opacity:1; transform:translateY(0) scale(1); pointer-events:auto;}
.wa-avatar{
  width:40px; height:40px; border-radius:50%; flex:none;
  background:var(--sky-2);
  display:flex; align-items:center; justify-content:center;
  font-family:'IBM Plex Mono',monospace; font-weight:500; font-size:13px; color:var(--ink);
  overflow:hidden;
}
.wa-avatar img{width:100%; height:100%; object-fit:cover;}
.wa-teaser-text{font-size:13.5px; line-height:1.4; padding-right:10px;}
.wa-teaser-close{
  position:absolute; top:6px; right:8px;
  border:none; background:transparent; cursor:pointer;
  font-family:'IBM Plex Mono',monospace; font-size:13px; color:var(--text-dim);
  line-height:1; padding:4px;
}
.wa-button{
  width:58px; height:58px; border-radius:50%;
  background:#25D366;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 8px 22px rgba(14,27,36,0.25);
  border:none; cursor:pointer; text-decoration:none;
  transition:transform .15s ease, filter .15s ease;
}
.wa-button:hover{filter:brightness(1.05); transform:scale(1.06);}
.wa-button svg{width:28px; height:28px;}

@keyframes waBounce{
  0%, 100%{transform:translateY(0);}
  20%{transform:translateY(-16px);}
  40%{transform:translateY(0);}
  55%{transform:translateY(-8px);}
  70%{transform:translateY(0);}
}
.wa-button.bounce{animation:waBounce 0.9s ease-in-out 6;}

/* ---------- KENNISMAKEN MODAL ---------- */
.modal-overlay{
  position:fixed; inset:0; z-index:200;
  background:rgba(6,13,18,0.72);
  display:flex; align-items:center; justify-content:center;
  padding:20px;
  opacity:0; pointer-events:none;
  transition:opacity .25s ease;
}
.modal-overlay.show{opacity:1; pointer-events:auto;}
.modal-overlay[hidden]{display:none;}
.modal-box{
  position:relative;
  width:100%; max-width:420px;
  background:var(--bg-card);
  color:var(--text);
  border-radius:10px;
  padding:36px 32px 32px;
  border:1px solid var(--line);
  transform:translateY(14px);
  transition:transform .25s ease;
}
.modal-overlay.show .modal-box{transform:translateY(0);}
.modal-close{
  position:absolute; top:14px; right:14px;
  width:32px; height:32px; border-radius:50%;
  border:1px solid var(--line); background:transparent; cursor:pointer;
  color:var(--text-dim); font-family:'IBM Plex Mono',monospace; font-size:13px;
  transition:border-color .2s ease, color .2s ease;
}
.modal-close:hover{border-color:var(--orange); color:var(--orange);}
.modal-box h2{font-size:24px; margin:10px 0 10px;}
.modal-lead{color:var(--text-dim); font-size:14.5px; margin:0 0 24px;}
.modal-actions{display:grid; gap:12px;}
.modal-option{
  display:flex; flex-direction:column; gap:2px;
  border:1px solid var(--line); border-radius:8px;
  padding:14px 16px; text-decoration:none; color:var(--text);
  transition:border-color .2s ease, transform .2s ease;
}
.modal-option:hover{border-color:var(--orange); transform:translateY(-2px);}
.modal-option-title{font-family:'IBM Plex Mono',monospace; font-size:14px; font-weight:500;}
.modal-option-sub{font-size:13px; color:var(--text-dim);}

@media(prefers-reduced-motion:reduce){
  *{animation:none !important; transition:none !important;}
  html{scroll-behavior:auto;}
}
