:root {
  --ink: #101714;
  --ink-2: #2f3d37;
  --muted: #5c6b64;
  --line: rgba(16, 23, 20, 0.1);
  --bg: #f2f5f3;
  --bg-2: #e4ece8;
  --white: #fff;
  --teal: #0b6b5c;
  --teal-2: #084940;
  --lime: #c6e04a;
  --accent-glow: rgba(198, 224, 74, 0.35);
  --header: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 20px;
  line-height: 1.8;
  color: var(--ink);
  background:
    radial-gradient(900px 480px at 12% -8%, rgba(198, 224, 74, 0.12), transparent 60%),
    radial-gradient(800px 420px at 100% 18%, rgba(11, 107, 92, 0.1), transparent 55%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
  text-align: center;
  position: relative;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 70;
  background: transparent;
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--teal), var(--lime));
  transition: width 0.05s linear;
}

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

a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

h1 { font-size: clamp(3rem, 7vw, 5rem); }
h2 { font-size: clamp(2.25rem, 4.2vw, 3.3rem); }
h3 { font-size: 1.45rem; }

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

.center { text-align: center; }

/* Mobile-only line breaks for readability */
br.mbr {
  display: none;
}

@media (max-width: 768px) {
  br.mbr {
    display: inline;
  }

  h1, h2, h3, h4,
  .lead,
  .hero-desc,
  .hero-kicker,
  .quad p,
  .diff-grid p,
  .diff-grid .diff-body,
  .info-dl dd,
  .function-copy p,
  .function-copy .tags,
  .function-copy .highlight,
  .check-list li,
  .compare-box li,
  .tri strong,
  .tri p,
  .partner-item h4,
  .meta-list dd,
  .note {
    word-break: keep-all;
    overflow-wrap: break-word;
    line-height: 1.55;
  }

  .hero-desc,
  .lead,
  .quad p,
  .diff-grid p,
  .diff-grid .diff-body,
  .function-copy p {
    line-height: 1.7;
  }

  .btn {
    width: min(100%, 320px);
    white-space: normal;
    line-height: 1.35;
    padding: 14px 18px;
    min-height: 56px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--lime);
}

.eyebrow.light { color: var(--lime); }
.eyebrow.light::before,
.eyebrow.light::after { background: rgba(198, 224, 74, 0.7); }

.lead {
  margin: 14px auto 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 1.25rem;
  font-weight: 500;
}

.lead.light { color: rgba(255,255,255,0.78); }

.accent { color: var(--teal); }
.accent em {
  font-style: normal;
  font-weight: 800;
}

.logo-mark {
  width: 26px;
  height: 20px;
  flex: 0 0 auto;
  background:
    linear-gradient(#5eb3e4, #5eb3e4) 0 20% / 18% 70% no-repeat,
    linear-gradient(#2f8f9a, #2f8f9a) 27% 0 / 18% 100% no-repeat,
    linear-gradient(#3f9a55, #3f9a55) 54% 10% / 18% 80% no-repeat,
    linear-gradient(#a8c93a, #a8c93a) 81% 30% / 18% 55% no-repeat;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: var(--header);
  display: flex;
  align-items: center;
  background: rgba(244, 246, 245, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(255,255,255,0.94);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  height: 100%;
  width: min(1180px, calc(100% - 40px));
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 18px;
  justify-self: start;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 8px 28px;
  font-size: 18px;
  font-weight: 650;
  color: var(--ink-2);
  text-align: center;
  justify-self: center;
  grid-column: 2;
}

.nav a {
  white-space: nowrap;
  padding: 6px 2px;
  transition: color 0.2s;
}

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

.nav-cta-mobile {
  display: none;
}

.header-cta,
.nav-cta {
  justify-self: end;
  margin-left: 0;
  padding: 12px 20px;
  background: var(--teal);
  color: #fff !important;
  font-size: 17px;
  font-weight: 700;
  transition: transform 0.25s var(--ease), background 0.25s;
}

.nav-cta:hover,
.header-cta:hover {
  background: var(--teal-2);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 8px;
  background: var(--ink);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  font: inherit;
  font-weight: 700;
  font-size: 17px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-2); }
.btn-line {
  background: transparent;
  border-color: rgba(255,255,255,0.45);
  color: #fff;
}
.btn-block { width: 100%; }

.hero .btn-primary {
  background: var(--lime);
  color: #0a322e;
  box-shadow: 0 0 0 0 var(--accent-glow);
  animation: pulseGlow 2.8s ease-in-out infinite;
}
.hero .btn-primary:hover { background: #d4e86a; }

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow); }
  50% { box-shadow: 0 0 0 12px transparent; }
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header) + 32px) 0 72px;
  color: #fff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #06201d;
}

