#hero {
  position: relative;
  overflow: clip;
  padding: var(--s7) 0 var(--s6);
  border-top: 0;
}

.hbg {
  --grid: 54px; /* grid tile size — drives size, offset and drift distance */
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.55;
  mask-image: radial-gradient(ellipse 100% 90% at 15% 0%, black 25%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 100% 90% at 15% 0%, black 25%, transparent 100%);
  transition: opacity var(--base) var(--eo);
}

/* oversized inner layer so the drift loops seamlessly by one tile */
.hbg::before {
  content: "";
  position: absolute;
  inset: calc(var(--grid) * -1);
  background-image:
    linear-gradient(var(--bd) 1px, transparent 1px),
    linear-gradient(90deg, var(--bd) 1px, transparent 1px);
  background-size: var(--grid) var(--grid);
  animation: hbg-drift 26s linear infinite;
}

@keyframes hbg-drift {
  to { transform: translate(var(--grid), var(--grid)); }
}

[data-theme="dark"] .hbg {
  opacity: 0.2;
}

.hin {
  position: relative;
  z-index: 1;
}

.hh1 {
  margin-bottom: var(--s4);
  font-size: var(--fhero);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--tx);
}

.hh1-line {
  display: block;
}

.hh1 .hh1-ac {
  color: var(--ac);
}

.hh1-mark {
  display: inline;
  padding: 0 0.14em 0.05em;
  background: var(--ac);
  color: #ffffff;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hsub {
  max-width: 480px;
  margin-bottom: var(--s5);
  font-size: var(--flg);
  line-height: 1.7;
  color: var(--tx2);
}

.hact {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  margin-bottom: var(--s5);
}

.hpr {
  display: flex;
  flex-wrap: wrap;
  column-gap: var(--s4);
  row-gap: var(--s2);
}

.pi {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fxs);
  color: var(--tx3);
}

.pi::before {
  content: "✓";
  color: var(--ok);
  font-size: 10px;
  font-weight: 700;
}

.stb {
  background: var(--bg);
  border-top: 1px solid var(--bd);
  transition: background var(--base) var(--eo), border-color var(--base) var(--eo);
}

.stg {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  counter-reset: st;
}

.sti {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.375rem;
  padding: clamp(1.5rem, 3.5vw, 2.5rem) clamp(1rem, 2vw, 1.875rem);
  border-right: 1px solid var(--bd);
  border-bottom: 1px solid var(--bd);
  position: relative;
  counter-increment: st;
  transition: background var(--base) var(--eo), border-color var(--base) var(--eo);
}
.sti:hover { background: var(--su2); }
.sti:nth-child(2n) { border-right: none; }
.sti:nth-last-child(-n+2) { border-bottom: none; }

/* index label — top-right corner */
.sti::before {
  content: "0" counter(st);
  position: absolute;
  top: clamp(0.625rem, 1.5vw, 1rem);
  right: clamp(0.75rem, 1.5vw, 1.25rem);
  font-family: var(--fd);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--tx3);
  opacity: 0.5;
  transition: opacity var(--base) var(--eo);
}
.sti:hover::before { opacity: 1; }

.std {
  font-family: var(--fd);
  font-size: clamp(0.5625rem, 0.48rem + 0.2vw, 0.6875rem);
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--tx3);
  line-height: 1.35;
  transition: color var(--base) var(--eo);
}
.sti:hover .std { color: var(--tx2); }

.stv {
  font-family: var(--fd);
  font-size: clamp(1.875rem, 2.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--tx);
  font-variant-numeric: tabular-nums;
  transition: color var(--base) var(--eo);
}
.sti:hover .stv { color: var(--ac); }

.stv b {
  color: var(--ac);
  font-weight: 800;
  font-style: normal;
}

.stv-unit {
  font-size: 0.35em;
  font-weight: 700;
  letter-spacing: 0.04em;
  vertical-align: middle;
  opacity: 0.75;
}

.stv-pre {
  font-size: 0.45em;
  font-weight: 700;
  letter-spacing: 0;
  vertical-align: middle;
  opacity: 0.7;
}

#why .whd {
  margin-bottom: var(--s5);
}

