:root {
  --font-family: "Sora", sans-serif;
  --font-size-base: 16.5px;
  --line-height-base: 1.6;

  --max-w: 1280px;
  --space-x: 2.65rem;
  --space-y: 1.5rem;
  --gap: 2.05rem;
  --space-section-y: calc(var(--space-y) * 2.4);
  --space-section-x: var(--space-x);
  --space-block: calc(var(--gap) * 1.5);
  --space-card: calc(var(--space-y) * .75);
  --font-size-sm: calc(var(--font-size-base) * .875);
  --font-size-md: var(--font-size-base);
  --font-size-lg: calc(var(--font-size-base) * 1.125);
  --font-size-h3: calc(var(--font-size-base) * 1.35);
  --font-size-h2: calc(var(--font-size-base) * 2);
  --font-size-h1: calc(var(--font-size-base) * 2.65);
  --motion-distance: calc(var(--gap) * var(--random-number));

  --radius-xl: 1.14rem;
  --radius-lg: 0.77rem;
  --radius-md: 0.51rem;
  --radius-sm: 0.33rem;

  --shadow-sm: 0 2px 5px rgba(0,0,0,0.18);
  --shadow-md: 0 12px 18px rgba(0,0,0,0.23);
  --shadow-lg: 0 28px 48px rgba(0,0,0,0.28);

  --overlay: rgba(10,10,20,0.7);
  --anim-duration: 490ms;
  --anim-ease: ease-in-out;
  --random-number: 2;

  --brand: #1e3a5f;
  --brand-contrast: #f0f9ff;
  --accent: #fbbf24;
  --accent-contrast: #1e1e2f;

  --neutral-0: #ffffff;
  --neutral-100: #f3f4f6;
  --neutral-300: #9ca3af;
  --neutral-600: #4b5563;
  --neutral-800: #1f2937;
  --neutral-900: #111827;

  --page-bg: #f8fafc;
  --page-fg: #1e293b;
  --muted-bg: #f1f5f9;
  --muted-fg: #334155;
  --card-bg: #ffffff;
  --card-fg: #1e293b;
  --card-border: #e2e8f0;
  --inverse-bg: #0f172a;
  --inverse-fg: #f8fafc;
  --primary-bg: #1e3a5f;
  --primary-fg: #f0f9ff;
  --primary-hover: #16324d;
  --accent-bg: #fbbf24;
  --accent-fg: #1e1e2f;
  --accent-hover: #f59e0b;
  --gradient-hero-bg: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
  --gradient-hero-fg: #f8fafc;
  --gradient-accent-bg: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  --gradient-accent-fg: #1e1e2f;

  --ring: #3b82f6;

  --link: #1e3a5f;
  --link-hover: #fbbf24;

  --btn-ghost-bg: transparent;
  --btn-ghost-bg-hover: color-mix(in srgb, currentColor 10%, transparent);
  --input-placeholder: rgba(255,255,255,0.55);
}
body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
*{box-sizing:border-box;}
a{color:inherit;}
.btn-primary,.btn.btn-primary{background:var(--primary-bg)!important;color:var(--primary-fg)!important;border-color:var(--primary-bg)!important;}
.btn-primary:hover,.btn.btn-primary:hover{background:var(--primary-hover)!important;color:var(--primary-fg)!important;border-color:var(--primary-hover)!important;}
.btn-outline-primary{color:var(--primary-bg)!important;border-color:var(--primary-bg)!important;}
.btn-outline-primary:hover{background:var(--primary-bg)!important;color:var(--primary-fg)!important;}
.bg-primary{background:var(--primary-bg)!important;color:var(--primary-fg)!important;}
.text-primary{color:var(--primary-bg)!important;}
.border-primary{border-color:var(--primary-bg)!important;}
.bg-light{background:var(--page-bg)!important;color:var(--page-fg)!important;}
.bg-dark{background:var(--inverse-bg)!important;color:var(--inverse-fg)!important;}

