/* ============================================================
   OpenToonz Official Website — Shared Stylesheet
   Palette derived from official logo:
     --leaf:   #5FA05F  (logo green)
     --forest: #2D6B2D  (logo shadow / accent)
     --cream:  #F4F8F2  (soft tint background)
     --ink:    #1A2B1A  (deep ink for body text)
   Style: flat, modern, professional. No emoji.
   ============================================================ */

:root {
  --leaf: #5FA05F;
  --leaf-700: #4E8A4E;
  --forest: #2D6B2D;
  --forest-900: #1F4A1F;
  --cream: #F4F8F2;
  --cream-200: #E6EFE3;
  --ink: #1A2B1A;
  --gray-700: #3F4A3F;
  --gray-500: #6B756B;
  --gray-300: #C8D2C5;
  --gray-100: #EEF1EC;
  --white: #FFFFFF;
  --amber: #C68A2E; /* warm accent for subtle highlights, used sparingly */

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 18px;

  --shadow-sm: 0 1px 2px rgba(31,74,31,.06), 0 1px 3px rgba(31,74,31,.08);
  --shadow: 0 4px 14px rgba(31,74,31,.08), 0 2px 6px rgba(31,74,31,.06);
  --shadow-lg: 0 18px 50px rgba(31,74,31,.14), 0 8px 24px rgba(31,74,31,.10);

  --container: 1180px;
  --container-narrow: 880px;

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "SF Mono", "JetBrains Mono", Consolas, "Liberation Mono", monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--forest); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--leaf); }

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--forest-900);
  margin: 0 0 .6em;
  letter-spacing: -.01em;
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1.1em; }

ul, ol { margin: 0 0 1.1em; padding-left: 1.3em; }
li { margin-bottom: .4em; }

code, pre { font-family: var(--font-mono); }

/* ------------------ Layout helpers ------------------ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding: 84px 0; }
.section--tight { padding: 56px 0; }
.section--tint { background: var(--cream); }
.section--dark { background: var(--forest-900); color: #E8F0E5; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark a { color: #B6D9A8; }
.section--dark a:hover { color: #fff; }

.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-head .eyebrow {
  display: inline-block;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--leaf);
  font-weight: 700;
  margin-bottom: 14px;
}
.section-head p { color: var(--gray-700); font-size: 1.05rem; }

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ------------------ Top navigation ------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--gray-100);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -.01em;
  color: var(--forest-900);
}
.brand__logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: block;
  background: var(--leaf);
}
.brand__name { white-space: nowrap; }
.brand__name small {
  display: block;
  font-size: .65rem;
  font-weight: 500;
  color: var(--gray-500);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 2px;
}

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 500;
  color: var(--gray-700);
}
.main-nav a:hover { background: var(--cream); color: var(--forest); }
.main-nav a.is-active { color: var(--forest); font-weight: 700; }

.nav-cta { margin-left: 12px; }

@media (max-width: 820px) {
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; }
}
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--gray-100);
  background: #fff;
  border-radius: 10px;
  align-items: center; justify-content: center;
  cursor: pointer;
}
.nav-toggle span {
  width: 18px; height: 2px; background: var(--forest);
  position: relative; display: block;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--forest);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.mobile-menu {
  display: none;
  background: #fff;
  border-bottom: 1px solid var(--gray-100);
  padding: 12px 24px 20px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 12px 8px;
  font-size: 1rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}
.mobile-menu a:last-child { border-bottom: 0; }

/* ------------------ Buttons ------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: .98rem;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .18s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--leaf);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--forest);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn--ghost {
  background: transparent;
  color: var(--forest);
  border-color: var(--gray-300);
}
.btn--ghost:hover {
  border-color: var(--leaf);
  background: var(--cream);
}
.btn--light {
  background: #fff;
  color: var(--forest);
}
.btn--light:hover { background: var(--cream); }
.btn--lg { padding: 16px 32px; font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; justify-content: center; }

.btn .icon { width: 18px; height: 18px; }

/* ------------------ Hero ------------------ */
.hero {
  position: relative;
  padding: 84px 0 64px;
  background:
    radial-gradient(900px 500px at 12% -10%, rgba(95,160,95,.20), transparent 60%),
    radial-gradient(700px 500px at 100% 0%, rgba(45,107,45,.18), transparent 60%),
    linear-gradient(180deg, #F4F8F2 0%, #FFFFFF 70%);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid var(--cream-200);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.hero__eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--leaf); }
.hero h1 { margin-bottom: 22px; }
.hero h1 .accent { color: var(--leaf); }
.hero__lede { font-size: 1.12rem; color: var(--gray-700); max-width: 560px; margin-bottom: 30px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 26px; color: var(--gray-500); font-size: .88rem; }
.hero__meta strong { color: var(--forest); font-weight: 700; }

.hero__visual {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #2D6B2D 0%, #1F4A1F 100%);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero__visual::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(400px 200px at 80% 10%, rgba(255,255,255,.10), transparent 60%);
  pointer-events: none;
}
.hero__screen {
  background: #FAFCF8;
  border-radius: 10px;
  padding: 18px;
  position: relative;
  z-index: 1;
}
.hero__screen .toolbar {
  display: flex; gap: 6px;
  border-bottom: 1px solid var(--gray-100);
  padding-bottom: 10px;
  margin-bottom: 14px;
}
.hero__screen .toolbar i {
  width: 10px; height: 10px; border-radius: 50%;
  background: #C8D2C5; display: inline-block;
}
.hero__screen .toolbar i:nth-child(1) { background: #E0A0A0; }
.hero__screen .toolbar i:nth-child(2) { background: #E0C880; }
.hero__screen .toolbar i:nth-child(3) { background: #9CC890; }

.hero__screen .panels {
  display: grid;
  grid-template-columns: 60px 1fr 80px;
  gap: 10px;
  height: 260px;
}
.hero__screen .panel {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 6px;
  padding: 8px;
}
.hero__screen .canvas {
  background:
    repeating-linear-gradient(0deg, transparent 0 24px, rgba(95,160,95,.06) 24px 25px),
    repeating-linear-gradient(90deg, transparent 0 24px, rgba(95,160,95,.06) 24px 25px),
    #fff;
  position: relative;
}
.hero__screen .canvas .sketch {
  position: absolute;
  width: 60%; height: 70%;
  left: 20%; top: 15%;
  border-radius: 50% 50% 45% 55% / 60% 60% 40% 40%;
  background: linear-gradient(135deg, #5FA05F, #2D6B2D);
  opacity: .9;
}
.hero__screen .canvas .sketch::after {
  content: "";
  position: absolute;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  top: 30%; left: 28%;
  box-shadow: 28px 0 0 #fff;
}

.hero__stats {
  display: flex;
  justify-content: space-around;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
}
.hero__stats strong { display: block; color: #fff; font-size: 1.4rem; font-weight: 800; }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 480px; margin: 0 auto; }
  .hero { padding: 56px 0 48px; }
}

/* ------------------ Cards ------------------ */
.card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  height: 100%;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--cream-200);
}
.card__icon {
  width: 48px; height: 48px;
  display: inline-flex;
  align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--cream);
  color: var(--forest);
  margin-bottom: 18px;
}
.card__icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--gray-700); font-size: .96rem; margin-bottom: 0; }

/* ------------------ Feature rows ------------------ */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 84px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row--reverse .feature-row__media { order: 2; }
.feature-row__media {
  background: linear-gradient(160deg, var(--cream) 0%, #fff 100%);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  min-height: 320px;
  box-shadow: var(--shadow-sm);
}
.feature-row__body h2 { margin-bottom: 16px; }
.feature-row__body p { color: var(--gray-700); }
.feature-row__list { list-style: none; padding: 0; margin: 18px 0 0; }
.feature-row__list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--gray-700);
  font-size: .98rem;
}
.feature-row__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 4px rgba(95,160,95,.18);
}

