:root{
  --bg: #FFFFFF;
  --ink: #0b1f19;
  --muted: rgba(11, 31, 25, .72);
  --line: rgba(0, 68, 51, .14);
  --main: #004433;
  --accent: #008000;
  --accent2: #00a35a;
  --shadow: 0 18px 48px rgba(0, 0, 0, .10);
  --shadow2: 0 14px 34px rgba(0, 0, 0, .12);
  --radius: 18px;
  --radius2: 22px;
  --container: 1100px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
html{
  scroll-behavior: smooth;
  /* sticky header 分の余白（アンカー移動時に見出しが隠れないように） */
  scroll-padding-top: 78px;
}
body{
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Noto Sans JP", system-ui, -apple-system, Segoe UI, Roboto, Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

.splash{
  /* removed */
}

.container{
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.skip{
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip:focus{
  left: 14px;
  top: 12px;
  width: auto;
  height: auto;
  z-index: 9999;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.86);
  border-bottom: 1px solid rgba(0, 68, 51, .10);
  backdrop-filter: blur(12px);
}
.header__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.header__noticeWrap{
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: center;
}
.header__notice{
  margin: 0;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0, 128, 0, .10);
  border: 1px solid rgba(0, 128, 0, .22);
  color: rgba(0, 68, 51, .92);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .02em;
  white-space: nowrap;
}
.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
}
.brand__logo{
  display: block;
  height: 28px;
  width: auto;
}
.brand__fallback{
  display: none;
  font-weight: 800;
  letter-spacing: .02em;
  color: var(--main);
}
.header__nav{
  display: flex;
  align-items: center;
  gap: 10px;
}
.navlink{
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(0, 68, 51, .88);
  font-weight: 600;
  font-size: 14px;
}
.navlink:hover{
  background: rgba(0, 128, 0, .08);
}
.navlink--cta{
  background: linear-gradient(180deg, rgba(0, 68, 51, 1), rgba(0, 68, 51, .86));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
  color: #fff;
  cursor: pointer;
  /* ヘッダーCTAは2行（縦積み） */
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.05;
  gap: 2px;
  padding: 8px 12px;
}
.navlink--cta:hover{
  background: linear-gradient(180deg, rgba(0, 163, 90, .98), rgba(0, 68, 51, .88));
  border-color: rgba(255,255,255,.26);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
  transform: translateY(-1px);
}
.navlink--cta:active{
  transform: translateY(0);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}
.navlink--cta:focus-visible{
  outline: 3px solid rgba(0, 163, 90, .45);
  outline-offset: 3px;
}
.navlink--cta .navlink__line{
  display: block;
  white-space: nowrap;
}

/* Hero */
.hero{
  position: relative;
  overflow: hidden;
  padding: 0 0 28px;
}
.hero::before{
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 420px;
  background:
    radial-gradient(700px 220px at 15% 35%, rgba(0, 163, 90, .16), transparent 60%),
    radial-gradient(800px 260px at 78% 15%, rgba(0, 128, 0, .12), transparent 65%),
    linear-gradient(180deg, rgba(0, 68, 51, .06), transparent 70%);
  pointer-events: none;
}
.hero__inner{
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  /* 左カラム（hero__copy）の上辺に合わせて、右のpanelも上揃え */
  align-items: start;
}
.hero__copy{
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}
.hero__eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(0, 68, 51, .86);
}
.hero__copy .hero__eyebrow{
  justify-content: center;
}
.hero__eyebrow::before{
  content: "";
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 999px;
}
.hero__title{
  margin: 0 0 10px;
  font-size: 44px;
  line-height: 1.18;
  letter-spacing: -.01em;
  white-space: normal;
  text-wrap: balance;
}
.hero__sub{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
  max-width: 42em;
  margin-inline: auto;
}