/* Header full-width */
  header {
    width: 100%;
    background: var(--page-bg);
    border-bottom: 1px solid var(--muted-bg);
  }

  .header-utility {
    background: var(--muted-bg);
    color: var(--muted-fg);
    font-size: var(--font-size-sm);
    padding: 0.25rem 0;
  }

  .header-utility-text {
    display: block;
    text-align: center;
  }

  .header-main {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: var(--space-y) 0;
  }

  .header-wrapper {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }

  .logo {
    font-size: var(--font-size-h2);
    font-weight: 700;
    text-decoration: none;
    color: var(--page-fg);
    line-height: 1.2;
  }

  .logo:hover {
    color: var(--link-hover);
  }

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }

  .nav-list a {
    text-decoration: none;
    color: var(--page-fg);
    font-size: var(--font-size-md);
    padding: 0.25rem 0;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover {
    color: var(--link-hover);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 4px;
  }

  .burger-line {
    display: block;
    width: 1.25rem;
    height: 2px;
    background: var(--page-fg);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  .burger[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .burger[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .burger {
      display: flex;
    }

    .nav {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--page-bg);
      border-top: 1px solid var(--muted-bg);
      box-shadow: var(--shadow-md);
      z-index: 100;
    }

    .nav.open {
      display: block;
    }

    .nav-list {
      flex-direction: column;
      padding: var(--space-y) var(--space-x);
      gap: var(--space-y);
    }

    .header-main {
      position: relative;
    }
  }

footer {
    background-color: #f5f5f5;
    color: #333;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    padding: 2rem 1rem;
    border-top: 1px solid #ddd;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
  .footer-logo {
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    color: #111;
    letter-spacing: 0.02em;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .footer-legal a {
    text-decoration: none;
    color: #555;
    font-size: 0.85rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #666;
    max-width: 700px;
    margin: 0.5rem auto;
  }
  .footer-contact {
    font-style: normal;
    font-size: 0.85rem;
    color: #444;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.3rem;
  }
  .footer-contact a {
    color: #444;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-copy {
    font-size: 0.8rem;
    color: #888;
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-legal {
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-contact {
      flex-direction: column;
      gap: 0.2rem;
    }
  }

.cookies{position:fixed;left:0;right:0;bottom:0;z-index:1200;}

    .cookies .inner{max-width:var(--max-w);margin:0 auto;padding:calc(var(--space-y) * 0.8) var(--space-x);background:var(--card-bg);border:1px solid var(--card-border);border-radius:var(--radius-lg) var(--radius-lg) 0 0;box-shadow:0 -8px 24px rgba(15, 23, 42,0.12);display:flex;flex-wrap:wrap;gap:12px var(--gap);align-items:center;justify-content:space-between;color:var(--card-fg);}

    .cookies .text{flex:1 1 420px;}

    .cookies .badge{display:inline-flex;align-items:center;padding:3px 8px;border-radius:999px;font-size:12px;font-weight:700;margin-bottom:6px;background:var(--muted-bg);color:var(--muted-fg);}

    .cookies .text strong{display:block;margin-bottom:4px;}

    .cookies .text p{margin:0;}

    .cookies .actions{display:flex;flex-wrap:wrap;gap:8px;}

    .cookies .actions button{border:1px solid var(--card-border);background:var(--card-bg);color:var(--card-fg);border-radius:var(--radius-sm);padding:8px 12px;cursor:pointer;}

    .cookies .actions button[data-choice='accept']{background:var(--accent-bg);color:var(--accent-fg);border-color:transparent;font-weight:700;}

.hero{padding:clamp(3.8rem,8vw,6.8rem) var(--space-x);background:var(--gradient-hero-bg);color:var(--gradient-hero-fg);}

    .hero .wrap{max-width:var(--max-w);margin:0 auto;display:flex;gap:1.5rem;align-items:center;flex-wrap:wrap;}

    .hero .image{flex:1 1 18rem;order:var(--random-number);}

    .hero .copy{flex:1 1 22rem;order:calc(3 - var(--random-number));}

    .hero .image img{display:block;width:100%;border-radius:var(--radius-xl);border:1px solid color-mix(in srgb, currentColor 18%, transparent);box-shadow:var(--shadow-lg);}

    .hero .copy p{margin:0;color:color-mix(in srgb, currentColor 78%, transparent);text-transform:uppercase;letter-spacing:.1em;font-size:.82rem;}

    .hero .copy h1{margin:.55rem 0 0;font-size:clamp(2.4rem,5vw,4.6rem);line-height:1;}

    .hero .copy strong{display:block;margin-top:.65rem;font-size:clamp(1.1rem,2vw,1.5rem);}

    .hero .copy span{display:block;margin-top:.9rem;}

    .hero .meta{margin-top:1rem;padding:.85rem 1rem;border-radius:var(--radius-md);background:color-mix(in srgb, currentColor 12%, transparent);}

.legal-quietpage{padding:calc(var(--space-y)*2.8) var(--space-x);background:var(--page-bg);color:var(--page-fg)}
.legal-quietpage .quietpage-wrap{max-width:var(--max-w);margin:0 auto;background:var(--card-bg);color:var(--card-fg);border:1px solid var(--card-border);border-radius:var(--radius-xl);padding:1.2rem;box-shadow:var(--shadow-sm)}
.legal-quietpage h1{margin:0;color:var(--card-fg);font-size:clamp(2rem,4.4vw,3.6rem);line-height:1.04}
.legal-quietpage .quietpage-date{color:var(--link);font-weight:700}
.legal-quietpage h2{margin:1.3rem 0 0;color:var(--card-fg);font-size:clamp(1.25rem,2.5vw,1.8rem);line-height:1.15}
.legal-quietpage p{margin:.75rem 0 0;color:var(--card-fg);opacity:.84;line-height:1.58}
.legal-quietpage ul{margin:.75rem 0 0;padding-left:1.2rem;color:var(--card-fg)}
.legal-quietpage li{margin:.35rem 0;line-height:1.5}

.showcase {
    padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
    background: var(--accent-bg);
    color: var(--accent-fg);
}

.showcase .wrap {
    max-width: var(--max-w);
    margin: 0 auto;
}

.showcase .head {
    max-width: 48rem;
    margin-bottom: 1.1rem;
}

.showcase .head p {
    margin: 0 0 .5rem;
    color: color-mix(in srgb, currentColor 76%, transparent);
}

.showcase h2 {
    margin: 0;
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    line-height: 1.04;
}

.showcase .mosaic {
    columns: 3 15rem;
    column-gap: 1rem;
}

.showcase figure {
    break-inside: avoid;
    margin: 0 0 1rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: color-mix(in srgb, currentColor 12%, transparent);
    border: 1px solid color-mix(in srgb, currentColor 18%, transparent);
}

.showcase figure:nth-child(2n) img {
    aspect-ratio: 4/5;
}

.showcase figure:nth-child(3n) img {
    aspect-ratio: 16/10;
}

.showcase img {
    display: block;
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.showcase figcaption {
    padding: 1rem;
}

.showcase span {
    font-size: .82rem;
    color: color-mix(in srgb, currentColor 74%, transparent);
}

.showcase h3 {
    margin: .35rem 0;
    font-size: 1.12rem;
}

.showcase p {
    margin: 0;
    color: color-mix(in srgb, currentColor 84%, transparent);
}

.scope{padding:calc(var(--space-y)*2.7) var(--space-x);background:var(--muted-bg);color:var(--muted-fg);}
.scope .shell{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:280px 1fr;gap:var(--gap);}
.scope .headline{position:sticky;top:.8rem;align-self:start;padding:1rem;border:1px solid var(--card-border);border-radius:var(--radius-lg);background:var(--card-bg);color:var(--card-fg);}
.scope h2{margin:0 0 .5rem;font-size:clamp(1.7rem,3vw,2.3rem);}
.scope .headline p{margin:0;}
.scope .list{list-style:none;margin:0;padding:0;display:grid;gap:.62rem;}
.scope .list li{display:flex;justify-content:space-between;gap:1rem;align-items:flex-start;padding:.9rem;border:1px dashed var(--card-border);border-radius:var(--radius-md);background:var(--card-bg);color:var(--card-fg);}
.scope h3{margin:0 0 .2rem;}
.scope li p{margin:0;}
.scope a{white-space:nowrap;text-decoration:none;font-weight:700;}
@media (max-width:860px){.scope .shell{grid-template-columns:1fr;}.scope .headline{position:static;}.scope .list li{display:grid;}}

.faq-switchboard {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
  padding: var(--space-section-y) var(--space-section-x);
}
.faq-switchboard .board {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
  gap: var(--gap);
}
.faq-switchboard .questions,
.faq-switchboard .answer {
  background: var(--card-bg);
  color: var(--card-fg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  padding: var(--space-card);
}
.faq-switchboard .questions {
  display: grid;
  gap: calc(var(--space-card) * .5);
}
.faq-switchboard .question {
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  background: var(--page-bg);
  color: var(--page-fg);
  padding: var(--space-card);
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.faq-switchboard .question.is-active {
  background: var(--accent-bg);
  color: var(--accent-fg);
  border-color: var(--accent-bg);
}
.faq-switchboard .question span {
  display: block;
  font-size: var(--font-size-sm);
}
.faq-switchboard .question strong {
  display: block;
  font-size: var(--font-size-lg);
}
.faq-switchboard .answer {
  display: grid;
  align-content: center;
}
.faq-switchboard .pane {
  display: none;
  animation: faq-switchboard-show calc(var(--anim-duration) * 2) var(--anim-ease) both;
}
.faq-switchboard .pane.is-active {
  display: block;
}
.faq-switchboard h3,
.faq-switchboard p {
  margin: 0;
}
.faq-switchboard h3 {
  font-size: var(--font-size-h2);
  line-height: 1.04;
  margin-bottom: var(--space-card);
}
@keyframes faq-switchboard-show {
  from { opacity: 0; transform: translateY(calc(var(--motion-distance) * .2)); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 760px) {
  .faq-switchboard .board {
    grid-template-columns: 1fr;
  }
}

.block-post-list{color:var(--page-fg);background:var(--page-bg);padding:clamp(16px,3vw,40px);}

    .block-post-list .c{max-width:var(--max-w);margin:0 auto;}

    .block-post-list .h{text-align:center;margin-bottom:var(--space-y);}

    .block-post-list h1{font-size:clamp(28px,5vw,48px);margin:0 0 0.5rem;}

    .block-post-list .categories{display:flex;gap:0.5rem;flex-wrap:wrap;margin-bottom:var(--space-y);justify-content:center;}

    .block-post-list .category{padding:0.5rem 1rem;border-radius:var(--radius-md);background:var(--card-bg);color:var(--card-fg);text-decoration:none;transition:all var(--anim-duration) var(--anim-ease);}

    .block-post-list .category:hover{background:var(--primary-bg);color:var(--primary-fg);}

    .block-post-list .list{display:flex;flex-direction:column;gap:var(--space-x);}

    .block-post-list .item{background:var(--card-bg);border:1px solid var(--ring);border-radius:var(--radius-lg);padding:clamp(16px,2vw,24px);box-shadow:var(--shadow-sm);transition:all var(--anim-duration) var(--anim-ease);color:var(--card-fg);}

    .block-post-list .item:hover{box-shadow:var(--shadow-md);transform:translateX(4px);}

    .block-post-list .meta{display:flex;gap:1rem;font-size:0.875rem;margin-bottom:0.75rem;}

    .block-post-list h3{margin:0 0 0.5rem;font-size:clamp(18px,2.2vw,22px);}

    .block-post-list h3 a{text-decoration:none;}

    .block-post-list h3 a:hover{}

    .block-post-list p{margin:0;}

.subscribe{padding:clamp(56px,8vw,96px) clamp(16px,3vw,36px);background:var(--gradient-hero-bg);color:var(--gradient-hero-fg);}
    .subscribe .wrap{max-width:var(--max-w);margin:0 auto;}
    .subscribe .head{margin-bottom:14px;text-align:center;}
    .subscribe h2{margin:0;font-size:clamp(28px,4vw,40px);}
    .subscribe .head p{margin:10px auto 0;max-width:64ch;opacity:.92;}
    .subscribe .grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:10px;}
    .subscribe .grid article{border:1px solid color-mix(in srgb, currentColor 32%, transparent);border-radius:var(--radius-md);background:color-mix(in srgb, currentColor 12%, transparent);padding:12px;}
    .subscribe .grid h3{margin:0 0 7px;}
    .subscribe .grid p{margin:0;}
    .subscribe .grid a{display:inline-block;margin-top:8px;text-decoration:underline;}
    .subscribe .main{display:inline-block;margin-top:14px;text-decoration:none;padding:10px 16px;border-radius:var(--radius-md);background:var(--card-bg);color:var(--card-fg);}

.inquiry{padding:calc(var(--space-y)*2.85) var(--space-x);color:var(--page-fg);background:var(--page-bg);}
.inquiry .max{max-width:var(--max-w);margin:0 auto;}
.inquiry .head{margin-bottom:.9rem;}
.inquiry h2{margin:0;font-size:clamp(1.78rem,3.3vw,2.5rem);}
.inquiry .head p{margin:.4rem 0 0;}
.inquiry .columns{display:grid;grid-template-columns:1fr 1fr;gap:.7rem;padding:.7rem;background:var(--muted-bg);border-radius:var(--radius-xl);border:1px solid var(--card-border);color:var(--muted-fg);}
.inquiry .col{padding:.8rem;border-radius:var(--radius-lg);background:var(--card-bg);display:grid;gap:.62rem;color:var(--card-fg);}
.inquiry label{display:grid;gap:.25rem;}
.inquiry span{font-size:.82rem;font-weight:700;}
.inquiry input,.inquiry textarea{width:100%;padding:.76rem .8rem;border-radius:var(--radius-sm);border:1px solid var(--card-border);font:inherit;color:var(--card-fg);background:var(--card-bg);}
.inquiry textarea{min-height:170px;resize:vertical;}
.inquiry button{padding:.82rem 1rem;border:0;border-radius:var(--radius-md);background:var(--gradient-hero-bg);color:var(--gradient-hero-fg);font-weight:700;cursor:pointer;transition:transform var(--anim-duration) var(--anim-ease);}
.inquiry button:hover{transform:translateY(-2px);}
@media (max-width:860px){.inquiry .columns{grid-template-columns:1fr;}}

.panel-map{padding:clamp(3.5rem,8vw,6rem) var(--space-x);background:var(--gradient-hero-bg);color:var(--gradient-hero-fg);}

    .panel-map .wrap{max-width:var(--max-w);margin:0 auto;}

    .panel-map .band{margin-bottom:1rem;display:flex;justify-content:space-between;align-items:end;gap:1rem;flex-wrap:wrap;}

    .panel-map .band h2{margin:0;font-size:clamp(2rem,4vw,3rem);}

    .panel-map .band p{margin:0;color:color-mix(in srgb, currentColor 82%, transparent);}

    .panel-map .shell{display:grid;grid-template-columns:1.2fr .8fr;gap:1rem;}

    .panel-map .shell iframe{display:block;width:100%;min-height:24rem;border-radius:var(--radius-xl);border:1px solid color-mix(in srgb, currentColor 18%, transparent);}

    .panel-map .cards{display:grid;gap:.75rem;}

    .panel-map .cards article{padding:.95rem;border-radius:var(--radius-md);background:color-mix(in srgb, currentColor 12%, transparent);border:1px solid color-mix(in srgb, currentColor 18%, transparent);}

    .panel-map .cards p{margin:.35rem 0 0;color:color-mix(in srgb, currentColor 84%, transparent);}

    @media (max-width: 840px){.panel-map .shell{grid-template-columns:1fr;}
    }

.address{padding:calc(var(--space-y)*2.7) var(--space-x);color:var(--page-fg);background:var(--page-bg);}
.address .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:.68rem;}
.address h2{margin:0;font-size:clamp(1.8rem,3.4vw,2.55rem);}
.address>div>p,.address .shell>p{margin:0;}
.address .band{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.65rem;}
.address .pane{padding:.9rem 1rem;border-radius:var(--radius-lg);background:var(--card-bg);border:1px solid var(--card-border);color:var(--card-fg);}
.address .band-alt .pane{background:color-mix(in srgb,var(--card-bg) 82%,var(--accent-bg) 18%);color:var(--card-fg);}
.address h3{margin:0 0 .25rem;font-size:1rem;}
.address .pane p{margin:0;}
.address a{text-decoration:none;}
.address .links{list-style:none;margin:.1rem 0 0;padding:0;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.55rem;}
.address .links li a{display:block;padding:.62rem .75rem;border-radius:var(--radius-md);background:var(--muted-bg);border:1px solid var(--card-border);color:var(--muted-fg);}
@media (max-width:760px){.address .band,.address .links{grid-template-columns:1fr;}}

.policy-snowledger{padding:calc(var(--space-y)*2.75) var(--space-x);background:var(--muted-bg);color:var(--muted-fg);}
.policy-snowledger .snowledger-wrap{max-width:920px;margin:0 auto;}.policy-snowledger .header{margin-bottom:1rem;}.policy-snowledger h2{margin:0;font-size:clamp(1.9rem,3.5vw,2.85rem);line-height:1.06;}.policy-snowledger .header p{margin:.75rem 0 0;color:var(--neutral-600);}.policy-snowledger .snowledger-stack{display:grid;gap:.55rem;}.policy-snowledger details{background:var(--card-bg);border:1px solid var(--card-border);border-radius:var(--radius-md);padding:.85rem;color:var(--card-fg);}.policy-snowledger summary{cursor:pointer;font-weight:700;}.policy-snowledger details p{margin:.5rem 0 0;color:var(--neutral-600);}

.terms-indexsheet{padding:calc(var(--space-y)*2.75) var(--space-x);background:var(--muted-bg);color:var(--muted-fg);}
.terms-indexsheet .indexsheet-wrap{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:.8fr 1.2fr;gap:var(--gap);}.terms-indexsheet h2{margin:0;font-size:clamp(1.9rem,3.5vw,2.85rem);line-height:1.06;}.terms-indexsheet .header p{margin:.75rem 0 0;color:var(--neutral-600);}.terms-indexsheet .indexsheet-wrap>div{display:grid;gap:.6rem;}.terms-indexsheet .article{background:var(--card-bg);border:1px solid var(--card-border);border-radius:var(--radius-lg);padding:.9rem;color:var(--card-fg);}.terms-indexsheet h3{margin:0 0 .3rem;font-size:1rem;}.terms-indexsheet .article p{margin:0;color:var(--neutral-600);}
@media (max-width:800px){.terms-indexsheet .indexsheet-wrap{grid-template-columns:1fr;}}

.received{padding:calc(var(--space-y)*2.8) var(--space-x);color:var(--page-fg);background:var(--page-bg);}
.received .shell{max-width:880px;margin:0 auto;display:grid;gap:.65rem;text-align:center;}
.received h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.75rem);}
.received .sub{margin:0;}
.received .next,.received .contact{padding:.9rem;border-radius:var(--radius-lg);background:var(--card-bg);border:1px solid var(--card-border);color:var(--card-fg);}
.received h3{margin:0 0 .22rem;font-size:1rem;}
.received p{margin:0;}

.error-page{padding:clamp(56px,10vw,112px) 20px;background:var(--muted-bg);color:var(--muted-fg);}

    .error-page .box{max-width:760px;margin:0 auto;text-align:center;border-top:6px solid var(--accent-bg);border-radius:var(--radius-lg);background:var(--card-bg);border-left:1px solid var(--card-border);border-right:1px solid var(--card-border);border-bottom:1px solid var(--card-border);padding:clamp(28px,4vw,46px);color:var(--card-fg);}

    .error-page h1{margin:0;font-size:clamp(32px,6vw,56px);}

    .error-page p{margin:10px 0 0;}

    .error-page a{display:inline-block;margin-top:16px;padding:9px 14px;border-radius:999px;text-decoration:none;border:1px solid var(--card-border);}