.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@media (max-width: 768px) {
  .hero-bg {
    object-position: center 35%;
  }
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(4, 28, 25, 0.18) 0%, rgba(4, 28, 25, 0.42) 68%, rgba(4, 20, 18, 0.58) 100%),
    linear-gradient(180deg, rgba(4, 28, 25, 0.22) 0%, rgba(4, 28, 25, 0.28) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.hero-copy {
  width: min(860px, 100%);
  margin-inline: auto;
  text-align: center;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-kicker {
  margin: 0 0 22px;
  font-size: 17px;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  text-align: center;
  word-break: keep-all;
}

.hero h1 {
  text-align: center;
  word-break: keep-all;
  line-height: 1.22;
}

.hero h1 .hl {
  color: var(--lime);
}

.hero-desc {
  margin: 22px auto 0;
  max-width: 600px;
  font-size: clamp(1.25rem, 2.4vw, 1.5rem);
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  line-height: 1.8;
  text-align: center;
  word-break: keep-all;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 2;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  animation: bob 2.2s ease-in-out infinite;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.55; }
  50% { transform: translate(-50%, 6px); opacity: 1; }
}

.anim-hero {
  opacity: 0;
  transform: translateY(28px);
  animation: riseIn 0.9s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}

@keyframes riseIn {
  to {
    opacity: 1;
    transform: none;
  }
}

/* Sections */
.section {
  padding: clamp(80px, 11vw, 120px) 0;
  position: relative;
}

.section.tint,
.section.dark {
  overflow: hidden;
  isolation: isolate;
}

.section.tint {
  background: transparent;
}

.section.dark {
  background: transparent;
  color: #fff;
}

.section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.06);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

.section.tint .section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 15%, rgba(255, 255, 255, 0.12), transparent 50%),
    linear-gradient(180deg, rgba(242, 245, 243, 0.42) 0%, rgba(228, 236, 232, 0.5) 55%, rgba(236, 242, 238, 0.55) 100%);
}

.section.tint .section-bg img {
  filter: none;
  opacity: 1;
}

.section.dark .section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(4, 28, 25, 0.28) 0%, rgba(4, 28, 25, 0.62) 70%, rgba(4, 20, 18, 0.78) 100%),
    linear-gradient(160deg, rgba(11, 107, 92, 0.42) 0%, rgba(6, 46, 41, 0.72) 100%);
}

.section.tint > *:not(.section-bg),
.section.dark > *:not(.section-bg) {
  position: relative;
  z-index: 1;
}

.section.dark h2 { color: #fff; }

.section h2 {
  position: relative;
  display: inline-block;
}

.section h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 42px;
  height: 3px;
  transform: translateX(-50%);
  background: var(--lime);
  border-radius: 2px;
}

.section.dark h2::after {
  background: rgba(198, 224, 74, 0.85);
}

/* Image frames — no crop */
.img-frame {
  margin: 28px auto 0;
  max-width: 720px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 14px;
  overflow: hidden;
}

.img-frame.feature {
  max-width: 760px;
}

.img-frame-sm,
.ai-visual {
  max-width: 360px;
  padding: 8px;
  margin-top: 22px;
}

.img-frame-sm img,
.ai-visual img {
  border-radius: 2px;
}

@media (min-width: 769px) {
  .ai-visual {
    max-width: 340px;
  }
}

@media (max-width: 768px) {
  .ai-visual {
    max-width: 420px;
  }
}

.img-frame.on-dark {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
}

.img-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-inline: auto;
}