@media (max-width: 860px) {
  .feature-row { grid-template-columns: 1fr; gap: 32px; margin-bottom: 56px; }
  .feature-row--reverse .feature-row__media { order: 0; }
}

/* ------------------ Stats strip ------------------ */
.stats-strip {
  background: var(--forest-900);
  color: #fff;
  padding: 56px 0;
}
.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}
.stats-strip__item .num {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
}
.stats-strip__item .label {
  margin-top: 8px;
  color: #B6D9A8;
  font-size: .92rem;
}
@media (max-width: 680px) {
  .stats-strip__grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
}

/* ------------------ Tables ------------------ */
.table-wrap { overflow-x: auto; }
table.spec-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: .96rem;
}
.spec-table th, .spec-table td {
  padding: 16px 22px;
  text-align: left;
  border-bottom: 1px solid var(--gray-100);
  vertical-align: top;
}
.spec-table thead th {
  background: var(--cream);
  color: var(--forest-900);
  font-weight: 700;
  border-bottom: 2px solid var(--cream-200);
}
.spec-table tbody tr:last-child td { border-bottom: 0; }
.spec-table tbody tr:hover { background: var(--cream); }
.spec-table .platform { font-weight: 600; color: var(--forest); white-space: nowrap; }

/* ------------------ Timeline ------------------ */
.timeline { position: relative; padding-left: 28px; }
.timeline::before {
  content: ""; position: absolute; left: 6px; top: 6px; bottom: 6px;
  width: 2px; background: var(--cream-200);
}
.timeline__item { position: relative; padding-bottom: 36px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__dot {
  position: absolute; left: -28px; top: 4px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--leaf);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--leaf);
}
.timeline__date {
  font-size: .82rem;
  font-weight: 700;
  color: var(--leaf);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.timeline__title { margin: 4px 0 6px; font-size: 1.15rem; }
.timeline__desc { color: var(--gray-700); margin: 0; }

/* ------------------ FAQ ------------------ */
.faq-item {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item__q {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 20px 24px;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--forest-900);
  cursor: pointer;
  position: relative;
  padding-right: 50px;
  font-family: inherit;
}
.faq-item__q::after {
  content: "";
  position: absolute;
  right: 24px; top: 50%;
  transform: translateY(-50%) rotate(0);
  width: 10px; height: 10px;
  border-right: 2px solid var(--leaf);
  border-bottom: 2px solid var(--leaf);
  transform-origin: center;
  transition: transform .2s ease;
  transform: translateY(-65%) rotate(45deg);
}
.faq-item.open .faq-item__q::after {
  transform: translateY(-50%) rotate(-135deg);
}
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
.faq-item.open .faq-item__a { max-height: 600px; }
.faq-item__a-inner {
  padding: 0 24px 22px;
  color: var(--gray-700);
}

/* ------------------ CTA banner ------------------ */
.cta-banner {
  background:
    radial-gradient(600px 400px at 100% 0%, rgba(255,255,255,.08), transparent 60%),
    linear-gradient(135deg, var(--forest) 0%, var(--forest-900) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-banner h2 { color: #fff; margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,.85); max-width: 580px; margin: 0 auto 28px; }
.cta-banner .btn--primary { background: #fff; color: var(--forest); }
.cta-banner .btn--primary:hover { background: var(--cream); }
.cta-banner .btn--ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.cta-banner .btn--ghost:hover { background: rgba(255,255,255,.1); }

@media (max-width: 680px) {
  .cta-banner { padding: 40px 24px; }
}

/* ------------------ Page hero (inner pages) ------------------ */
.page-hero {
  padding: 72px 0 56px;
  background:
    radial-gradient(700px 360px at 100% 0%, rgba(95,160,95,.18), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, #fff 100%);
  border-bottom: 1px solid var(--gray-100);
}
.page-hero__eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--leaf);
  margin-bottom: 14px;
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { color: var(--gray-700); max-width: 720px; font-size: 1.08rem; }

.breadcrumb {
  font-size: .85rem;
  color: var(--gray-500);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--gray-500); }
.breadcrumb a:hover { color: var(--forest); }
.breadcrumb .sep { margin: 0 8px; }

/* ------------------ Footer ------------------ */
.site-footer {
  background: var(--forest-900);
  color: rgba(255,255,255,.78);
  padding: 64px 0 28px;
  font-size: .92rem;
}
.site-footer a { color: rgba(255,255,255,.78); }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer-brand .brand { color: #fff; margin-bottom: 14px; }
.footer-brand p { color: rgba(255,255,255,.7); max-width: 360px; }
.footer-col h4 {
  color: #fff;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255,255,255,.55);
  font-size: .82rem;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ------------------ Download modal ------------------ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,30,15,.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility .22s ease;
}
.modal-overlay.open { opacity: 1; visibility: visible;  left: 0;
  right: 0;
  top: 0;
  bottom: 0;}
button { outline: none } 
.modal {
  background: #fff;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 720px;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(.98);
  transition: transform .26s cubic-bezier(.2,.8,.2,1);
  overflow: hidden;
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal__header {
  padding: 24px 28px;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal__header h3 { margin: 0; font-size: 1.25rem; }
.modal__header .brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest-900);
}
.modal__header .brand-badge img { width: 28px; height: 28px; border-radius: 6px; }
.modal__close {
  width: 36px; height: 36px;
  border: 0;
  background: var(--cream);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--forest);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .15s ease;
}
.modal__close:hover { background: var(--cream-200); }
.modal__body { padding: 28px; }
.modal__body p.intro { color: var(--gray-700); margin-top: 0; }
.qr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}
.qr-card {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  background: var(--cream);
  transition: all .2s ease;
}
.qr-card:hover { border-color: var(--leaf); background: #fff; }
.qr-card img {
  width: 200px; height: 200px;
  margin: 0 auto 14px;
  border-radius: 8px;
  background: #fff;
  padding: 8px;
  box-shadow: var(--shadow-sm);
}
.qr-card .platform {
  font-weight: 700;
  color: var(--forest-900);
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.qr-card .hint { color: var(--gray-500); font-size: .84rem; }

.modal__footer {
  padding: 18px 28px;
  border-top: 1px solid var(--gray-100);
  background: var(--cream);
  font-size: .84rem;
  color: var(--gray-500);
  text-align: center;
}
.modal__footer a { color: var(--forest); font-weight: 600; }

@media (max-width: 560px) {
  .qr-grid { grid-template-columns: 1fr; }
  .modal__header { padding: 18px 20px; }
  .modal__body { padding: 20px; }
}

/* ------------------ Badges & chips ------------------ */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: var(--cream);
  border: 1px solid var(--cream-200);
  color: var(--forest);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
}
.chip--solid { background: var(--leaf); color: #fff; border-color: transparent; }

/* ------------------ Notice / callout ------------------ */
.callout {
  background: var(--cream);
  border-left: 4px solid var(--leaf);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  margin: 24px 0;
  color: var(--gray-700);
  font-size: .96rem;
}
.callout strong { color: var(--forest-900); }

/* ------------------ Utility ------------------ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-lg { margin-top: 40px; }
.mb-lg { margin-bottom: 40px; }
.hidden-mobile { display: initial; }
@media (max-width: 680px) { .hidden-mobile { display: none; } }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
