:root {
  --ink: #18201f;
  --muted: #5a6664;
  --paper: #fbfaf6;
  --soft: #eef3ed;
  --line: #d9e1dc;
  --accent: #0f7b6c;
  --accent-dark: #07594e;
  --warm: #f4b85a;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(23, 35, 34, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 246, 0.92);
  border-bottom: 1px solid rgba(217, 225, 220, 0.8);
  backdrop-filter: blur(14px);
}

.brand,
.site-nav,
.hero-actions,
.hero-charts,
.price-box,
.support {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  color: #101817;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background:
    linear-gradient(145deg, #101817, #1b2a28);
  color: var(--paper);
  box-shadow: 0 10px 24px rgba(16, 24, 23, 0.18);
}

.brand-mark::before {
  position: absolute;
  top: 9px;
  right: 8px;
  width: 12px;
  height: 9px;
  border-radius: 2px 2px 2px 0;
  background: var(--warm);
  content: "";
}

.brand-mark::after {
  position: absolute;
  top: 9px;
  right: 19px;
  width: 2px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  content: "";
}

.brand-mark span {
  transform: translate(-4px, 3px);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.site-nav {
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:hover {
  color: var(--accent);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 800;
}

.nav-cta {
  padding: 8px 18px;
  background: var(--accent);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 84vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding-top: clamp(46px, 7vw, 86px);
  isolation: isolate;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, rgba(12, 24, 23, 0.82), rgba(12, 24, 23, 0.48) 52%, rgba(12, 24, 23, 0.2));
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 18s ease-in-out infinite alternate;
}

.hero-content {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 52px clamp(24px, 7vw, 92px);
  color: var(--white);
}

.eyebrow,
.label,
.tag,
.plan-name {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow,
.tag {
  color: var(--warm);
}

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

h1,
h2,
h3,
.brand,
.site-nav,
.button,
.nav-cta,
.proof-tab strong,
.chart-card strong,
.faq summary {
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
}

h1 {
  max-width: 880px;
  margin-bottom: 20px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.16;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.28;
  text-wrap: balance;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.35;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.9;
  text-wrap: pretty;
}

.hero-lead {
  display: block;
  width: min(620px, 100%);
  max-width: 620px;
}

.hero-lead span {
  display: block;
}

.hero-lead .lead-nowrap {
  white-space: nowrap;
}

.hero-copy,
.section-heading p,
.proof-description,
.intro-grid p,
.work-card p,
.timeline p,
.support p,
.price-box p,
.faq p,
.contact-inner p,
.support-panel li,
.price-box li {
  max-inline-size: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.button {
  border: 0;
  padding: 12px 22px;
  cursor: pointer;
  font-size: 15px;
}

.button.primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(15, 123, 108, 0.26);
}

.button.primary:hover,
.nav-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.36);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.hero-proof {
  display: grid;
  width: min(960px, 100%);
  grid-template-columns: minmax(260px, 0.82fr) minmax(420px, 1.18fr);
  gap: 18px;
  margin-top: 30px;
}

.proof-tabs {
  display: grid;
  gap: 10px;
}

.proof-tab {
  display: grid;
  min-height: 86px;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  width: 100%;
  padding: 18px 20px;
  border: 0;
  border-radius: 8px;
  background: rgba(20, 32, 41, 0.9);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  text-align: left;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.proof-tab.active {
  background: var(--white);
  color: var(--ink);
}

.proof-tab span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: rgba(244, 184, 90, 0.16);
  color: var(--warm);
  font-size: 12px;
  font-weight: 900;
}

.proof-tab.active span {
  background: rgba(15, 123, 108, 0.12);
  color: var(--accent);
}

.proof-tab strong {
  font-size: 18px;
  line-height: 1.35;
}

.proof-panel {
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.2);
}

.proof-kicker {
  margin: 0 0 6px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.proof-title {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
  text-align: center;
}

.proof-description {
  max-width: 560px;
  margin: 0 auto 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}

.hero-charts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.chart-card {
  display: grid;
  place-items: center;
  gap: 12px;
  text-align: center;
}

.donut {
  position: relative;
  display: grid;
  width: 118px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: #e8edf2;
  box-shadow:
    inset 0 0 0 1px rgba(15, 123, 108, 0.08),
    0 14px 26px rgba(23, 35, 34, 0.1);
  --donut-angle: 360deg;
}

.chart-a {
  --ring-a: #ff6a2a;
  --ring-b: #ffbc42;
  --ring-c: #7ed37f;
  --chart-ink: #f05a28;
}

.chart-b {
  --ring-a: #0f7b6c;
  --ring-b: #42c6a5;
  --ring-c: #9be7ce;
  --chart-ink: #0f7b6c;
}

.chart-c {
  --ring-a: #5d5fef;
  --ring-b: #9b7bff;
  --ring-c: #d0b6ff;
  --chart-ink: #5d5fef;
}

.donut::before {
  position: absolute;
  inset: 12px;
  z-index: 1;
  border: 1px solid #edf0f6;
  border-radius: 50%;
  background: var(--white);
  content: "";
}

.donut::after {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    conic-gradient(from -90deg, var(--ring-a) 0 34%, var(--ring-b) 34% 68%, var(--ring-c) 68% 100%) border-box;
  mask: conic-gradient(from -90deg, #000 0 var(--donut-angle), transparent var(--donut-angle) 360deg);
  -webkit-mask: conic-gradient(from -90deg, #000 0 var(--donut-angle), transparent var(--donut-angle) 360deg);
  content: "";
  transform: rotate(0.001deg);
}

.donut span {
  position: relative;
  z-index: 2;
  color: var(--chart-ink);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.chart-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.chart-card strong {
  display: block;
  color: var(--chart-ink);
  font-size: 15px;
  line-height: 1.35;
}

.chart-card p span {
  display: block;
}

.section {
  padding: clamp(68px, 9vw, 118px) clamp(18px, 5vw, 70px);
}

.section-heading {
  width: min(860px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.wide {
  width: min(980px, 100%);
}

.label {
  color: var(--accent);
}

.intro-grid {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.intro-grid article,
.timeline article,
.support-panel,
.price-box,
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(23, 35, 34, 0.06);
}

.intro-grid article {
  padding: 26px;
}

.intro-grid article,
.work-card,
.service-tile,
.timeline article,
.support-panel,
.price-box,
.faq details,
.contact-inner,
.button,
.nav-cta {
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.intro-grid article,
.work-card,
.service-tile,
.detail-card,
.timeline article {
  position: relative;
}

.intro-grid article::after,
.work-card::after,
.service-tile::after,
.detail-card::after,
.timeline article::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: radial-gradient(
    circle at var(--shine-x, 50%) var(--shine-y, 0%),
    rgba(244, 184, 90, 0.18),
    transparent 34%
  );
  opacity: 0;
  transition: opacity 180ms ease;
}

.intro-grid article:hover,
.work-card:hover,
.service-tile:hover,
.detail-card:hover,
.timeline article:hover,
.faq details:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(23, 35, 34, 0.12);
}

.intro-grid article:hover::after,
.work-card:hover::after,
.service-tile:hover::after,
.detail-card:hover::after,
.timeline article:hover::after {
  opacity: 1;
}

.icon {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.color-band {
  background: var(--soft);
}

.service-hub {
  background: var(--paper);
}

.service-menu {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 18px;
}

.service-tile {
  display: grid;
  min-height: 430px;
  overflow: hidden;
  align-content: stretch;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-tile.featured {
  border-color: rgba(15, 123, 108, 0.34);
}

.service-tile img,
.tile-visual {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.service-tile img {
  object-fit: cover;
}

.service-tile > div:last-child {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 24px;
}

.service-number {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: rgba(16, 24, 23, 0.86);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.text-link {
  margin-top: 8px;
  color: var(--accent);
  font-weight: 900;
}

.tile-visual {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(15, 123, 108, 0.18), rgba(244, 184, 90, 0.2)),
    var(--soft);
}

.tool-visual {
  grid-template-columns: repeat(3, 46px);
  gap: 10px;
}

.tool-visual span {
  display: block;
  width: 46px;
  height: 78px;
  border: 1px solid rgba(15, 123, 108, 0.24);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 32px rgba(23, 35, 34, 0.12);
}

.tool-visual span:nth-child(2) {
  transform: translateY(-18px);
  background: #e7f0ea;
}

.lesson-visual span {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border-radius: 8px;
  background: #1f1740;
  color: #d7b8ff;
  font-size: 34px;
  font-weight: 900;
  box-shadow: 0 18px 38px rgba(31, 23, 64, 0.22);
}

.detail-hero {
  display: grid;
  width: min(1180px, 100%);
  min-height: 640px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 28px;
  align-items: center;
}

.detail-copy h1 {
  color: var(--ink);
}

.detail-copy > p:not(.label) {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.button.secondary.dark {
  color: var(--accent-dark);
  border-color: rgba(15, 123, 108, 0.34);
  background: rgba(15, 123, 108, 0.08);
}

.detail-panel,
.detail-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.detail-panel {
  padding: clamp(28px, 5vw, 44px);
}

.detail-panel .price-value {
  color: var(--accent-dark);
}

.detail-grid {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.detail-card {
  overflow: hidden;
  padding: 26px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.detail-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.detail-card li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
}

.detail-card li::before {
  position: absolute;
  left: 0;
  color: var(--accent);
  content: "✓";
  font-weight: 900;
}

.tile-visual.large {
  aspect-ratio: 1;
  border-radius: 8px;
}

.work-list {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.work-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.work-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 420ms ease;
}

.work-card:hover img {
  transform: scale(1.045);
}

.work-card div {
  padding: 24px;
}

.reviews-section {
  background: linear-gradient(180deg, var(--paper), #ffffff 42%, var(--paper));
}

.review-summary {
  display: flex;
  width: min(920px, 100%);
  margin: 0 auto 22px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.review-score {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
}

.review-score strong {
  color: var(--ink);
  font-size: 19px;
  line-height: 1;
}

.review-score span:last-child {
  font-weight: 800;
}

.review-carousel {
  display: grid;
  width: min(1060px, 100%);
  margin: 0 auto;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  gap: 12px;
  align-items: center;
}

.review-grid {
  display: grid;
  grid-auto-columns: minmax(260px, 1fr);
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 4px 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.review-card {
  display: grid;
  min-height: 220px;
  align-content: start;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(23, 35, 34, 0.1);
  scroll-snap-align: start;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-user strong,
.review-user small {
  display: block;
  line-height: 1.35;
}

.review-user strong {
  font-size: 14px;
}

.review-user small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.review-avatar {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #f4d9b8;
  color: #7d3f12;
  font-weight: 900;
}

.review-avatar.purple {
  background: #eadcff;
  color: #6b3fd8;
}

.review-avatar.green {
  background: #d7f2e7;
  color: #0f7b6c;
}

.review-avatar.blue {
  background: #d9e8ff;
  color: #2e5eb8;
}

.review-avatar.orange {
  background: #ffe2c4;
  color: #bd5d1f;
}

.review-stars {
  color: var(--warm);
  font-size: 17px;
  letter-spacing: 1px;
  line-height: 1;
}

.review-card p {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
}

.review-arrow {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--accent);
  cursor: default;
  font-size: 28px;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(23, 35, 34, 0.08);
}

.timeline {
  display: grid;
  width: min(1080px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.timeline article {
  position: relative;
  padding: 24px 24px 24px 84px;
}

.timeline span {
  position: absolute;
  left: 22px;
  top: 26px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.support {
  width: min(1080px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(440px, 1.28fr);
  gap: clamp(72px, 10vw, 132px);
  align-items: center;
}

.support-copy,
.support-panel {
  min-width: 0;
}

.support-copy h2 {
  max-width: 8em;
  font-size: clamp(30px, 3vw, 40px);
}

.support-copy p {
  max-width: 34em;
}

.support-panel {
  width: 100%;
  min-width: 440px;
  padding: clamp(28px, 4vw, 42px);
}

.support-panel ul,
.price-box ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.support-panel li,
.price-box li {
  position: relative;
  padding-left: 28px;
  line-height: 1.7;
}

.support-panel li::before,
.price-box li::before {
  position: absolute;
  left: 0;
  color: var(--accent);
  content: "✓";
  font-weight: 900;
}

.price-box {
  width: min(920px, 100%);
  margin: 0 auto;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(28px, 5vw, 44px);
}

.price-grid {
  display: grid;
  width: min(1040px, 100%);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.price-plan {
  display: grid;
  align-content: start;
  gap: 14px;
}

.price-plan + .price-plan {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.price-plan p {
  margin-bottom: 0;
}

.price-value {
  margin-bottom: 10px;
  font-size: clamp(42px, 7vw, 68px);
  line-height: 1;
  font-weight: 900;
}

.price-value span {
  margin-left: 8px;
  font-size: 15px;
}

.contact-inner {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(30px, 6vw, 58px);
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #e7f0ea;
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(23, 35, 34, 0.08);
}

.contact-inner > p {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #c5d4cc;
  border-radius: 8px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #7f9089;
}

.contact-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--accent) 50%),
    linear-gradient(135deg, var(--accent) 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
}

.form-status {
  min-height: 28px;
  margin: 0;
  color: var(--accent-dark);
  font-weight: 800;
}

.hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.turnstile-widget {
  min-height: 65px;
}

.faq-list {
  display: grid;
  width: min(900px, 100%);
  margin: 0 auto;
  gap: 12px;
}

.faq details {
  padding: 20px 22px;
}

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

.faq details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(18px, 5vw, 70px);
  background: #101817;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer p {
  margin: 0;
  color: var(--white);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slowZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.06);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .proof-panel.is-drawing .donut::after {
    --donut-angle: 360deg;
  }
}

@media (max-width: 1100px) {
  .work-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    margin: 0 auto 36px;
  }

  h1 {
    max-width: 11em;
    font-size: clamp(34px, 9vw, 48px);
    line-height: 1.22;
  }

  h2 {
    font-size: clamp(28px, 7vw, 38px);
  }

  .intro-grid,
  .work-list,
  .service-menu,
  .detail-grid,
  .detail-hero,
  .hero-proof,
  .timeline {
    grid-template-columns: 1fr;
  }

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

  .service-tile {
    min-height: auto;
  }

  .support,
  .price-box,
  .site-footer {
    align-items: stretch;
  }

  .support {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .support-panel {
    min-width: 0;
  }

  .support-copy h2,
  .support-copy p,
  .hero-lead {
    max-width: none;
    width: auto;
  }

  .hero-lead .lead-nowrap {
    white-space: normal;
  }

  .price-grid {
    grid-template-columns: 1fr;
  }

  .price-plan + .price-plan {
    padding-top: 26px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .timeline article {
    padding-left: 24px;
  }

  .review-summary,
  .review-carousel {
    grid-template-columns: 1fr;
  }

  .review-summary {
    display: grid;
    text-align: center;
  }

  .review-score {
    justify-content: center;
  }

  .review-arrow {
    display: none;
  }

  .timeline span {
    position: static;
    display: inline-block;
    margin-bottom: 8px;
  }
}

@media (max-width: 520px) {
  .brand span:last-child {
    display: none;
  }

  .nav-cta {
    padding-inline: 14px;
  }

  h1 {
    max-width: 9.5em;
    font-size: clamp(31px, 10vw, 40px);
  }

  h2 {
    font-size: clamp(25px, 8vw, 32px);
  }

  h3,
  .proof-tab strong {
    font-size: 18px;
  }

  .chart-card {
    width: auto;
  }

  .proof-panel {
    padding: 22px 14px;
  }

  .hero-charts {
    gap: 10px;
  }

  .donut {
    width: 92px;
  }

  .donut span {
    font-size: 23px;
  }

  .chart-card strong {
    font-size: 13px;
  }
}