.wht,
.oft,
.prt,
.faqt,
.ct2 {
  font-size: var(--f2x);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.wht {
  max-width: 520px;
  margin-bottom: var(--s2);
}

.whd2,
.ofd,
.faqd,
.cd {
  font-size: var(--fmd);
  line-height: 1.7;
  color: var(--tx2);
}

.whd2 {
  max-width: 460px;
}

.whg {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  overflow: hidden;
  background: var(--bd);
  border: 1px solid var(--bd);
  border-radius: var(--rxl);
}

.wc {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  padding: var(--s4);
  background: var(--su);
  transition: background var(--base) var(--eo);
}

.wc:hover {
  background: var(--su2);
}

.wci {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--rmd);
  background: var(--ac2);
  color: var(--ac);
  transition: background var(--base) var(--eo), color var(--base) var(--eo);
}

.wci svg {
  width: 19px;
  height: 19px;
  stroke-width: 1.75;
}

.wc:hover .wci {
  background: var(--ac);
  color: #ffffff;
}

.wc h3 {
  font-size: var(--fmd);
  font-weight: 600;
}

.wc p {
  font-size: var(--fsm);
  line-height: 1.65;
  color: var(--tx2);
}

#offer,
#faq {
  background: var(--bg2);
}

.ofhd {
  margin-bottom: var(--s5);
  text-align: center;
}

.ofhd .ey {
  justify-content: center;
}

.oft {
  margin-bottom: var(--s2);
}

.ofd {
  max-width: 440px;
  margin-inline: auto;
}

.pgr {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s2);
  margin-bottom: var(--s5);
}

.pc {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  padding: var(--s4);
  background: var(--su);
  border: 1px solid var(--bd);
  border-radius: var(--rxl);
  transition:
    box-shadow var(--base) var(--eo),
    transform var(--base) var(--eo),
    border-color var(--base) var(--eo),
    background var(--base) var(--eo);
}

.pc:hover {
  border-color: var(--bd2);
  box-shadow: var(--sh3);
  transform: translateY(-2px);
}

.pc.ft {
  background: var(--tx);
  border-color: var(--tx);
  color: var(--bg);
}

[data-theme="dark"] .pc.ft {
  background: var(--ac);
  border-color: var(--ac);
  color: #ffffff;
}

.pcbd,
.pctier,
.pcfr,
.pcam,
.pccu,
.pcde,
.ptag {
  margin: 0;
}

.pc-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.pcbd {
  display: inline-block;
  padding: 3px 9px;
  border-radius: var(--rfl);
  background: rgba(248, 247, 244, 0.15);
  color: rgba(248, 247, 244, 0.9);
  font-size: var(--fxs);
  font-weight: 600;
  white-space: nowrap;
}

.pc-head-row .pctier {
  margin-bottom: 0;
}

.pctier {
  margin-bottom: 2px;
  font-size: var(--fxs);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--tx3);
}

.pc.ft .pctier,
.pc.ft .pcfr {
  color: rgba(248, 247, 244, 0.5);
}

.pcpr {
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.pcfr {
  margin-right: 2px;
  font-size: var(--fxs);
  color: var(--tx3);
}

.pcam {
  font-family: var(--fd);
  font-size: var(--f2x);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
  font-variant-numeric: tabular-nums;
}

.pccu {
  font-size: var(--fsm);
  font-weight: 600;
}

.pcde {
  font-size: var(--fsm);
  line-height: 1.6;
  color: var(--tx2);
}

.pc.ft .pcde {
  color: rgba(248, 247, 244, 0.7);
}

.pcdv {
  height: 1px;
  background: var(--bd);
}

.pc.ft .pcdv {
  background: rgba(248, 247, 244, 0.15);
}

.pctg {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.ptag {
  padding: 4px 9px;
  border: 1px solid var(--bd);
  border-radius: var(--rfl);
  background: var(--bg2);
  font-size: var(--fxs);
  font-weight: 500;
  color: var(--tx2);
}

.pc.ft .ptag {
  border-color: rgba(248, 247, 244, 0.2);
  background: rgba(248, 247, 244, 0.12);
  color: rgba(248, 247, 244, 0.8);
}

.pcct {
  margin-top: auto;
}

.pc.ft .btn-ol {
  border-color: rgba(248, 247, 244, 0.3);
  background: rgba(248, 247, 244, 0.1);
  color: #ffffff;
}

.pc.ft .btn-ol:hover,
.pc.ft .btn-ol:focus-visible {
  background: rgba(248, 247, 244, 0.2);
}

#cs,
#cr,
#cm {
  display: none;
}

.ctabs {
  display: none;
  gap: 3px;
  margin-bottom: var(--s3);
  padding: 4px;
  background: var(--bg2);
  border-radius: var(--rlg);
}

.ct {
  flex: 1;
  padding: 8px 10px;
  border-radius: var(--rmd);
  font-size: var(--fsm);
  font-weight: 500;
  text-align: center;
  color: var(--tx2);
  cursor: pointer;
  transition:
    background var(--fast) var(--eo),
    color var(--fast) var(--eo),
    box-shadow var(--fast) var(--eo);
}

#cs:checked ~ .ctabs .cts,
#cr:checked ~ .ctabs .ctr,
#cm:checked ~ .ctabs .ctm {
  background: var(--su);
  box-shadow: var(--sh1);
  color: var(--tx);
}