.img-frame figcaption {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.img-stack {
  display: grid;
  gap: 18px;
  margin-top: 8px;
}

/* Technology: sequential image emphasis */
.img-stack.pulse-seq {
  gap: 28px;
}

.img-stack.pulse-seq .img-frame {
  overflow: visible;
  position: relative;
  z-index: 1;
}

.img-stack.pulse-seq .img-frame img {
  transform-origin: center center;
  will-change: transform;
  display: block;
}

.img-stack.pulse-seq.is-in .img-frame:nth-child(1) {
  animation: techFrameFocus 7s ease-in-out infinite;
}

.img-stack.pulse-seq.is-in .img-frame:nth-child(2) {
  animation: techFrameFocus 7s ease-in-out infinite;
  animation-delay: 3.5s;
}

.img-stack.pulse-seq.is-in .img-frame:nth-child(1) img {
  animation: techImgPulse 7s ease-in-out infinite;
}

.img-stack.pulse-seq.is-in .img-frame:nth-child(2) img {
  animation: techImgPulse 7s ease-in-out infinite;
  animation-delay: 3.5s;
}

@keyframes techImgPulse {
  0%,
  12%,
  45%,
  100% {
    transform: scale(1);
  }
  22% {
    transform: scale(1.07);
  }
  34% {
    transform: scale(1);
  }
}

@keyframes techFrameFocus {
  0%,
  12%,
  45%,
  100% {
    box-shadow: 0 0 0 transparent;
    border-color: var(--line);
    z-index: 1;
  }
  22% {
    box-shadow: 0 22px 48px rgba(11, 107, 92, 0.2);
    border-color: rgba(11, 107, 92, 0.4);
    z-index: 3;
  }
  34% {
    box-shadow: 0 0 0 transparent;
    border-color: var(--line);
    z-index: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .img-stack.pulse-seq.is-in .img-frame,
  .img-stack.pulse-seq.is-in .img-frame img {
    animation: none !important;
  }
}

/* Info */
.info-dl {
  margin: 36px auto 0;
  max-width: 720px;
  text-align: center;
}

.info-dl > div {
  display: grid;
  gap: 8px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-size: 1.15rem;
  justify-items: center;
}

.info-dl dt {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--teal);
}

.info-dl dd {
  margin: 0;
  color: var(--ink-2);
  max-width: 560px;
  font-size: 1.12rem;
  line-height: 1.6;
  font-weight: 500;
}

/* Quad */
.quad {
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 860px;
  text-align: center;
}

.quad article {
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line);
  padding: 30px 24px;
  min-height: 140px;
  backdrop-filter: blur(8px);
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.quad article::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--lime));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s var(--ease);
}

.quad article:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(11, 107, 92, 0.12);
  border-color: rgba(11, 107, 92, 0.2);
}

.quad article:hover::before {
  transform: scaleX(1);
}

.quad b {
  display: block;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 1.05rem;
  font-weight: 800;
}

.quad b.hl,
.light-quad b.hl {
  display: inline;
}

.quad p {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.55;
}

.light-quad article {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
  padding: 32px 24px;
  min-height: 150px;
}

.light-quad b {
  color: var(--lime);
  font-size: 1.55rem;
  margin-bottom: 14px;
}

.light-quad b.hl {
  font-size: 1.55rem;
}

.light-quad p {
  color: rgba(255,255,255,0.92);
  font-weight: 650;
  font-size: 1.35rem;
  line-height: 1.6;
}

/* Compare */
.compare {
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 920px;
  text-align: center;
}

.compare-box {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 36px 28px;
}

.compare-box.accent {
  background: #e8f3ef;
  border-color: #b7d2c8;
}

.compare-box h3 {
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  text-align: center;
  font-size: clamp(1.55rem, 2.8vw, 1.85rem);
  font-weight: 800;
  line-height: 1.35;
}

.compare-box ul {
  display: grid;
  gap: 14px;
  justify-items: center;
}

.compare-box li {
  position: relative;
  padding-left: 0;
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.55;
  color: var(--ink-2);
}

.compare-box li .hl {
  font-size: inherit;
  font-weight: inherit;
}

.compare-box li::before {
  content: "·";
  position: static;
  display: inline;
  margin-right: 6px;
  width: auto;
  height: auto;
  background: none;
  color: var(--teal);
  font-weight: 800;
}

.compare-box.accent li::before { background: none; color: var(--teal); }

.why-row {
  margin: 20px auto 0;
  max-width: 920px;
  padding: 36px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  text-align: center;
}

.why-row h3 {
  margin-bottom: 22px;
  font-size: clamp(1.65rem, 3.2vw, 2rem);
  font-weight: 800;
  line-height: 1.35;
}

.why-row h3 .hl {
  font-size: inherit;
  font-weight: inherit;
}

.tri {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  text-align: center;
}

.tri article {
  padding: 26px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
}

.tri strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.4;
  font-weight: 800;
  color: var(--teal-2);
}

