:root {
  color-scheme: light;
  --sky: #69b9ff;
  --town-green: #67c587;
  --sun: #ffd66b;
  --coral: #ff8a6b;
  --ink: #24324a;
  --paper: #f7fbff;
  --cloud: #dce8f4;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(36, 50, 74, 0.12);
  --shadow-soft: 0 10px 24px rgba(36, 50, 74, 0.08);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Hiragino Sans', 'Yu Gothic', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top, rgba(105, 185, 255, 0.18), transparent 36%),
    linear-gradient(180deg, #eff7ff 0%, #f9fcff 42%, #f7fbff 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 1000;
  background: var(--white);
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}

.site-header,
main,
.site-footer {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 12px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--sky), var(--town-green));
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 800;
  text-transform: lowercase;
  box-shadow: var(--shadow-soft);
}

.eyebrow {
  margin: 0 0 4px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(36, 50, 74, 0.62);
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-size: 1.05rem;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
  font-size: 0.95rem;
  color: rgba(36, 50, 74, 0.8);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
  padding: 24px 0 40px;
}

.hero-copy h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.hero-copy h2 span {
  color: var(--sky);
}

.hero-text {
  font-size: 1.03rem;
  line-height: 1.8;
  max-width: 42rem;
  color: rgba(36, 50, 74, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(255, 138, 107, 0.25);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  border: 1px solid rgba(36, 50, 74, 0.1);
}

.button.is-disabled,
.button[aria-disabled='true'] {
  opacity: 0.55;
  pointer-events: none;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points li,
.feature-tag {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(36, 50, 74, 0.08);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.brand-visual {
  width: min(100%, 430px);
  min-height: 360px;
  padding: 48px;
  border: 1px solid rgba(36, 50, 74, 0.12);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(232, 246, 255, 0.94));
  box-shadow: 0 24px 56px rgba(36, 50, 74, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-visual-mark {
  width: 88px;
  height: 88px;
  margin-bottom: 30px;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--sky), var(--town-green));
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  box-shadow: 0 14px 28px rgba(105, 185, 255, 0.24);
}

.brand-visual-label {
  margin-bottom: 14px;
  color: rgba(36, 50, 74, 0.58);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-visual-title {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.brand-visual-copy {
  margin-bottom: 0;
  color: rgba(36, 50, 74, 0.72);
  line-height: 1.8;
}

.pico-card {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 360px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(36, 50, 74, 0.08);
  border-radius: 28px;
  padding: 22px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  z-index: 2;
}

.pico-bubble {
  background: #fff7ef;
  border: 1px solid rgba(255, 138, 107, 0.2);
  color: #5a351f;
  border-radius: 20px;
  padding: 12px 14px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.pico-face {
  width: 170px;
  height: 170px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff7db 0%, #ffeeba 100%);
  position: relative;
  box-shadow: inset 0 -10px 30px rgba(255, 214, 107, 0.35);
}

.pico-eye {
  position: absolute;
  top: 62px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--ink);
}

.pico-eye:first-child {
  left: 52px;
}

.pico-eye:nth-child(2) {
  right: 52px;
}

.pico-mouth {
  position: absolute;
  left: 50%;
  bottom: 48px;
  width: 48px;
  height: 24px;
  border-bottom: 5px solid var(--ink);
  border-radius: 0 0 48px 48px;
  transform: translateX(-50%);
}

.pico-title {
  text-align: center;
  font-weight: 800;
  font-size: 1.06rem;
}

.pico-subtitle {
  text-align: center;
  color: rgba(36, 50, 74, 0.68);
  font-size: 0.95rem;
}

.hero-town {
  position: absolute;
  left: 0;
  right: 40px;
  bottom: 0;
  height: 280px;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0.5), rgba(255,255,255,0.9));
  border: 1px solid rgba(36, 50, 74, 0.08);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(36, 50, 74, 0.05);
}

.cloud::before,
.cloud::after {
  content: '';
  position: absolute;
  background: inherit;
  border-radius: inherit;
}

.c1 {
  width: 98px;
  height: 34px;
  top: 34px;
  left: 28px;
}

.c1::before {
  width: 38px;
  height: 38px;
  left: 12px;
  top: -16px;
}

.c1::after {
  width: 44px;
  height: 44px;
  left: 48px;
  top: -20px;
}

.c2 {
  width: 120px;
  height: 38px;
  top: 70px;
  right: 58px;
}

.c2::before {
  width: 46px;
  height: 46px;
  left: 20px;
  top: -18px;
}

.c2::after {
  width: 52px;
  height: 52px;
  left: 58px;
  top: -24px;
}

.c3 {
  width: 82px;
  height: 28px;
  top: 18px;
  right: 110px;
}

.c3::before {
  width: 32px;
  height: 32px;
  left: 10px;
  top: -14px;
}

.c3::after {
  width: 36px;
  height: 36px;
  left: 38px;
  top: -17px;
}

.town-hill {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -30px;
  height: 150px;
  background: linear-gradient(180deg, rgba(103, 197, 135, 0.6), rgba(103, 197, 135, 0.9));
  border-radius: 50% 50% 0 0;
}

.town-house {
  position: absolute;
  bottom: 38px;
  width: 72px;
  height: 58px;
  background: var(--white);
  border-radius: 16px 16px 10px 10px;
  box-shadow: 0 10px 24px rgba(36, 50, 74, 0.08);
}

.town-house::before {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  top: -20px;
  border-left: 26px solid transparent;
  border-right: 26px solid transparent;
  border-bottom: 22px solid var(--coral);
}

.h1 {
  left: 24px;
}

.h2 {
  left: 112px;
  bottom: 52px;
}

.h3 {
  right: 34px;
  bottom: 46px;
}

.section {
  padding: 36px 0;
}

.section-head {
  margin-bottom: 18px;
}

.section-head h3,
.split h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 6px;
}

.promise-grid,
.feature-grid,
.usecase-row {
  display: grid;
  gap: 16px;
}

.promise-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.feature-card,
.usecase-card,
.pico-rules,
.faq details,
.contact {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(36, 50, 74, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.info-card,
.feature-card,
.usecase-card,
.pico-rules {
  padding: 20px;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card h4,
.info-card h4,
.usecase-card h4,
.pico-rules h4 {
  margin-bottom: 8px;
}

.feature-card p,
.info-card p,
.usecase-card p,
.pico-rules li,
.faq p,
.contact p {
  line-height: 1.8;
  color: rgba(36, 50, 74, 0.86);
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: start;
}

.pico-rules ul {
  margin: 0;
  padding-left: 20px;
}

.usecase-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.faq details {
  padding: 16px 18px;
  margin-bottom: 12px;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  margin: 44px 0 50px;
}

.site-footer {
  padding: 16px 0 28px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(36, 50, 74, 0.72);
  font-size: 0.94rem;
}

.feature-tag {
  display: inline-flex;
  margin-bottom: 12px;
  font-size: 0.82rem;
  font-weight: 800;
}

@media (max-width: 960px) {
  .site-header,
  .hero,
  .split,
  .contact,
  .site-footer {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 12px;
  }

  .hero-visual {
    width: 100%;
    min-height: 460px;
  }

  .pico-card {
    width: min(100%, 340px);
  }

  .promise-grid,
  .feature-grid,
  .usecase-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 12px;
  }

  .top-nav {
    justify-content: flex-start;
  }

  .hero {
    gap: 20px;
  }

  .hero-copy h2 {
    font-size: 2.35rem;
  }

  .hero-actions,
  .hero-points {
    width: 100%;
  }

  .hero-visual {
    min-height: 420px;
  }

  .pico-card {
    position: relative;
    inset: auto;
    width: 100%;
    margin-bottom: 16px;
  }

  .hero-town {
    position: relative;
    right: auto;
    left: auto;
    height: 240px;
  }

  .promise-grid,
  .feature-grid,
  .usecase-row {
    grid-template-columns: 1fr;
  }

  .contact,
  .site-footer {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }

  .button:hover {
    transform: none;
  }
}

/* Modern official-site layer: quiet surfaces, generous whitespace, Pico as brand art. */
:root {
  --ink: #172033;
  --muted: #6d7788;
  --line: #e5eaf0;
  --paper: #f7fbff;
  --sky-soft: #e8f4ff;
  --radius-lg: 28px;
  --max: 1180px;
}

body {
  background: #fbfcfe;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Hiragino Sans', 'Yu Gothic', sans-serif;
}

.site-header {
  align-items: center;
  padding: 26px 0;
}

.brand-lockup {
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  box-shadow: none;
}

.brand-name {
  display: block;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.top-nav {
  gap: 22px;
  font-size: 0.88rem;
  color: var(--muted);
}

.top-nav a,
.text-link,
.faq-list a {
  transition: color 160ms ease;
}

.top-nav a:hover,
.text-link:hover,
.faq-list a:hover {
  color: var(--sky);
}

.hero-modern {
  min-height: min(720px, calc(100vh - 80px));
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(44px, 8vw, 120px);
  padding: 80px 0 120px;
}

.hero-copy h1,
.statement-section h2,
.pico-section h2,
.contact-modern h2 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.07em;
}

.hero-copy h1 span,
.statement-section h2 span,
.pico-section h2 span {
  color: var(--sky);
}

.hero-kicker {
  margin-bottom: 20px;
  color: var(--sky);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-text {
  max-width: 35rem;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 2;
}

.hero-actions {
  align-items: center;
  margin: 34px 0 0;
}

.button {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.92rem;
}

.button.primary {
  background: var(--ink);
  box-shadow: 0 12px 24px rgba(23, 32, 51, 0.14);
}

.button.primary:hover {
  background: #2b3954;
  box-shadow: 0 16px 30px rgba(23, 32, 51, 0.18);
}

.text-link {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
}

.pico-hero {
  min-height: 500px;
  overflow: hidden;
  border-radius: 44px;
  background: radial-gradient(circle at 50% 45%, #fff 0%, var(--sky-soft) 62%, #d7edff 100%);
}

.pico-orbit {
  position: absolute;
  border: 1px solid rgba(105, 185, 255, 0.28);
  border-radius: 50%;
}

.pico-orbit-one {
  width: 78%;
  aspect-ratio: 1;
}

.pico-orbit-two {
  width: 58%;
  aspect-ratio: 1;
  border-color: rgba(103, 197, 135, 0.3);
}

.pico-character {
  position: relative;
  z-index: 1;
  width: min(58%, 270px);
  aspect-ratio: 1;
  padding: 8%;
  border-radius: 50%;
  background: #ffeeb6;
  box-shadow: 0 28px 70px rgba(105, 185, 255, 0.25), inset 0 -18px 30px rgba(255, 214, 107, 0.25);
}

.pico-face {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.pico-eye {
  position: absolute;
  top: 37%;
  width: 10%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--ink);
}

.pico-eye-left { left: 26%; }
.pico-eye-right { right: 26%; }

.pico-cheek {
  position: absolute;
  top: 54%;
  width: 17%;
  height: 8%;
  border-radius: 50%;
  background: rgba(255, 138, 107, 0.32);
}

.pico-cheek-left { left: 12%; }
.pico-cheek-right { right: 12%; }

.pico-mouth {
  position: absolute;
  left: 50%;
  bottom: 24%;
  width: 23%;
  height: 13%;
  border-bottom: 4px solid var(--ink);
  border-radius: 0 0 999px 999px;
  transform: translateX(-50%);
}

.pico-caption {
  position: absolute;
  right: 10%;
  bottom: 10%;
  z-index: 2;
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 30px rgba(36, 50, 74, 0.08);
  font-size: 0.8rem;
  color: var(--muted);
}

.pico-caption strong { color: var(--ink); }
.pico-caption-label { color: var(--sky); font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }

.section {
  padding: 120px 0 0;
}

.section-head {
  margin-bottom: 34px;
}

.section-head h2,
.contact-modern h2 {
  font-size: clamp(2.3rem, 4.5vw, 4rem);
}

.statement-section h2 {
  max-width: 760px;
}

.modern-grid {
  gap: 14px;
}

.modern-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: none;
}

.modern-card h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.modern-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.85;
}

.card-number {
  display: block;
  margin-bottom: 30px;
  color: var(--sky);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.pico-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(40px, 9vw, 130px);
}

.pico-section p:last-child,
.contact-intro > p {
  max-width: 36rem;
  color: var(--muted);
  line-height: 2;
}

.pico-section-art {
  display: grid;
  place-items: center;
  min-height: 300px;
  border-radius: 36px;
  background: var(--sky-soft);
}

.pico-mini-face {
  position: relative;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: #ffeeb6;
  box-shadow: inset 0 -12px 24px rgba(255, 214, 107, 0.24), 0 18px 40px rgba(105, 185, 255, 0.18);
}

.pico-mini-face .pico-eye { width: 14px; }
.pico-mini-face .pico-eye-left { left: 44px; }
.pico-mini-face .pico-eye-right { right: 44px; }
.pico-mini-face .pico-mouth { width: 38px; }

.faq-list {
  max-width: 820px;
}

.faq-list details {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { cursor: pointer; font-weight: 700; }
.faq-list p { margin: 14px 0 0; color: var(--muted); line-height: 1.8; }
.faq-list a { color: var(--sky); font-weight: 700; }

.contact-modern {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 9vw, 130px);
  align-items: start;
  margin-bottom: 80px;
  padding-bottom: 100px;
}

.contact-note {
  font-size: 0.84rem;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  background: #fbfcfe;
  color: var(--ink);
  font: inherit;
  font-weight: 400;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--sky); background: #fff; box-shadow: 0 0 0 4px rgba(105, 185, 255, 0.14); }
.contact-form .button { justify-self: start; border: 0; cursor: pointer; }
.contact-honeypot { position: absolute; left: -9999px; width: 1px !important; height: 1px; opacity: 0; }
.form-status { min-height: 1.4em; margin: 0; color: var(--muted); font-size: 0.86rem; line-height: 1.6; }
.form-status.is-success { color: #268152; }
.form-status.is-error { color: #bd4d3d; }

@media (max-width: 820px) {
  .site-header { align-items: flex-start; }
  .top-nav { gap: 12px 16px; }
  .hero-modern,
  .pico-section,
  .contact-modern { grid-template-columns: 1fr; }
  .hero-modern { min-height: auto; padding: 54px 0 70px; }
  .pico-hero { min-height: 420px; }
  .pico-section-art { min-height: 240px; }
  .section { padding-top: 84px; }
}

.pico-image {
  position: relative;
  z-index: 1;
  display: block;
  width: min(72%, 360px);
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 28px;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 28px 28px rgba(36, 50, 74, 0.14));
}

.pico-mini-image {
  display: block;
  width: min(82%, 250px);
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 28px;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 18px 22px rgba(36, 50, 74, 0.12));
}

@media (max-width: 560px) {
  .site-header { width: min(calc(100% - 28px), var(--max)); padding: 18px 0; }
  main, .site-footer { width: min(calc(100% - 28px), var(--max)); }
  .top-nav { font-size: 0.78rem; }
  .hero-copy h1 { font-size: clamp(2.55rem, 12vw, 3.5rem); }
  .hero-text { font-size: 0.98rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .pico-hero { min-height: 360px; border-radius: 30px; }
  .pico-image { width: min(78%, 300px); }
  .pico-mini-image { width: min(74%, 210px); }
  .pico-caption { right: 6%; bottom: 7%; }
  .contact-form { padding: 22px; }
  .contact-form .button { width: 100%; }
  .site-footer { gap: 8px; font-size: 0.78rem; }
}

/* Official-site trust layer */
.brand-subtitle {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.01em;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-proof span {
  color: var(--town-green);
  font-size: 0.62rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  display: grid;
  gap: 7px;
  padding: 4px 28px;
  border-left: 1px solid var(--line);
}

.trust-strip div:first-child { padding-left: 0; border-left: 0; }
.trust-strip span { color: var(--muted); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.trust-strip strong { font-size: 0.92rem; font-weight: 700; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px 40px;
  align-items: end;
  padding: 30px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
}

.footer-brand { display: grid; gap: 5px; }
.footer-brand strong { color: var(--ink); font-size: 0.96rem; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px 18px; }
.footer-nav a:hover { color: var(--ink); }
.site-footer small { grid-column: 1 / -1; color: var(--muted); }

@media (max-width: 820px) {
  .trust-strip { grid-template-columns: 1fr; gap: 16px; }
  .trust-strip div,
  .trust-strip div:first-child { padding: 0; border-left: 0; }
  .site-footer { grid-template-columns: 1fr; align-items: start; }
  .footer-nav { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .hero-modern {
    padding-top: 28px;
    padding-bottom: 58px;
  }

  .hero-kicker {
    margin-bottom: 12px;
  }

  .hero-copy h1 {
    line-height: 0.98;
  }
}