/* Hero panel */
.hero__panel{
  justify-self: end;
  margin-top: 28px;
}
.panel{
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius2);
  border: 1px solid rgba(0, 68, 51, .16);
  background:
    linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.56));
  box-shadow: 0 28px 70px rgba(0, 0, 0, .10);
  padding: 16px 16px 14px;
  position: relative;
  overflow: hidden;
}
.panel::before{
  content:"";
  position: absolute;
  inset: -60px -40px auto auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle at 30% 30%, rgba(0,128,0,.20), transparent 62%);
  transform: rotate(18deg);
  pointer-events: none;
}
.panel__row{
  display:flex;
  align-items:center;
  gap: 10px;
  color: rgba(0, 68, 51, .82);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.panel__row--right{ justify-content: flex-end; margin-top: 10px; }
.dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(0, 68, 51, .26);
}
.dot--accent{
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(0, 128, 0, .12);
}
.panel__code{
  margin: 10px 0 0;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0, 68, 51, .12);
  background: rgba(255,255,255,.78);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  color: rgba(0, 68, 51, .80);
}
.panel__line{
  display:block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.panel__bars{
  display:grid;
  gap: 8px;
  margin-top: 10px;
}
.bar{
  height: 10px;
  border-radius: 999px;
  background: rgba(0, 68, 51, .10);
  overflow: hidden;
  position: relative;
}
.bar::after{
  content:"";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: linear-gradient(90deg, rgba(0, 128, 0, .55), rgba(0, 128, 0, .20));
  border-radius: 999px;
  animation: fill 2.4s ease-out infinite;
}
.bar--1::after{ width: 72%; animation-delay: .05s; }
.bar--2::after{ width: 84%; animation-delay: .18s; }
.bar--3::after{ width: 92%; animation-delay: .32s; }
@keyframes fill{
  0%{ filter: saturate(1); opacity: .75; }
  55%{ filter: saturate(1.15); opacity: 1; }
  100%{ filter: saturate(1); opacity: .85; }
}

/* Section head */
.works{
  padding: 10px 0;
  scroll-margin-top: 78px;
}
.sectionHead{
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}
.sectionHead__title{
  margin: 0;
  font-size: 22px;
  letter-spacing: -.01em;
}
.sectionHead__sub{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* Work cards */
.steps{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.workCard{
  position: relative;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(0, 68, 51, .14);
  padding: 18px 18px 16px;
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  min-height: 236px;
  display: flex;
  flex-direction: column;
}
.workCard::before{
  content:"";
  position:absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 76px solid rgba(0, 128, 0, .90);
  border-left: 76px solid transparent;
}
.workCard::after{
  content:"";
  position:absolute;
  inset: 0;
  background: radial-gradient(280px 120px at 20% 20%, rgba(0,128,0,.10), transparent 65%);
  opacity: .55;
  pointer-events:none;
}
.workCard:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(0,0,0,.10);
  border-color: rgba(0, 128, 0, .26);
}
.workCard__meta{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  /* 右上の三角アクセントと被らないように逃がす */
  padding-right: 86px;
}
.workCard__step{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 100%;
}
.stepBadge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .08em;
  border: 1px solid rgba(0, 68, 51, .18);
  background: rgba(0, 68, 51, .06);
  color: rgba(0, 68, 51, .92);
}
.stepBadge--1{ border-color: rgba(0, 68, 51, .20); }
.stepBadge--2{ border-color: rgba(0, 128, 0, .30); background: rgba(0, 128, 0, .08); }
.stepBadge--3{ border-color: rgba(0, 163, 90, .36); background: rgba(0, 163, 90, .10); }
.stepHint{
  font-size: 12px;
  color: rgba(0, 68, 51, .72);
  font-weight: 700;
}
.workCard__title{
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -.01em;
  position: relative;
  z-index: 1;
}
.workCard__student{
  margin: 0 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 68, 51, .14);
  background: rgba(255, 255, 255, .70);
  color: rgba(0, 68, 51, .88);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  position: relative;
  z-index: 1;
  width: fit-content;
}
.workCard__meta .workCard__student{
  margin: 0;
}
.workCard__student::before{
  content:"";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(0, 128, 0, .82);
  box-shadow: 0 0 0 4px rgba(0, 128, 0, .12);
}
.workCard__desc{
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  position: relative;
  z-index: 1;
}
.workCard__points{
  margin: 0 0 14px;
  padding-left: 18px;
  color: rgba(0, 68, 51, .78);
  font-size: 13px;
  position: relative;
  z-index: 1;
}
.workCard__stats{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0 0 14px;
  position: relative;
  z-index: 1;
}
.stat{
  border: 1px solid rgba(0, 68, 51, .14);
  border-radius: 14px;
  padding: 10px 10px;
  background: rgba(255,255,255,.74);
}
.stat__k{
  display:block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  color: rgba(0, 68, 51, .76);
  text-transform: uppercase;
}
.stat__v{
  display:block;
  font-size: 14px;
  font-weight: 900;
  color: rgba(0, 68, 51, .94);
}