.tri strong .hl {
  font-size: inherit;
  font-weight: inherit;
}

.tri p {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 600;
  color: var(--ink-2);
}

/* Diff */
.diff-grid {
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 860px;
  text-align: center;
}

.diff-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 34px 26px;
  transition: transform 0.35s var(--ease);
}

.diff-grid article:hover { transform: translateY(-4px); }

.diff-grid .diff-num {
  display: block;
  margin-bottom: 14px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #8fb12a;
}

.diff-grid .diff-title {
  margin: 0;
  font-size: clamp(1.85rem, 3.4vw, 2.25rem);
  line-height: 1.35;
  font-weight: 800;
  color: var(--ink);
}

.diff-grid .diff-title .hl,
.diff-grid .diff-title .hl-strong {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}

.diff-grid .diff-body {
  margin: 16px 0 0;
  font-size: 1.35rem;
  line-height: 1.7;
  font-weight: 600;
  color: var(--ink-2);
}

/* Proof */
.stat-board {
  margin: 28px auto 0;
  max-width: 760px;
  display: grid;
  gap: 18px;
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  text-align: center;
}

.stat-hero p {
  margin: 0;
  font-size: 1.15rem;
  color: var(--muted);
  font-weight: 700;
}

.stat-hero .stat-sub {
  margin-top: 12px;
  font-size: 1.35rem;
  color: var(--ink-2);
}

.stat-hero strong {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 10px;
  font-size: clamp(2.4rem, 8vw, 3.4rem);
  color: var(--teal);
  line-height: 1.15;
}

.stat-hero .arrow {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.7em;
}

.meta-list {
  margin: 0;
  display: grid;
  gap: 0;
  text-align: center;
}

.meta-list > div {
  display: grid;
  gap: 8px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-size: 1.3rem;
  justify-items: center;
}

.meta-list dt {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: var(--teal);
}

.meta-list dd {
  margin: 0;
  color: var(--ink-2);
  font-weight: 700;
  line-height: 1.55;
  font-size: 1.25rem;
}

.breakdown {
  margin: 18px auto 0;
  max-width: 760px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.breakdown > div {
  padding: 24px 16px;
  background: var(--white);
  border: 1px solid var(--line);
}

.breakdown h4 {
  margin-bottom: 12px;
  font-size: 1.05rem;
  color: var(--muted);
  font-weight: 800;
}

.breakdown p {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.5;
}

.breakdown b { color: var(--teal); }

/* Impact highlight — underline fits exact text width (per line) */
.hl {
  display: inline;
  color: var(--teal-2);
  font-weight: 800;
  padding: 0;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background-image: linear-gradient(
    to top,
    rgba(198, 224, 74, 0.62) 0,
    rgba(198, 224, 74, 0.62) 0.3em,
    transparent 0.3em
  );
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 0.65s var(--ease);
}

.hl.is-on {
  background-size: 100% 100%;
}

.hl-strong {
  color: #084940;
  background-image: linear-gradient(
    to top,
    rgba(198, 224, 74, 0.78) 0,
    rgba(198, 224, 74, 0.78) 0.34em,
    transparent 0.34em
  );
}

.hero .hl {
  color: #eef6c8;
  background-image: linear-gradient(
    to top,
    rgba(198, 224, 74, 0.48) 0,
    rgba(198, 224, 74, 0.48) 0.3em,
    transparent 0.3em
  );
}

.hero .hl-strong {
  color: #f4f9d4;
  background-image: linear-gradient(
    to top,
    rgba(198, 224, 74, 0.55) 0,
    rgba(198, 224, 74, 0.55) 0.34em,
    transparent 0.34em
  );
}

.section.dark .hl,
.consult .hl {
  color: #eef6c8;
  background-image: linear-gradient(
    to top,
    rgba(198, 224, 74, 0.45) 0,
    rgba(198, 224, 74, 0.45) 0.3em,
    transparent 0.3em
  );
}

.section.dark .hl-strong,
.consult .hl-strong {
  color: #fff;
  background-image: linear-gradient(
    to top,
    rgba(198, 224, 74, 0.55) 0,
    rgba(198, 224, 74, 0.55) 0.34em,
    transparent 0.34em
  );
}

@media (prefers-reduced-motion: reduce) {
  .hl {
    transition: none;
  }
  .hl.is-on {
    background-size: 100% 100%;
  }
}

#proof h2 .accent.impact {
  display: inline-block;
  font-size: 1.15em;
}