.cbox {
  overflow: hidden;
  background: var(--su);
  border: 1px solid var(--bd);
  border-radius: var(--rxl);
}

.cscr {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th {
  padding: 13px 18px;
  border-bottom: 1px solid var(--bd);
  font-family: var(--fd);
  font-size: var(--fxs);
  font-weight: 600;
  text-align: left;
  color: var(--tx2);
  white-space: nowrap;
}

th:not(:first-child),
td:not(:first-child) {
  text-align: center;
}

td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--bd);
  font-size: var(--fsm);
  color: var(--tx);
}

tbody tr:last-child td {
  border-bottom: 0;
}

tbody tr:hover td {
  background: var(--su2);
  transition: background var(--fast) var(--eo);
}

.cy {
  color: var(--ok);
  font-weight: 700;
}

.cp2 {
  color: var(--ac);
}

.cn {
  color: var(--tx3);
}

.cnote {
  padding: 13px 18px;
  border-top: 1px solid var(--bd);
  font-size: var(--fxs);
  line-height: 1.55;
  color: var(--tx3);
}

.cnote a {
  color: var(--ac);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prhd,
.faqhd {
  margin-bottom: var(--s4);
}

.prt,
.faqt {
  margin-bottom: var(--s2);
}

.prm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--su);
  border: 1px solid var(--bd);
  border-radius: var(--rfl);
  font-size: var(--fxs);
  font-weight: 500;
  color: var(--tx2);
}

.prdot {
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--ok);
}

.tl {
  display: flex;
  gap: 1px;
  overflow: hidden;
  overflow-x: auto;
  background: var(--bd);
  border: 1px solid var(--bd);
  border-radius: var(--rxl);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.tl::-webkit-scrollbar {
  display: none;
}

.ts {
  display: flex;
  flex: 0 0 clamp(230px, 68vw, 310px);
  flex-direction: column;
  gap: var(--s2);
  padding: var(--s4);
  scroll-snap-align: start;
  background: var(--su);
  border-top: 3px solid transparent;
  transition:
    background var(--base) var(--eo),
    border-top-color var(--base) var(--eo),
    box-shadow var(--base) var(--eo);
}

.ts:nth-child(1) { border-top-color: var(--ac); }
.ts:nth-child(2) { border-top-color: color-mix(in srgb, var(--ac) 80%, var(--tx3)); }
.ts:nth-child(3) { border-top-color: color-mix(in srgb, var(--ac) 60%, var(--tx3)); }
.ts:nth-child(4) { border-top-color: color-mix(in srgb, var(--ac) 40%, var(--tx3)); }
.ts:nth-child(5) { border-top-color: color-mix(in srgb, var(--ac) 20%, var(--tx3)); }

.ts:hover {
  background: var(--su2);
  border-top-color: var(--ac);
  box-shadow: inset 0 6px 48px rgba(232, 67, 10, 0.22);
}

.tsn {
  font-family: var(--fd);
  font-size: var(--fxs);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ac);
}

.tst {
  font-size: var(--fmd);
  font-weight: 600;
  color: var(--tx);
}

.tsd {
  flex: 1;
  font-size: var(--fsm);
  line-height: 1.65;
  color: var(--tx2);
}