.workCard--step1{
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
}
.workCard--step2{
  border-color: rgba(0, 128, 0, .20);
  box-shadow: 0 14px 34px rgba(0,0,0,.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,1), rgba(255,255,255,.94));
}
.workCard--step2::after{
  background:
    radial-gradient(320px 160px at 16% 18%, rgba(0,128,0,.14), transparent 60%),
    radial-gradient(260px 120px at 85% 70%, rgba(0,163,90,.10), transparent 60%);
  opacity: .75;
}
.workCard--step3{
  border-color: rgba(0, 163, 90, .26);
  box-shadow: var(--shadow2);
  transform: translateY(-1px);
}
.workCard--step3:hover{
  transform: translateY(-4px);
  box-shadow: 0 26px 66px rgba(0,0,0,.14);
}
.workCard--step3::before{
  border-top-color: rgba(0, 163, 90, .96);
}
.workCard--step3::after{
  background:
    radial-gradient(420px 200px at 18% 22%, rgba(0,163,90,.16), transparent 62%),
    radial-gradient(340px 180px at 85% 70%, rgba(0,128,0,.12), transparent 62%);
  opacity: .95;
}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: .01em;
  cursor: pointer;
  user-select: none;
  transition: transform .16s ease, background .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.btn:focus-visible{
  outline: 3px solid rgba(0, 128, 0, .28);
  outline-offset: 3px;
}
.btn--primary{
  background: var(--main);
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 68, 51, .22);
}
.btn--primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 42px rgba(0, 68, 51, .26);
}
.btn--ghost{
  background: rgba(255,255,255,.70);
  border-color: rgba(0, 68, 51, .18);
  color: rgba(0, 68, 51, .92);
}
.btn--ghost:hover{
  transform: translateY(-1px);
  background: rgba(0, 128, 0, .06);
  border-color: rgba(0, 128, 0, .24);
}
.btn--card{
  margin-top: auto;
  background: rgba(0, 128, 0, .08);
  border-color: rgba(0, 128, 0, .22);
  color: rgba(0, 68, 51, .96);
}
.btn--card:hover{
  transform: translateY(-1px);
  background: rgba(0, 128, 0, .12);
  border-color: rgba(0, 128, 0, .30);
}
.btn--card-strong{
  background: linear-gradient(135deg, rgba(0,128,0,.18), rgba(0,163,90,.16));
  border-color: rgba(0, 163, 90, .34);
}

/* CTA / Footer-style section */
.cta{
  position: relative;
  /* テキストの見切れを防ぐため、全体のクリップはしない */
  overflow: visible;
  background: var(--main);
  color: #fff;
  padding: 34px 0;
}
.cta::before{
  content:"";
  position:absolute;
  inset: 0;
  background:
    radial-gradient(900px 280px at 10% 20%, rgba(0, 128, 0, .20), transparent 60%),
    radial-gradient(900px 260px at 80% 80%, rgba(0, 163, 90, .18), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.06), transparent 60%);
  opacity: .9;
  pointer-events:none;
}
.cta::after{
  content:"";
  position:absolute;
  inset: 0;
  opacity: .18;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='220'%3E%3Crect width='420' height='220' fill='none'/%3E%3Cg fill='%23FFFFFF' font-family='ui-monospace, SFMono-Regular, Menlo, Consolas, monospace' font-size='12'%3E%3Ctext x='14' y='34'%3Econst%20works%20%3D%20%5B...%5D%3B%3C/text%3E%3Ctext x='14' y='62'%3Efunction%20openModal(url)%20%7B%20...%20%7D%3C/text%3E%3Ctext x='14' y='90'%3Edocument.querySelectorAll('button')%3C/text%3E%3Ctext x='14' y='118'%3E%2F%2F%20AI%20x%20coding%20for%20beginners%3C/text%3E%3Ctext x='14' y='146'%3Eiframe.src%20%3D%20url%3C/text%3E%3Ctext x='14' y='174'%3EcloseBtn.addEventListener(... )%3C/text%3E%3Ctext x='14' y='202'%3E%7D%3C/text%3E%3C/g%3E%3C/svg%3E");
  background-size: 560px 280px;
  background-repeat: repeat;
  pointer-events:none;
}
.cta__inner{
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: center;
}
.cta__title{
  margin: 0 0 8px;
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: -.01em;
}
.cta__titleLine{
  display: block;
  white-space: nowrap; /* 2行以外の意図しない折り返しを防ぐ */
  max-width: 100%;
}
.cta__sub{
  margin: 0;
  opacity: .86;
  font-size: 14px;
}
.cta__actions{
  justify-self: center;
  text-align: center;
}
.only-sp{ display: none; }
.btn--cta{
  /* CTA背景（濃色）と同化しないよう、白ベースでボタン感を強める */
  background: #fff;
  color: rgba(0, 68, 51, .96);
  border: 2px solid rgba(255,255,255,.72);
  padding: 14px 18px;
  border-radius: 16px;
  /* 濃色背景で“影”が埋もれないよう、白いグロー＋濃い影の二重にする */
  box-shadow:
    0 0 0 4px rgba(255,255,255,.16),
    0 18px 44px rgba(0, 0, 0, .38);
  cursor: pointer;
  flex-direction: column;
  text-align: center;
  gap: 4px;
}
.btn--cta .btn__line{
  display: block;
  font-weight: 900;
  letter-spacing: .01em;
}
.btn--cta .btn__sub{
  display: block;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  opacity: .90;
}
.btn--cta:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.94);
  border-color: rgba(255,255,255,.92);
  box-shadow:
    0 0 0 5px rgba(255,255,255,.22),
    0 24px 66px rgba(0, 0, 0, .42);
}
.btn--cta:active{
  transform: translateY(0);
  box-shadow:
    0 0 0 4px rgba(255,255,255,.16),
    0 14px 34px rgba(0, 0, 0, .36);
}
.btn--cta:focus-visible{
  outline: 3px solid rgba(255,255,255,.70);
  outline-offset: 3px;
}
.cta__note{
  margin: 10px 0 0;
  /* PC幅でボタン横に回り込まないよう block に固定 */
  display: block;
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.70);
  color: rgba(0, 68, 51, .96);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .01em;
  line-height: 1.45;
  text-align: center;
  box-shadow: 0 10px 26px rgba(0,0,0,.14);
}