#proof h2 .accent em {
  font-style: normal;
  font-weight: 900;
  letter-spacing: -0.03em;
}

@media (max-width: 768px) {
  .stat-board {
    padding: 28px 18px;
    gap: 14px;
  }

  .stat-hero p {
    font-size: 1.15rem;
  }

  .stat-hero .stat-sub {
    font-size: 1.4rem;
  }

  .stat-hero strong {
    font-size: clamp(2.6rem, 12vw, 3.6rem);
    gap: 8px 12px;
  }

  .meta-list > div {
    font-size: 1.35rem;
    padding: 18px 0;
  }

  .meta-list dt {
    font-size: 1.1rem;
  }

  .meta-list dd {
    font-size: 1.3rem;
  }

  .breakdown {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .breakdown > div {
    padding: 24px 16px;
  }

  .breakdown h4 {
    font-size: 1.1rem;
  }

  .breakdown p {
    font-size: 1.45rem;
  }

  #proof h2 {
    font-size: clamp(2.2rem, 9vw, 2.8rem);
  }

  #proof h2 .accent.impact {
    font-size: 1.25em;
  }
}

.note {
  margin: 18px auto 0;
  max-width: 640px;
  font-size: 15px;
  color: var(--muted);
}

.sub-label {
  margin: 28px 0 12px;
  font-size: 18px;
  color: var(--ink-2);
}

/* Cases */
.case-grid {
  margin: 0 auto;
  max-width: 900px;
}

.case-track {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
}

.case-grid img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  padding: 6px;
}

/* Horizontal sliders */
.slider-block {
  margin-top: 36px;
  width: min(1180px, calc(100% - 24px));
  margin-inline: auto;
}

.slider-head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  padding: 0 4px;
  text-align: center;
}

.slider-head h3 {
  font-size: 1.25rem;
  color: var(--ink);
  grid-column: 2;
}

.slider-nav {
  display: flex;
  gap: 8px;
  grid-column: 3;
  justify-self: end;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.slider-btn:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
  transform: translateY(-1px);
}

.slider {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  transition: height 0.35s var(--ease);
}

.slider-track {
  display: flex;
  align-items: flex-start;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}

.slider-item {
  flex: 0 0 100%;
  margin: 0;
  padding: 28px 24px 32px;
  box-sizing: border-box;
}

.patent-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(78vh, 720px);
  background: #f7f8f7;
}

.patent-item img {
  width: auto;
  max-width: 100%;
  max-height: min(72vh, 680px);
  height: auto;
  object-fit: contain;
}

/* Patent / cert horizontal strip — auto marquee, no borders */
.doc-section {
  margin-top: 36px;
  width: 100%;
}

.doc-title {
  margin: 0 0 18px;
  text-align: center;
  font-size: 1.4rem;
}

.strip-wrap {
  position: relative;
  width: 100%;
}

.strip-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(20, 40, 36, 0.12);
  transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
}

.strip-btn:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
  transform: translateY(-50%) scale(1.05);
}

.strip-btn:active {
  transform: translateY(-50%) scale(0.97);
}

.strip-prev { left: max(8px, calc(50% - 560px)); }
.strip-next { right: max(8px, calc(50% - 560px)); }

.case-strip-wrap .strip-btn {
  display: none;
}

