/* BoredRightNow — shared design system (Comic Pop) */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  width: 100%;
  background: #f8f3ec;
  color: #3a2f26;
  --accent: #FF6B47;
  --accent2: #2ba8a1;
  --ink: #3a2f26;
  line-height: 1.5;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }
button { cursor: pointer; font-family: inherit; }
img { max-width: 100%; }
input, textarea, select { font-family: inherit; }
.heading { font-family: 'Baloo 2', system-ui, sans-serif; }
.body-font { font-family: 'DM Sans', system-ui, sans-serif; }
.wrap { max-width: 880px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.wrap-wide { max-width: 1040px; margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }
.section { margin-bottom: 64px; }
.h2 { font-family: 'Baloo 2', system-ui, sans-serif; text-align: center; font-size: clamp(22px, 3vw, 30px); font-weight: 800; margin-bottom: 20px; }
.muted { opacity: 0.7; }
.lede { font-size: 15px; opacity: 0.82; line-height: 1.75; margin: 0 0 16px; }

/* ---------- Nav ---------- */
.site-nav {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px clamp(18px, 4vw, 48px); border-bottom: 3px solid var(--ink);
  position: relative; z-index: 20; background: #f8f3ec; flex-wrap: nowrap;
}
.site-nav .brand { display: flex; align-items: baseline; gap: 8px; flex-shrink: 1; min-width: 0; }
.site-nav .brand-name { font-size: 23px; font-weight: 800; letter-spacing: -0.5px; white-space: nowrap; }
.site-nav .brand-tag { font-size: 12px; font-weight: 500; opacity: 0.6; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nav-quick { display: flex; align-items: center; gap: 20px; font-size: 14px; font-weight: 600; min-width: 0; overflow: hidden; flex-shrink: 1; }
.nav-quick a { white-space: nowrap; }
.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.badge-pill {
  background: var(--accent); color: white; padding: 6px 14px; border-radius: 999px;
  font-weight: 700; font-size: 13px; border: 2px solid var(--ink); display: inline-block; white-space: nowrap;
}
.lang-switch { display: flex; align-items: center; gap: 4px; border: 2px solid var(--ink); border-radius: 999px; padding: 3px; background: white; }
.lang-switch a {
  display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 26px;
  border-radius: 999px; font-size: 15px; line-height: 1; text-decoration: none;
}
.lang-switch a.active { background: var(--accent); box-shadow: inset 0 0 0 2px var(--ink); }
.burger {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  background: white; border: 2px solid var(--ink); border-radius: 10px; padding: 9px 13px;
  font-weight: 700; font-size: 14px; box-shadow: 3px 3px 0 var(--ink);
  transition: transform .12s ease, box-shadow .12s ease;
}
.burger:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--ink); }
.burger:active { transform: translate(0, 0); box-shadow: 2px 2px 0 var(--ink); }
.burger .bars { display: inline-flex; flex-direction: column; gap: 3px; }
.burger .bars i { display: block; width: 17px; height: 2.5px; background: var(--ink); border-radius: 2px; }