.tsti {
  align-self: flex-start;
  margin-top: var(--s1);
  padding: 3px 10px;
  border-radius: var(--rfl);
  background: var(--bg2);
  font-size: var(--fxs);
  font-weight: 600;
  color: var(--tx3);
}

.tlh {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--s2);
  font-size: var(--fxs);
  color: var(--tx3);
}

details {
  border-top: 1px solid var(--bd);
}

details:last-of-type {
  border-bottom: 1px solid var(--bd);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
  padding: var(--s3) 0;
  list-style: none;
  cursor: pointer;
  font-family: var(--fd);
  font-size: var(--fmd);
  font-weight: 600;
  color: var(--tx);
  transition: color var(--fast) var(--eo);
}

summary::-webkit-details-marker {
  display: none;
}

summary:hover,
details[open] > summary {
  color: var(--ac);
}

.fi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border: 1px solid var(--bd);
  border-radius: 50%;
  background: var(--su2);
  color: var(--tx2);
  transition:
    background var(--fast) var(--eo),
    color var(--fast) var(--eo),
    border-color var(--fast) var(--eo);
}

.fi-v,
.fi-h {
  transform-origin: 6px 6px;
  transition: transform var(--base) var(--eo);
}

details[open] .fi {
  background: var(--ac);
  border-color: var(--ac);
  color: #ffffff;
}

details[open] .fi-v {
  transform: rotate(45deg);
}

details[open] .fi-h {
  transform: rotate(-45deg);
}

.fa {
  padding-bottom: var(--s3);
  font-size: var(--fmd);
  line-height: 1.75;
  color: var(--tx2);
}

details[open] > .fa {
  animation: faq-reveal .38s ease;
}

@keyframes faq-reveal {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cgr {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s5);
}

.ct2 {
  line-height: 1.15;
  margin-bottom: var(--s3);
}

.cd {
  margin-bottom: var(--s4);
  line-height: 1.75;
}

.cpk {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.cpi {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--fsm);
  color: var(--tx2);
}

.cdc {
  margin-top: var(--s4);
  border-top: 1px solid var(--bd);
}

.cdci {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
  padding: var(--s3) 0;
  border-bottom: 1px solid var(--bd);
  text-decoration: none;
  color: inherit;
}

.cdcx {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.cdcl {
  font-size: var(--fxs);
  font-family: var(--fb);
  font-weight: 500;
  color: var(--tx3);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.cdcv {
  font-size: var(--fxl);
  font-family: var(--fd);
  font-weight: 700;
  color: var(--tx);
  line-height: 1.1;
  overflow-wrap: break-word;
  transition: color var(--base) var(--eo);
}

.cdca {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--tx3);
  stroke-width: 1.75;
  transition: transform var(--base) var(--sp), color var(--base) var(--eo);
}

.cdci:hover .cdcv {
  color: var(--ac);
}

.cdci:hover .cdca {
  transform: translate(3px, -3px);
  color: var(--ac);
}

.cpic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: var(--rsm);
  background: var(--ac2);
  color: var(--ac);
  transition: background var(--base) var(--eo), color var(--base) var(--eo);
}

.cpic svg {
  width: 15px;
  height: 15px;
  stroke-width: 1.85;
}

@media (min-width: 640px) {
  .stg {
    grid-template-columns: repeat(4, 1fr);
  }

  .sti {
    border-bottom: none;
  }

  .sti:nth-child(2n) {
    border-right: 1px solid var(--bd);
  }

  .sti:last-child {
    border-right: none;
  }

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

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

  .tl .ts {
    flex-basis: clamp(250px, 36vw, 340px);
  }

  .cgr {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: var(--s6);
    align-items: start;
  }
}