.h-strip {
  overflow: hidden;
  padding: 10px 0;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.h-strip-track {
  display: flex;
  gap: 24px;
  width: max-content;
  align-items: center;
  animation: marquee 42s linear infinite;
  will-change: transform;
}

.h-strip:hover .h-strip-track {
  animation-play-state: paused;
}

.h-strip.lab-strip .h-strip-track {
  animation-duration: 36s;
  animation-direction: reverse;
}

.strip-wrap.is-ready .h-strip-track,
.strip-wrap.is-ready .case-track {
  animation: none !important;
}

.h-strip img {
  flex: 0 0 auto;
  width: auto;
  height: min(400px, 52vh);
  max-width: none;
  object-fit: contain;
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
  transition: transform 0.35s var(--ease);
}

.h-strip img:hover {
  transform: scale(1.03);
}

@media (max-width: 640px) {
  .strip-wrap.is-snap .h-strip img:hover {
    transform: none;
  }
}

.lab-strip img {
  height: min(340px, 46vh);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .h-strip-track,
  .trust-ticker-track,
  .hero-bg,
  .section-bg img,
  .consult-bg img,
  .hero .btn-primary,
  .img-stack.pulse-seq.is-in .img-frame,
  .img-stack.pulse-seq.is-in .img-frame img {
    animation: none !important;
  }
}

/* Trust ticker under hero */
.trust-ticker {
  overflow: hidden;
  background: #0b6b5c;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.trust-ticker-track {
  display: flex;
  gap: 48px;
  width: max-content;
  padding: 14px 0;
  animation: marquee 28s linear infinite;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.trust-ticker-track span {
  position: relative;
  padding-right: 48px;
}

.trust-ticker-track span::after {
  content: "◆";
  position: absolute;
  right: 0;
  color: var(--lime);
  font-size: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.partner-item {
  text-align: center;
}

.partner-item h4 {
  margin: 0 0 8px;
  font-size: clamp(1.7rem, 3.5vw, 2.25rem);
  color: var(--teal-2);
}

.partner-en {
  margin: 0 0 18px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.partner-title-img {
  display: flex;
  justify-content: center;
  margin: 0 auto 18px;
  max-width: 420px;
}

.partner-title-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.partner-photos {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 12px;
  align-items: center;
  max-width: 980px;
  margin-inline: auto;
}

.partner-photos img {
  width: 100%;
  max-height: min(58vh, 520px);
  height: auto;
  object-fit: contain;
  background: #f3f5f4;
  border: 1px solid var(--line);
  padding: 8px;
}

.partner-slider .slider-dots {
  margin-top: 12px;
  margin-bottom: 0;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border: 0;
  padding: 0;
  border-radius: 0;
  background: #c5d0cb;
  cursor: pointer;
}

.slider-dot.is-active {
  background: var(--teal);
  width: 22px;
}

/* Function */
.function-copy {
  margin: 24px auto 0;
  max-width: 720px;
  text-align: center;
}

.function-copy h3 {
  font-size: clamp(1.7rem, 4vw, 2rem);
  margin-bottom: 14px;
  font-weight: 800;
}

.function-copy .tags {
  margin: 0 0 18px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
}

.function-copy p {
  margin: 0 0 16px;
  color: rgba(255,255,255,0.9);
  font-size: 1.2rem;
  line-height: 1.85;
  font-weight: 500;
}

.function-copy .highlight {
  padding: 20px 22px;
  background: rgba(214, 235, 116, 0.12);
  border: 1px solid rgba(214, 235, 116, 0.28);
  color: #eef6c8;
  font-weight: 700;
  font-size: 1.2rem;
  text-align: center;
}

/* Consult */
.consult {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: transparent;
}

.consult-bg {
  position: absolute;
  inset: 0;
}

.consult-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  filter: none;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

.consult-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(4, 28, 25, 0.28) 0%, rgba(4, 28, 25, 0.62) 70%, rgba(4, 20, 18, 0.78) 100%),
    linear-gradient(160deg, rgba(11, 107, 92, 0.42) 0%, rgba(6, 46, 41, 0.72) 100%);
}

.consult-inner {
  position: relative;
  z-index: 1;
}

.check-list {
  margin: 22px auto 0;
  display: grid;
  gap: 10px;
  max-width: 480px;
  text-align: center;
  justify-items: center;
}

.check-list li {
  position: relative;
  padding-left: 0;
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
}

.check-list li::before {
  content: "·";
  position: static;
  display: inline;
  margin-right: 6px;
  width: auto;
  height: auto;
  background: none;
  color: var(--lime);
  font-weight: 800;
}

.form {
  margin: 28px auto 0;
  max-width: 480px;
  padding: 28px 24px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(255,255,255,0.3);
  display: grid;
  gap: 12px;
  text-align: center;
  color: var(--ink);
}

.form label {
  display: grid;
  gap: 6px;
  font-size: 16px;
  font-weight: 700;
  justify-items: center;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fafbfa;
  padding: 12px;
  font: inherit;
  font-weight: 500;
  color: var(--ink);
  outline: none;
  text-align: center;
}

.form input:focus,
.form textarea:focus {
  border-color: var(--teal);
  background: #fff;
}

.form .agree {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 4px;
  padding: 14px 16px;
  background: #f2f6f4;
  border: 1px solid #d7e2dc;
  font-weight: 500;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
  word-break: keep-all;
  overflow-wrap: break-word;
  transition: border-color 0.2s, background 0.2s;
}

.form .agree:hover {
  border-color: rgba(11, 107, 92, 0.35);
  background: #eef5f1;
}

.form .agree:has(input:checked) {
  border-color: var(--teal);
  background: #e8f3ef;
}

.form .agree input {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin: 2px 0 0;
  accent-color: var(--teal);
  cursor: pointer;
}

.form .agree-text {
  display: grid;
  gap: 4px;
  min-width: 0;
  flex: 1;
}

.form .agree-text strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.35;
}

.form .agree-text small {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.45;
}

.form-note {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal-2);
  text-align: center;
}