/* Slide-down mega panel */
.nav-panel {
  display: none; position: relative; z-index: 19; background: #fffdf9;
  border-bottom: 3px solid var(--ink); padding: 28px clamp(18px, 4vw, 48px) 32px;
}
.nav-panel.open { display: block; animation: panelIn .18s ease-out; }
@keyframes panelIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.nav-panel-title { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; opacity: 0.5; margin-bottom: 14px; }
.nav-panel-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 10px; margin-bottom: 28px; }
.nav-panel-link {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 12px;
  border: 2px solid transparent; font-size: 14px; font-weight: 700; transition: background .12s ease, border-color .12s ease;
}
.nav-panel-link:hover { background: white; border-color: var(--ink); color: inherit; }
.nav-panel-link .np-ico { width: 30px; height: 30px; border-radius: 9px; color: white; display: flex; align-items: center; justify-content: center; border: 2px solid var(--ink); flex-shrink: 0; }
.nav-panel-link .np-ico svg { width: 16px; height: 16px; }
.nav-panel-foot { display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; border-top: 2px dashed #ddd4c8; padding-top: 20px; }
.nav-panel-foot .col { display: flex; flex-direction: column; gap: 8px; font-size: 14px; font-weight: 600; }
.nav-panel-langs { display: flex; gap: 10px; flex-wrap: wrap; }
.nav-panel-langs a { display: inline-flex; align-items: center; gap: 7px; border: 2px solid var(--ink); border-radius: 999px; padding: 6px 14px; font-size: 13px; font-weight: 700; background: white; }
.nav-panel-langs a.active { background: var(--accent); color: white; }

@media (max-width: 1300px) { .nav-quick { display: none; } }
@media (max-width: 760px) { .site-nav .brand-tag { display: none; } }
@media (max-width: 520px) {
  .site-nav .brand-tag { display: none; }
  .site-nav { padding: 14px 14px; gap: 8px; }
  .site-nav .brand-name { font-size: 19px; }
  .burger span.lbl { display: none; }
  .burger { padding: 8px 10px; }
  .lang-switch a { width: 26px; height: 24px; font-size: 14px; }
  .lang-switch { gap: 2px; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(22px, 4vw, 40px) 0 8px; }
.hero-inner { position: relative; z-index: 2; max-width: 780px; margin: 0 auto; padding: 0 24px; text-align: center; }
.blob { position: absolute; border-radius: 50%; z-index: 0; filter: blur(58px); opacity: 0.28; }
.blob-a { top: -60px; left: 6%; width: 240px; height: 240px; background: var(--accent); animation: floatBlobA 7s ease-in-out infinite; }
.blob-b { top: 30px; right: 8%; width: 200px; height: 200px; background: var(--accent2); animation: floatBlobB 9s ease-in-out infinite; opacity: 0.22; }
.motif { position: absolute; z-index: 1; color: var(--accent); pointer-events: none; animation: floatMotif 6s ease-in-out infinite; }
.motif svg { width: 100%; height: 100%; display: block; }
.motif-2 { color: var(--accent2); }
.eyebrow {
  display: inline-block; background: #cdeceb; border: 2px solid var(--ink); border-radius: 999px;
  padding: 6px 16px; font-size: 13px; font-weight: 700; margin-bottom: 14px; transform: rotate(-2deg);
}
.h1-seo {
  font-family: 'Baloo 2', system-ui, sans-serif; font-size: clamp(14px, 1.8vw, 17px); font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.4px; color: var(--accent); margin: 0 0 10px;
}
.h1 { font-family: 'Baloo 2', system-ui, sans-serif; font-size: clamp(30px, 5.5vw, 52px); font-weight: 800; line-height: 1.08; margin: 0 0 14px; letter-spacing: -1px; }
.h1 .grad { background: linear-gradient(120deg, var(--accent), var(--accent2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: clamp(14px, 2vw, 17px); opacity: 0.75; max-width: 560px; margin: 0 auto 8px; }

/* ---------- Ads ----------
   Empty until AdSense fills it: an unfilled slot collapses to nothing rather
   than leaving a dashed placeholder box on the page. */
.ad-zone { min-height: 0; display: block; text-align: center; }
.ad-zone:empty { display: none; }
.ad-zone ins { display: block; margin: 0 auto; }

/* ---------- Chips ---------- */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.chip {
  display: inline-flex; align-items: center; gap: 7px; padding: 10px 18px; border-radius: 999px;
  font-size: 14px; font-weight: 700; border: 2.5px solid var(--ink); background: white; color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink); transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.chip:hover { transform: translateY(-2px); }
.chip:active { transform: translateY(0) scale(0.97); }
.chip.active { background: var(--accent); color: white; box-shadow: 4px 4px 0 var(--ink); }

/* ---------- Cards / buttons ---------- */
.card {
  background: white; border: 3px solid var(--ink); border-radius: 24px;
  padding: clamp(20px, 4vw, 36px); box-shadow: 10px 10px 0 var(--ink); position: relative;
}
.result-box {
  background: #f8f3ec; border: 2px solid #ddd4c8; border-radius: 16px; padding: 24px;
  min-height: 96px; display: flex; align-items: center; margin-bottom: 20px;
}
.btn-primary {
  width: 100%; background: var(--accent); color: white; border: 3px solid var(--ink); border-radius: 12px;
  padding: 16px; font-size: 17px; font-weight: 800; box-shadow: 5px 5px 0 var(--ink); margin-bottom: 16px;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.btn-primary:hover { transform: translate(-2px, -2px); }
.btn-primary:active { transform: translate(0, 0); box-shadow: 2px 2px 0 var(--ink) !important; }
.btn-row { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-secondary {
  flex: 1; min-width: 120px; display: flex; align-items: center; justify-content: center; gap: 6px;
  background: white; border: 2px solid var(--ink); border-radius: 10px; padding: 10px; font-size: 14px;
  font-weight: 700; box-shadow: 3px 3px 0 var(--ink); transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.btn-secondary:hover { transform: translate(-2px, -2px); }
.btn-secondary:active { transform: translate(0, 0); box-shadow: 2px 2px 0 var(--ink) !important; }
.badge-cat {
  display: inline-block; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px;
  background: var(--accent); color: white; border: 2px solid var(--ink); border-radius: 999px; padding: 5px 14px;
}
.text-input {
  width: 100%; padding: 14px 16px; border: 2.5px solid var(--ink); border-radius: 12px; font-size: 16px;
  background: white; color: var(--ink);
}
.text-input:focus { outline: none; box-shadow: 3px 3px 0 var(--accent); }

/* ---------- Example cards ---------- */
.example-card {
  border: 2px solid var(--ink); border-radius: 16px; padding: 18px; box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.example-card:hover { transform: translateY(-6px) rotate(0deg) !important; box-shadow: 6px 6px 0 var(--ink); }
.example-tag {
  display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  background: white; border: 1px solid var(--ink); border-radius: 999px; padding: 3px 10px; margin-bottom: 10px;
}
.example-text { font-size: 14px; font-weight: 600; line-height: 1.45; }
/* 12 examples = 4 rows of 3 on desktop */
.grid-12 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
@media (max-width: 900px) { .grid-12 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .grid-12 { grid-template-columns: 1fr; } }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }

/* ---------- Steps ---------- */
.step-num {
  width: 44px; height: 44px; border-radius: 50%; background: var(--accent); color: white; font-weight: 800;
  font-size: 18px; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; border: 2px solid var(--ink);
}

/* ---------- Guide blocks ---------- */
.guide-item { background: white; border: 2px solid var(--ink); border-radius: 16px; padding: 20px; box-shadow: 4px 4px 0 var(--ink); }
.guide-item h3 { font-family: 'Baloo 2', system-ui, sans-serif; font-size: 17px; font-weight: 800; margin: 0 0 8px; }
.guide-item p { font-size: 14px; line-height: 1.6; opacity: 0.78; margin: 0; }

/* ---------- FAQ ---------- */
.faq-item { border: 2px solid var(--ink); border-radius: 14px; background: white; overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: transparent; border: none; padding: 16px 18px; text-align: left; font-size: 15px; font-weight: 700;
}
.faq-a { padding: 0 18px 18px; font-size: 14px; opacity: 0.78; line-height: 1.6; }

/* ---------- Tag links ---------- */
.tag-link { background: white; border: 1px solid #ddd4c8; border-radius: 999px; padding: 6px 14px; font-size: 13px; font-weight: 600; }

/* ---------- Tool cards ---------- */
.tool-card {
  background: white; border: 3px solid var(--ink); border-radius: 20px; padding: 22px; box-shadow: 6px 6px 0 var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease; display: flex; flex-direction: column; gap: 9px;
}
.tool-card:hover { transform: translateY(-4px); box-shadow: 9px 9px 0 var(--ink); }
.tool-icon {
  width: 46px; height: 46px; border-radius: 12px; color: white;
  display: flex; align-items: center; justify-content: center; border: 2px solid var(--ink);
}
.tool-title { font-family: 'Baloo 2', system-ui, sans-serif; font-weight: 800; font-size: 18px; }
.tool-kicker { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; opacity: 0.5; }
.tool-desc { font-size: 13.5px; opacity: 0.75; line-height: 1.5; }
.tool-cta { font-size: 13px; font-weight: 700; margin-top: auto; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #f5efe6; padding: 48px 24px 28px; }
.footer-grid { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; margin-bottom: 32px; }
.footer-col-title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; opacity: 0.6; margin-bottom: 12px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.footer-links a { opacity: 0.85; display: flex; align-items: center; gap: 8px; }
.footer-links a:hover { color: #fff; opacity: 1; }
.footer-bottom { border-top: 1px solid #55483c; padding-top: 20px; font-size: 12px; opacity: 0.55; text-align: center; }

/* ---------- Animations ---------- */
.confetti-piece { position: absolute; width: 9px; height: 9px; border-radius: 3px; animation: burstFly 0.8s cubic-bezier(0.2,0.7,0.3,1) forwards; pointer-events: none; }
.card-pop-a { animation: cardPopA 0.35s cubic-bezier(0.34,1.56,0.64,1); }
.card-pop-b { animation: cardPopB 0.35s cubic-bezier(0.34,1.56,0.64,1); }

@keyframes floatBlobA { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(18px,-24px) scale(1.08); } }
@keyframes floatBlobB { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-22px,20px) scale(1.05); } }
@keyframes floatMotif { 0%, 100% { transform: translateY(0) rotate(var(--rot,0deg)); } 50% { transform: translateY(-16px) rotate(calc(var(--rot,0deg) + 6deg)); } }
@keyframes burstFly { 0% { transform: translate(0,0) scale(1) rotate(0deg); opacity: 1; } 100% { transform: translate(var(--tx),var(--ty)) scale(0.25) rotate(var(--rot,140deg)); opacity: 0; } }
@keyframes cardPopA { 0% { transform: scale(0.97); } 60% { transform: scale(1.015); } 100% { transform: scale(1); } }
@keyframes cardPopB { 0% { transform: scale(0.97); } 60% { transform: scale(1.015); } 100% { transform: scale(1); } }

@media (max-width: 700px) {
  .grid-3 { grid-template-columns: 1fr; }
  .motif { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .blob, .motif, .card-pop-a, .card-pop-b { animation: none !important; }
}


/* ---------- Surprise me ---------- */
.surprise-btn {
  display: inline-flex; align-items: center; gap: 7px; background: var(--accent); color: #fff;
  border: 2px solid var(--ink); border-radius: 10px; padding: 9px 14px; font-weight: 700;
  font-size: 14px; box-shadow: 3px 3px 0 var(--ink); white-space: nowrap;
  transition: transform .12s ease, box-shadow .12s ease;
}
.surprise-btn:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--ink); color: #fff; }
.surprise-btn:active { transform: translate(0, 0); box-shadow: 2px 2px 0 var(--ink); }
.surprise-btn svg { width: 15px; height: 15px; }
@media (max-width: 900px) { .surprise-btn .lbl { display: none; } .surprise-btn { padding: 9px 11px; } }

/* ---------- Next-tool prompt (session depth) ---------- */
#next-tool[hidden] { display: none !important; }
.next-tool {
  margin-top: 20px; padding-top: 18px; border-top: 2px dashed #ddd4c8;
  animation: nextIn .28s cubic-bezier(.34,1.4,.64,1);
}
@keyframes nextIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.next-tool-label {
  font-size: 11.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em;
  opacity: .55; margin-bottom: 10px;
}
.next-tool a {
  display: flex; align-items: center; gap: 13px; padding: 13px 15px; border-radius: 14px;
  border: 2.5px solid var(--ink); background: #fff; box-shadow: 4px 4px 0 var(--ink);
  transition: transform .14s ease, box-shadow .14s ease;
}
.next-tool a:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); color: inherit; }
.next-tool .nt-ico {
  width: 40px; height: 40px; border-radius: 11px; color: #fff; flex: none;
  display: flex; align-items: center; justify-content: center; border: 2px solid var(--ink);
}
.next-tool .nt-ico svg { width: 20px; height: 20px; }
.next-tool .nt-txt { display: block; min-width: 0; }
.next-tool .nt-name { display: block; font-family: 'Baloo 2', system-ui, sans-serif; font-weight: 800; font-size: 16px; line-height: 1.2; }
.next-tool .nt-desc { display: block; font-size: 13px; opacity: .72; line-height: 1.4; margin-top: 2px; }
.next-tool .nt-go { margin-left: auto; font-size: 20px; opacity: .45; flex: none; }

/* ---------- Editorial full-list section ---------- */
.editorial-group { margin-bottom: 30px; }
.editorial-group h3 {
  font-family: 'Baloo 2', system-ui, sans-serif; font-size: 18px; font-weight: 800;
  margin: 0 0 12px; padding-bottom: 7px; border-bottom: 2px solid var(--ink);
  display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
}
.editorial-group h3 .count { font-size: 12px; font-weight: 700; opacity: .5; font-family: 'DM Sans', sans-serif; }
.editorial-list { margin: 0; padding-left: 22px; display: flex; flex-direction: column; gap: 9px; }
.editorial-list li { font-size: 15px; line-height: 1.6; padding-left: 3px; }
.editorial-list li::marker { color: var(--accent); font-weight: 700; }

/* ---------- Bigger mobile touch target on the primary action ---------- */
@media (max-width: 620px) {
  .btn-primary { padding: 19px 16px; font-size: 18px; border-radius: 14px; }
  .btn-secondary { padding: 13px 10px; }
  .chip { padding: 11px 17px; }
}


/* ---------- Main nav: Home / All Free Tools / About Us ---------- */
.main-nav { display: flex; align-items: center; gap: 6px; flex-shrink: 1; min-width: 0; }
.nav-item {
  display: inline-flex; align-items: center; gap: 5px; padding: 9px 13px; border-radius: 10px;
  font-family: 'Baloo 2', system-ui, sans-serif; font-size: 15px; font-weight: 700;
  background: transparent; border: 2px solid transparent; color: var(--ink); white-space: nowrap;
  transition: background .12s ease, border-color .12s ease;
}
.nav-item:hover { background: #fff; border-color: var(--ink); color: var(--ink); }
.nav-toggle[aria-expanded="true"] { background: #fff; border-color: var(--ink); }
.dd-chev { width: 13px; height: 13px; flex: none; transition: transform .16s ease; }
.nav-toggle[aria-expanded="true"] .dd-chev { transform: rotate(180deg); }
.nav-dd { position: relative; }

.dd-panel {
  position: absolute; top: calc(100% + 10px); left: 0; z-index: 40;
  background: #fffdf9; border: 3px solid var(--ink); border-radius: 16px;
  box-shadow: 8px 8px 0 var(--ink); padding: 14px;
  animation: ddIn .16s cubic-bezier(.34,1.3,.64,1);
}
.dd-panel[hidden] { display: none; }
@keyframes ddIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.dd-panel-tools { width: min(760px, calc(100vw - 48px)); }
.dd-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; }
.dd-tool { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 11px; border: 2px solid transparent; }
.dd-tool:hover { background: #fff; border-color: var(--ink); color: inherit; }
.dd-ico { width: 30px; height: 30px; border-radius: 9px; color: #fff; display: flex; align-items: center; justify-content: center; border: 2px solid var(--ink); flex: none; }
.dd-ico svg { width: 16px; height: 16px; }
.dd-txt { min-width: 0; }
.dd-name { display: block; font-family: 'Baloo 2', system-ui, sans-serif; font-weight: 800; font-size: 14px; line-height: 1.25; }
.dd-desc { display: block; font-size: 11.5px; opacity: .55; font-weight: 600; }
.dd-panel-about { width: 232px; }
.dd-list { display: flex; flex-direction: column; gap: 2px; }
.dd-link { display: block; padding: 10px 12px; border-radius: 10px; font-size: 14.5px; font-weight: 700; border: 2px solid transparent; }
.dd-link:hover { background: #fff; border-color: var(--ink); color: inherit; }

@media (max-width: 1120px) { .main-nav { display: none; } }
@media (min-width: 1121px) { .burger { display: none; } }
.mob-top { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 18px; }
.mob-home { display: block; font-family: 'Baloo 2', system-ui, sans-serif; font-weight: 800; font-size: 17px; }

/* ---------- Static page shells ---------- */
.page-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.page-h1 { font-size: clamp(30px, 5vw, 46px); font-weight: 800; letter-spacing: -.02em; line-height: 1.06; margin: 0 0 14px; }
.page-intro { font-size: clamp(15px, 2vw, 18px); opacity: .78; line-height: 1.6; margin: 0; }

.story { display: flex; flex-direction: column; gap: 34px; }
.story-h2 { font-size: 21px; font-weight: 800; margin: 0 0 8px; letter-spacing: -.01em; }
.story-block { border-left: 4px solid var(--accent); padding-left: 20px; }
.story-closer { margin-top: 36px; padding: 20px 22px; background: #fff; border: 2px solid var(--ink); border-radius: 14px; box-shadow: 4px 4px 0 var(--ink); }

.principles { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; counter-reset: none; }
.principle { display: flex; gap: 18px; align-items: flex-start; background: #fff; border: 2px solid var(--ink); border-radius: 16px; padding: 20px 22px; box-shadow: 5px 5px 0 var(--ink); }
.principle-n { flex: none; font-size: 15px; font-weight: 800; color: #fff; background: var(--accent); border: 2px solid var(--ink); width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.principle-h { font-size: 18px; font-weight: 800; margin: 0 0 5px; letter-spacing: -.01em; }
.principle-p { font-size: 15px; line-height: 1.65; opacity: .8; margin: 0; }

.legal { display: flex; flex-direction: column; gap: 26px; }
.legal-h2 { font-size: 18px; font-weight: 800; margin: 0 0 6px; }
.legal-block { padding-bottom: 4px; }
.inline-link { color: var(--accent); font-weight: 700; }

.contact-card { max-width: 480px; margin: 0 auto; }
.contact-label { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; opacity: .5; margin-bottom: 8px; }
.contact-mail { font-size: clamp(18px, 3vw, 24px); font-weight: 800; color: var(--accent); word-break: break-word; }
.contact-note { font-size: 14px; opacity: .7; line-height: 1.6; margin: 16px 0 0; }
.privacy-settings-link { cursor: pointer; }

@media (max-width: 780px) { .dd-grid { grid-template-columns: 1fr; } }
@media (max-width: 620px) {
  .principle { padding: 17px 16px; gap: 13px; }
  .story-block { padding-left: 15px; }
}