@media (min-width: 900px) {
  .whg {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ctabs {
    display: none !important;
  }

  .tl {
    overflow-x: hidden;
  }

  .tl .ts {
    flex: 1 1 0;
    min-width: 0;
  }

  .tlh {
    display: none;
  }
}

@media (max-width: 899px) {
  .ctabs {
    display: flex;
  }

  .cbox table th:nth-child(3),
  .cbox table th:nth-child(4),
  .cbox table td:nth-child(3),
  .cbox table td:nth-child(4) {
    display: none;
  }

  #cs:checked ~ .ctabs ~ .cbox table th:nth-child(2),
  #cs:checked ~ .ctabs ~ .cbox table td:nth-child(2) {
    display: table-cell;
  }

  #cs:checked ~ .ctabs ~ .cbox table th:nth-child(3),
  #cs:checked ~ .ctabs ~ .cbox table td:nth-child(3),
  #cs:checked ~ .ctabs ~ .cbox table th:nth-child(4),
  #cs:checked ~ .ctabs ~ .cbox table td:nth-child(4) {
    display: none;
  }

  #cr:checked ~ .ctabs ~ .cbox table th:nth-child(3),
  #cr:checked ~ .ctabs ~ .cbox table td:nth-child(3) {
    display: table-cell;
  }

  #cr:checked ~ .ctabs ~ .cbox table th:nth-child(2),
  #cr:checked ~ .ctabs ~ .cbox table td:nth-child(2),
  #cr:checked ~ .ctabs ~ .cbox table th:nth-child(4),
  #cr:checked ~ .ctabs ~ .cbox table td:nth-child(4) {
    display: none;
  }

  #cm:checked ~ .ctabs ~ .cbox table th:nth-child(4),
  #cm:checked ~ .ctabs ~ .cbox table td:nth-child(4) {
    display: table-cell;
  }

  #cm:checked ~ .ctabs ~ .cbox table th:nth-child(2),
  #cm:checked ~ .ctabs ~ .cbox table td:nth-child(2),
  #cm:checked ~ .ctabs ~ .cbox table th:nth-child(3),
  #cm:checked ~ .ctabs ~ .cbox table td:nth-child(3) {
    display: none;
  }
}

@media (max-width: 479px) {
  .hbg {
    --grid: 44px;
  }

  .hh1-mark {
    padding-inline: 0.12em;
  }

  .btn-lg {
    width: 100%;
  }

  .hact .btn {
    min-height: 40px;
    padding: 9px 16px;
    font-size: var(--fsm);
  }
}

/* ── ABOUT ── */
#about {
  padding: var(--s6) 0;
  overflow: clip;
}

.ab-in {
  display: grid;
  gap: var(--s4) var(--s5);
  align-items: center;
}

.ab-visual {
  display: flex;
  justify-content: center;
}

.ab-tilt {
  width: clamp(200px, 35vw, 300px);
  aspect-ratio: 1;
  transform-style: preserve-3d;
  will-change: transform;
}

.ab-circle {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 40px rgba(232, 67, 10, 0.18));
}

.ab-name {
  font-size: clamp(1.8rem, 1.2rem + 2.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.ab-role {
  margin-top: 0.4rem;
  font-size: var(--fmd);
  font-weight: 600;
  color: var(--ac);
}

.ab-desc {
  margin-top: var(--s3);
  max-width: 42ch;
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.1rem);
  color: var(--tx2);
  line-height: 1.72;
}

.ab-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--s5);
  color: var(--tx2);
  font-size: var(--fsm);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.ab-cta:hover {
  color: var(--tx);
}

.ab-arrow {
  width: 1.5rem;
  height: 1.5rem;
  animation: ab-bounce 1.6s ease-in-out infinite;
}

@keyframes ab-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}

@media (min-width: 640px) {
  .ab-in {
    grid-template-columns: auto 1fr;
  }
}

/* ════════════════════════════════════════════════════
   MOTION — kinetic hero, perpetual ruch, hover micro
   ════════════════════════════════════════════════════ */