.form-note.is-error { color: #a33; }

.form .btn-primary {
  background: var(--teal);
  color: #fff;
}

/* Footer */
.footer {
  padding: 36px 0 48px;
  background: #e4ebe7;
  border-top: 1px solid var(--line);
}

.footer-inner { max-width: 640px; }

.footer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-brand strong {
  letter-spacing: 0.04em;
}

.footer p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* Mobile fixed bottom CTA — hidden on desktop */
.mobile-cta {
  display: none;
}

/* Reveal animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

.quad article[data-reveal]:nth-child(2),
.diff-grid article[data-reveal]:nth-child(2),
.breakdown > div[data-reveal]:nth-child(2) {
  transition-delay: 0.08s;
}
.quad article[data-reveal]:nth-child(3),
.diff-grid article[data-reveal]:nth-child(3),
.breakdown > div[data-reveal]:nth-child(3) {
  transition-delay: 0.16s;
}
.quad article[data-reveal]:nth-child(4),
.diff-grid article[data-reveal]:nth-child(4) {
  transition-delay: 0.24s;
}

/* Responsive */
@media (max-width: 900px) {
  .compare,
  .tri,
  .breakdown,
  .diff-grid {
    grid-template-columns: 1fr 1fr;
  }

  .case-track {
    grid-template-columns: 1fr 1fr;
  }

  .partner-photos {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .partner-slider .slider-item {
    padding: 18px 14px 16px;
  }

  .partner-item h4 {
    font-size: 1.55rem;
    margin-bottom: 6px;
  }

  .partner-en {
    margin-bottom: 12px;
    font-size: 0.95rem;
  }

  .partner-photos img {
    max-height: min(36vh, 280px);
    padding: 4px;
  }

  .partner-slider .slider-dots {
    margin-top: 10px;
  }

  #partners.section {
    padding-bottom: 48px;
  }

  .h-strip img {
    height: min(300px, 44vh);
  }

  .lab-strip img {
    height: min(260px, 40vh);
  }

  .trust-ticker-track {
    gap: 36px;
    font-size: 13px;
  }

  .nav {
    display: none;
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 20px 16px;
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid var(--line);
    grid-column: auto;
    justify-self: stretch;
  }

  .nav.is-open { display: flex; }
  .nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    text-align: center;
    font-size: 16px;
  }
  .header-cta {
    display: none;
  }
  .nav-cta-mobile {
    display: block;
    margin: 10px 0 0;
    text-align: center;
  }
  .nav-toggle { display: inline-block; justify-self: end; grid-column: 3; }
  .header-inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: min(1100px, calc(100% - 32px));
  }

  .mobile-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(180deg, rgba(242, 245, 243, 0), rgba(242, 245, 243, 0.92) 28%, rgba(255, 255, 255, 0.98) 100%);
    pointer-events: none;
    transition: opacity 0.25s, transform 0.25s;
  }

  .mobile-cta.is-hidden {
    opacity: 0;
    transform: translateY(110%);
    pointer-events: none;
  }

  .mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 54px;
    padding: 14px 18px;
    background: var(--teal);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    text-align: center;
    box-shadow: 0 10px 28px rgba(11, 107, 92, 0.28);
    pointer-events: auto;
    word-break: keep-all;
  }

  .mobile-cta-btn:active {
    background: var(--teal-2);
  }

  body {
    padding-bottom: calc(78px + env(safe-area-inset-bottom, 0px));
  }

  .footer {
    padding-bottom: 24px;
  }
}