/* Modal */
.modal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 200;
}
.modal.is-open{
  display: block;
}
.modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .58);
  backdrop-filter: blur(10px);
}
.modal__dialog{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  height: 80vh;
  max-width: 1120px;
  max-height: 860px;
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.32);
  box-shadow: 0 40px 120px rgba(0,0,0,.40);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}
.modal__top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 12px 10px 14px;
  border-bottom: 1px solid rgba(0, 68, 51, .12);
  background: rgba(255,255,255,.80);
}
.modal__topActions{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.modal__title{
  margin: 0;
  font-size: 14px;
  font-weight: 900;
  color: rgba(0, 68, 51, .92);
  letter-spacing: .01em;
}
.iconBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(0, 68, 51, .14);
  background: rgba(255,255,255,.86);
  cursor: pointer;
}
.iconBtn--link{
  font-weight: 900;
  text-decoration: none;
  color: rgba(0, 68, 51, .92);
}
.iconBtn:hover{
  background: rgba(0, 128, 0, .08);
  border-color: rgba(0, 128, 0, .22);
}
.iconBtn:focus-visible{
  outline: 3px solid rgba(0, 128, 0, .28);
  outline-offset: 3px;
}
.modal__frameWrap{
  width: 100%;
  height: 100%;
  background: #0b0f0e;
}
.modal__frame{
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

/* Scroll lock (JS toggles) */
body.is-modal-open{
  overflow: hidden;
}

/* Responsive */
@media (max-width: 798px){
  .hero__inner{ grid-template-columns: 1fr; }
  .hero__title{ white-space: normal; font-size: 34px; }
  .cta__inner{ grid-template-columns: 1fr; }
  .cta__copy{
    /* タブレット：グループは中央、内部は左揃え（cta__title と cta__sub の左端を揃える） */
    width: 100%;
    display: grid;
    justify-content: center;
    justify-items: start;
    text-align: left;
  }
  .cta__title,
  .cta__sub{ display: inline-block; max-width: 100%; }
  .steps{ grid-template-columns: repeat(2, 1fr); }
  .workCard{ min-height: auto; }
}

@media (max-width: 600px){
  /* 全サイズで左右20px（合計40px）を維持する */
  .container{ width: min(var(--container), calc(100% - 40px)); }
  .header__inner{ padding: 10px 0; }
  .header__noticeWrap{ padding-bottom: 8px; }
  .brand{ min-height: 36px; }
  .brand__logo{ height: 24px; }
  .header__nav{ gap: 6px; }
  /* 600px以下はここで1回だけ切り替え、あとは clamp() で滑らかに追従 */
  .navlink{ padding: 9px 10px; font-size: 13px; }
  .modal__dialog{
    /* PC同様に「画面に対する比率」で決定（画面いっぱいにしない） */
    width: 92vw;
    height: 80vh;
    border-radius: 16px;
  }
  .hero__inner{ gap: 18px; }
  .hero__title{
    font-size: 28px;
    letter-spacing: -.02em;
  }
  .hero__sub{ font-size: 14px; margin-bottom: 14px; }
  .hero__panel{ justify-self: stretch; margin-top: 14px; }
  .panel{ width: 100%; padding: 14px 14px 12px; border-radius: 18px; }

  .sectionHead{ margin-bottom: 12px; }
  .sectionHead__title{ font-size: 20px; }
  .sectionHead__sub{ font-size: 13px; }

  .steps{ gap: 12px; }
  .workCard{ padding: 16px 14px 14px; border-radius: 16px; }
  .workCard::before{
    border-top-width: 62px;
    border-left-width: 62px;
  }
  .workCard__meta{ padding-right: 70px; margin-bottom: 8px; }
  .workCard__title{ font-size: 16px; }
  .workCard__desc{ font-size: 13px; }

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

@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior: auto !important; }
  .bar::after{ animation: none; }
  .workCard, .btn{ transition: none; }
  .splash{ transition: none; }
  .splash__inner{ transition: none; }
}