@media (prefers-reduced-motion: no-preference) {

  /* ── HERO H1 — line clip reveal ── */
  /* .hh1 keeps .fu only as the .in trigger hook; its own
     fade-up is neutralised so the lines animate instead */
  .hh1.fu {
    opacity: 1;
    transform: none;
  }

  .hh1-line {
    clip-path: inset(0 0 110% 0);
    transform: translateY(0.45em);
    transition:
      clip-path 0.8s var(--ease-rev),
      transform 0.8s var(--ease-rev);
  }

  .hh1.in .hh1-line {
    clip-path: inset(0 0 -12% 0);
    transform: none;
  }

  .hh1.in .hh1-line:nth-child(2) { transition-delay: 0.12s; }
  .hh1.in .hh1-line:nth-child(3) { transition-delay: 0.24s; }

  /* ── ABOUT logo — idle float (tilt JS drives the parent
     .ab-tilt, so the float lives on the inner image) ── */
  .ab-circle {
    animation: ab-float 6s ease-in-out infinite;
  }

  @keyframes ab-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-7px); }
  }

  /* ── EYEBROW DASH — perpetual breathe ── */
  /* the 16px dash before every section eyebrow gets a slow,
     visible stretch+brighten on a 3s loop */
  .ey::before {
    transform-origin: right center;
    animation: ey-pulse 3s ease-in-out infinite;
  }

  @keyframes ey-pulse {
    0%, 100% { transform: scaleX(1);   opacity: 0.75; }
    50%      { transform: scaleX(1.55); opacity: 1; }
  }

  /* ── PROCESS dot — visible double-ring pulse ── */
  .prdot {
    animation: dot-pulse 2s ease-in-out infinite;
  }

  @keyframes dot-pulse {
    0%, 100% {
      transform: scale(1);
      box-shadow:
        0 0 0 0 rgba(31, 140, 82, 0.55),
        0 0 0 0 rgba(31, 140, 82, 0.35);
    }
    50% {
      transform: scale(1.25);
      box-shadow:
        0 0 0 4px rgba(31, 140, 82, 0.2),
        0 0 0 9px rgba(31, 140, 82, 0);
    }
  }

  /* ── PROCESS timeline — fake-hover sweep through 5 steps ── */
  .ts {
    position: relative;
  }

  .ts::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(232, 67, 10, 0.16) 0%,
      rgba(232, 67, 10, 0.06) 35%,
      transparent 75%
    );
    opacity: 0;
    pointer-events: none;
    animation: ts-sweep 5s linear infinite;
  }

  @keyframes ts-sweep {
    0%   { opacity: 0; }
    4%   { opacity: 1; }
    16%  { opacity: 1; }
    20%  { opacity: 0; }
    100% { opacity: 0; }
  }

  .ts:nth-child(1)::after { animation-delay: 0s; }
  .ts:nth-child(2)::after { animation-delay: 1s; }
  .ts:nth-child(3)::after { animation-delay: 2s; }
  .ts:nth-child(4)::after { animation-delay: 3s; }
  .ts:nth-child(5)::after { animation-delay: 4s; }

  /* ── FEATURED badge — slow sheen sweep ── */
  .pcbd {
    position: relative;
    overflow: hidden;
  }

  .pcbd::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      100deg,
      transparent 30%,
      rgba(255, 255, 255, 0.45) 50%,
      transparent 70%
    );
    transform: translateX(-130%);
    animation: badge-sheen 4.5s ease-in-out infinite;
  }

  @keyframes badge-sheen {
    0%, 65%, 100% { transform: translateX(-130%); }
    82%           { transform: translateX(130%); }
  }
}

/* ── CARD SPOTLIGHT — cursor-tracked glow ── */
/* --sx/--sy set in site.js; content is lifted above the ::after */
.wc,
.pc {
  position: relative;
  overflow: hidden;
}

.wc > *,
.pc > * {
  position: relative;
  z-index: 1;
}

.wc::after,
.pc::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    230px circle at var(--sx, 50%) var(--sy, 50%),
    rgba(232, 67, 10, 0.1),
    transparent 62%
  );
  opacity: 0;
  transition: opacity 0.3s var(--eo);
}

.wc:hover::after,
.pc:hover::after {
  opacity: 1;
}

/* featured (dark) card — white-tinted glow instead of accent */
.pc.ft::after {
  background: radial-gradient(
    230px circle at var(--sx, 50%) var(--sy, 50%),
    rgba(255, 255, 255, 0.1),
    transparent 62%
  );
}

/* ── ICONS — spring lift on card / item hover ── */
.wci {
  transition:
    background var(--base) var(--eo),
    color var(--base) var(--eo),
    transform 0.4s var(--sp);
}

.wc:hover .wci {
  transform: scale(1.09) rotate(-5deg);
}

.cpic {
  transition:
    background var(--base) var(--eo),
    color var(--base) var(--eo),
    transform 0.4s var(--sp);
}

.cpi:hover .cpic {
  transform: scale(1.09) rotate(-5deg);
  background: var(--ac);
  color: #ffffff;
}