@media (max-width: 640px) {
  h1 { font-size: clamp(2.3rem, 9.5vw, 3rem); }
  .quad,
  .compare,
  .tri,
  .diff-grid,
  .breakdown {
    grid-template-columns: 1fr;
  }

  /* Cases: horizontal auto-scroll on mobile */
  .case-strip-wrap {
    max-width: none;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .case-strip-wrap .strip-btn {
    display: inline-flex;
  }

  .case-strip-wrap .strip-prev { left: 10px; }
  .case-strip-wrap .strip-next { right: 10px; }

  /* Mobile snap: one centered image at a time */
  .strip-wrap.is-snap .h-strip,
  .strip-wrap.is-snap .case-grid {
    mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  }

  .strip-wrap.is-snap .h-strip-track,
  .strip-wrap.is-snap .case-track {
    gap: 18px;
  }

  .strip-wrap.is-snap .h-strip img {
    flex: 0 0 min(78vw, 320px);
    width: min(78vw, 320px);
    height: auto;
    max-height: min(48vh, 360px);
    object-fit: contain;
  }

  .case-grid {
    max-width: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    overflow: hidden;
    padding: 4px 0 8px;
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  }

  .case-track {
    display: flex;
    gap: 12px;
    width: max-content;
    grid-template-columns: none;
  }

  .case-grid.is-marquee .case-track {
    animation: marquee 22s linear infinite;
    will-change: transform;
  }

  .case-grid.is-marquee:hover .case-track {
    animation-play-state: paused;
  }

  .strip-wrap.is-snap .case-grid img,
  .case-grid img {
    flex: 0 0 min(78vw, 300px);
    width: min(78vw, 300px);
    padding: 4px;
  }

  .strip-prev { left: 8px; }
  .strip-next { right: 8px; }

  @media (prefers-reduced-motion: reduce) {
    .case-grid.is-marquee .case-track {
      animation: none;
    }
  }

  .hero { padding-bottom: 64px; }
  .img-frame { padding: 10px; }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    padding-inline: 2px;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 8.8vw, 2.85rem);
    line-height: 1.28;
    letter-spacing: -0.02em;
  }

  .hero-desc {
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 20em;
  }

  .hero-kicker {
    font-size: 15px;
    line-height: 1.55;
  }

  .diff-grid {
    gap: 10px;
  }

  .diff-grid article {
    padding: 30px 18px;
  }

  .diff-grid .diff-num {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .diff-grid .diff-title {
    font-size: 2rem;
  }

  .diff-grid .diff-body {
    margin-top: 14px;
    font-size: 1.35rem;
    line-height: 1.7;
    font-weight: 600;
  }

  .quad article {
    padding: 24px 16px;
    min-height: 0;
  }

  .quad b {
    font-size: 1.05rem;
  }

  .quad p {
    font-size: 1.35rem;
  }

  .light-quad article {
    padding: 28px 18px;
    min-height: 0;
  }

  .light-quad b,
  .light-quad b.hl {
    font-size: 1.7rem;
    margin-bottom: 12px;
  }

  .light-quad p {
    font-size: 1.4rem;
    line-height: 1.65;
    font-weight: 700;
  }

  .compare-box {
    padding: 30px 20px;
  }

  .compare-box h3 {
    font-size: 1.7rem;
  }

  .compare-box li {
    font-size: 1.3rem;
  }

  .why-row {
    padding: 28px 18px;
  }

  .why-row h3 {
    font-size: 1.75rem;
  }

  .tri article {
    padding: 24px 16px;
  }

  .tri strong {
    font-size: 1.4rem;
  }

  .tri p {
    font-size: 1.2rem;
  }

  .info-dl > div {
    grid-template-columns: 1fr;
    gap: 6px;
    text-align: center;
    font-size: 1.12rem;
    padding: 16px 0;
  }

  .info-dl dd {
    font-size: 1.12rem;
  }

  .function-copy h3 {
    font-size: 1.75rem;
  }

  .function-copy .tags {
    font-size: 1.05rem;
  }

  .function-copy p,
  .function-copy .highlight {
    font-size: 1.15rem;
  }

  .check-list li {
    font-size: 1.12rem;
  }

  .form {
    padding: 22px 16px;
    gap: 14px;
  }

  .form label {
    font-size: 1.05rem;
  }

  .form .agree {
    gap: 14px;
    padding: 16px 14px;
    width: 100%;
    box-sizing: border-box;
  }

  .form .agree input {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
    margin-top: 1px;
  }

  .form .agree-text strong {
    font-size: 1.05rem;
  }

  .form .agree-text small {
    font-size: 0.88rem;
    line-height: 1.5;
  }
}
