:root {
  --navy: #08152f;
  --navy-2: #10234c;
  --navy-3: #173264;
  --pink: #f92472;
  --red: #ed254f;
  --orange: #ff7a28;
  --yellow: #ffd34d;
  --purple: #6557f5;
  --blue: #3368ff;
  --cyan: #1ebbd7;
  --green: #25b978;
  --text: #0c1832;
  --muted: #5c6880;
  --line: #e3e8f1;
  --soft: #f5f7fb;
  --white: #fff;
  --gradient: linear-gradient(105deg, var(--pink) 0%, #ff4d64 46%, var(--orange) 100%);
  --gradient-cool: linear-gradient(120deg, #3349ed 0%, #7257ff 52%, #ef4a9c 100%);
  --shadow-sm: 0 12px 30px rgba(12, 27, 58, .08);
  --shadow-md: 0 24px 60px rgba(12, 27, 58, .13);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 34px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: .015em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(51, 104, 255, .35);
  outline-offset: 3px;
}

::selection {
  color: #fff;
  background: var(--pink);
}

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

.section {
  padding: 108px 0;
}

.br-sp {
  display: none;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: 10px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-height);
  color: #fff;
  background: rgba(8, 21, 47, .94);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(16px);
  transition: box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled {
  background: rgba(8, 21, 47, .98);
  box-shadow: 0 14px 34px rgba(3, 10, 26, .2);
}

.header-inner {
  width: min(1280px, calc(100% - 40px));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 132px;
  height: auto;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-left: auto;
}

.global-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  color: rgba(255, 255, 255, .88);
}

.global-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--gradient);
  transition: right .2s ease;
}

.global-nav a:hover {
  color: #fff;
}

.global-nav a:hover::after {
  right: 0;
}

.nav-note-link {
  display: flex !important;
  align-items: center;
  gap: 7px;
}

.nav-note-link img {
  height: 27px;
  width: auto;
  object-fit: contain;
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 10px 26px rgba(249, 36, 114, .25);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(249, 36, 114, .32);
}

.header-cta span,
.button span {
  margin-left: 8px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: #fff;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-button.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 42px;
  background:
    linear-gradient(180deg, #f8f8fe 0%, #fff 78%),
    #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--gradient);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
  transform: translateY(var(--parallax-y, 0px));
  will-change: transform;
  animation: hero-orb-drift 14s ease-in-out infinite;
}

.hero-orb-one {
  width: 540px;
  height: 540px;
  right: -220px;
  top: -190px;
  background: radial-gradient(circle, rgba(91, 74, 245, .22), rgba(91, 74, 245, 0) 68%);
}

.hero-orb-two {
  width: 430px;
  height: 430px;
  left: -220px;
  top: 300px;
  background: radial-gradient(circle, rgba(255, 114, 36, .18), rgba(255, 114, 36, 0) 70%);
  animation-duration: 18s;
  animation-delay: -4s;
}

@keyframes hero-orb-drift {
  0%, 100% { margin: 0; }
  50% { margin: 22px -18px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-orb {
    animation: none;
    transform: none;
  }
}

.hero-sparkles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-sparkle {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0;
  animation: hero-sparkle-drift linear infinite;
}

@keyframes hero-sparkle-drift {
  0% { opacity: 0; transform: translateY(0) scale(.6); }
  12% { opacity: .8; }
  85% { opacity: .5; }
  100% { opacity: 0; transform: translateY(-160px) scale(1.15); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-sparkle {
    display: none;
  }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 70px;
  align-items: center;
}

.hero-copy {
  padding: 20px 0 30px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .16em;
  line-height: 1.3;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: var(--gradient);
}

.hero h1 {
  margin: 0;
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1.08;
  letter-spacing: -.055em;
  font-weight: 950;
}

.hero h1 span {
  color: transparent;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-title-main {
  background-size: 220% 100%;
  animation: hero-shimmer 3.2s ease-in-out infinite;
}

@keyframes hero-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero .eyebrow {
  animation: hero-badge-pulse 2.4s ease-in-out infinite;
}

@keyframes hero-badge-pulse {
  0%, 100% { text-shadow: 0 0 0 rgba(249, 36, 114, 0); }
  50% { text-shadow: 0 0 14px rgba(249, 36, 114, .35); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-title-main,
  .hero .eyebrow {
    animation: none;
  }
}

.hero-lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: #35425c;
  font-size: 17px;
  line-height: 1.9;
}

.hero-points {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 31px;
  color: #263551;
  font-size: 15px;
  line-height: 1.65;
}

.hero-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--pink);
  font-size: 18px;
  font-weight: 950;
}

.hero-points strong {
  color: var(--navy);
  font-weight: 950;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.4;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.button-primary {
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 14px 30px rgba(249, 36, 114, .22);
}

.button-primary:hover {
  box-shadow: 0 18px 36px rgba(249, 36, 114, .3);
}

.hero-actions .button-primary {
  position: relative;
  overflow: hidden;
}

.hero-actions .button-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .6), transparent);
  transform: skewX(-20deg);
  animation: hero-cta-sheen 2.8s ease-in-out infinite;
}

@keyframes hero-cta-sheen {
  0% { left: -60%; }
  55%, 100% { left: 130%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-actions .button-primary::after {
    animation: none;
    display: none;
  }
}

.button-secondary {
  color: var(--navy);
  background: #fff;
  border-color: #cad3e3;
  box-shadow: 0 10px 24px rgba(12, 24, 50, .06);
}

.button-secondary:hover {
  border-color: var(--navy);
  box-shadow: 0 14px 30px rgba(12, 24, 50, .11);
}

.button-light {
  color: var(--pink);
  background: #fff;
  box-shadow: 0 12px 28px rgba(104, 15, 58, .18);
}

.button-wide {
  width: 100%;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 490px;
  margin-top: 28px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.trust-row span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 17px;
  border-right: 1px solid var(--line);
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.trust-row span:first-child {
  padding-left: 0;
}

.trust-row span:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-row b {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 590px;
  perspective: 1400px;
  animation: hero-float 5s ease-in-out 2s infinite;
}

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

@media (prefers-reduced-motion: reduce) {
  .hero-visual {
    animation: none;
  }
}

.browser-frame {
  overflow: hidden;
  border: 1px solid rgba(27, 43, 79, .14);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.browser-bar {
  height: 36px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #8090aa;
  background: #f5f7fb;
  border-bottom: 1px solid #e7ebf2;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
}

.browser-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff668d;
}

.browser-bar i:nth-child(2) {
  background: #ffc35a;
}

.browser-bar i:nth-child(3) {
  background: #53cf9f;
}

.browser-bar span {
  margin-left: 7px;
}

.browser-frame-main {
  position: absolute;
  left: 0;
  top: 34px;
  width: 91%;
  transform: perspective(1200px) rotateY(-4deg) rotateX(1deg);
}

.browser-frame-main img {
  width: 100%;
  aspect-ratio: 1470 / 834;
  object-fit: cover;
  object-position: top;
}

.browser-frame-sub {
  position: absolute;
  right: 0;
  bottom: 18px;
  width: 35%;
  transform: rotate(1.6deg);
}

.browser-frame-sub img {
  width: 100%;
  aspect-ratio: 455 / 616;
  object-fit: cover;
  object-position: top;
}

.hero-visual-label {
  position: absolute;
  z-index: 4;
  right: 8px;
  top: 0;
  width: 132px;
  height: 132px;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  background: var(--gradient-cool);
  box-shadow: 0 20px 40px rgba(84, 72, 224, .24);
  transform: none;
}

.hero-visual-label strong {
  font-size: 36px;
  line-height: 1;
}

.hero-visual-label span {
  margin-top: 7px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.35;
}

.hero-floating-note {
  position: absolute;
  z-index: 5;
  left: 2%;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 17px;
  border-radius: 14px;
  background: rgba(8, 21, 47, .94);
  color: #fff;
  box-shadow: 0 16px 30px rgba(8, 21, 47, .2);
}

.hero-floating-note p {
  margin: 0;
  font-size: 11px;
  line-height: 1.45;
}

.hero-floating-note b {
  color: #ff8aad;
}

.note-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #55e4a4;
  box-shadow: 0 0 0 6px rgba(85, 228, 164, .15);
}

.model-ribbon {
  position: relative;
  z-index: 2;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(6, 1fr) 1.15fr;
  gap: 10px;
  padding: 14px;
  border: 1px solid #e2e7f0;
  border-radius: 24px;
  background: rgba(255, 255, 255, .88);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.model-item,
.model-plus {
  min-width: 0;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #fff;
}

.model-item img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex: 0 0 auto;
}

.model-item strong,
.model-item small {
  display: block;
  min-width: 0;
  line-height: 1.25;
}

.model-item strong {
  font-size: 12px;
  font-weight: 950;
}

.model-item small {
  margin-top: 4px;
  color: #7a879d;
  font-size: 9px;
}

.model-plus {
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  color: #fff;
  background: var(--gradient);
  text-align: center;
}

.model-plus strong {
  font-size: 18px;
  line-height: 1;
}

.model-plus span {
  font-size: 10px;
  font-weight: 900;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 50px;
}

.section-heading-center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.template-copy h2,
.contact-message h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.28;
  letter-spacing: -.045em;
  font-weight: 950;
}

.section-heading h2 span,
.template-copy h2 span,
.contact-message h2 span {
  color: transparent;
  background: var(--gradient-cool);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: heading-shimmer 4s ease-in-out infinite;
}

@keyframes heading-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .section-heading h2 span,
  .template-copy h2 span,
  .contact-message h2 span {
    animation: none;
  }
}

.section-heading h2 {
  clip-path: inset(-20% 100% -20% 0);
  filter: blur(14px);
  transition: clip-path 2s cubic-bezier(.16, 1, .3, 1) .1s, filter 2s cubic-bezier(.16, 1, .3, 1) .1s;
}

.section-heading.is-visible h2 {
  clip-path: inset(-20% 0% -20% 0);
  filter: blur(0);
}

h1.reveal-auto {
  filter: blur(14px);
  transition: opacity 2s cubic-bezier(.16, 1, .3, 1), transform 2s cubic-bezier(.16, 1, .3, 1), filter 2s cubic-bezier(.16, 1, .3, 1);
}

h1.reveal-auto.is-visible {
  filter: blur(0);
}

.section-heading h2::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  margin-top: 18px;
  border-radius: 999px;
  background: var(--gradient);
  transition: width 1.4s cubic-bezier(.16, 1, .3, 1) .9s;
}

.section-heading-center h2::after {
  margin-left: auto;
  margin-right: auto;
}

.section-heading.is-visible h2::after {
  width: 64px;
}

@media (prefers-reduced-motion: reduce) {
  .section-heading h2,
  h1.reveal-auto {
    clip-path: none;
    filter: none;
    transition: none;
  }

  .section-heading h2::after {
    transition: none;
    width: 64px;
  }
}

.section-heading>p:last-child {
  margin: 22px auto 0;
  max-width: 710px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  width: 0%;
  height: 3px;
  background: var(--gradient);
  transition: width .1s linear;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-progress {
    display: none;
  }
}

/* --- サイト全体：スクロールでフェードイン --- */
.reveal-auto {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1.3s cubic-bezier(.16, 1, .3, 1), transform 1.3s cubic-bezier(.16, 1, .3, 1);
  transition-delay: calc(var(--i, 0) * .13s);
  will-change: opacity, transform;
}

.reveal-auto.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-3d {
  opacity: 0;
  perspective: 1200px;
  transform: perspective(1200px) rotateX(8deg) translateY(40px);
  transform-origin: center bottom;
  transition: opacity 1.5s cubic-bezier(.16, 1, .3, 1), transform 1.5s cubic-bezier(.16, 1, .3, 1);
  transition-delay: calc(var(--i, 0) * .13s);
  will-change: opacity, transform;
}

.reveal-3d.is-visible {
  opacity: 1;
  transform: perspective(1200px) rotateX(0deg) translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-auto,
  .reveal-3d {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* --- 細部：リスト項目の1つずつの登場、カード番号のポップイン --- */
.hero-points li,
.check-list li,
.before-after ul li {
  opacity: 0;
  transform: translateX(-14px);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
}

.hero-points.is-visible li,
.security-copy.is-visible .check-list li,
.price-card.is-visible .check-list li,
.state-card.is-visible ul li {
  opacity: 1;
  transform: none;
}

.hero-points li:nth-child(1), .check-list li:nth-child(1), .before-after ul li:nth-child(1) { transition-delay: .55s; }
.hero-points li:nth-child(2), .check-list li:nth-child(2), .before-after ul li:nth-child(2) { transition-delay: .68s; }
.hero-points li:nth-child(3), .check-list li:nth-child(3), .before-after ul li:nth-child(3) { transition-delay: .81s; }
.hero-points li:nth-child(4), .check-list li:nth-child(4), .before-after ul li:nth-child(4) { transition-delay: .94s; }

.card-number {
  opacity: 0;
  transform: scale(.4) rotate(-12deg);
  transition: opacity .6s cubic-bezier(.34, 1.56, .64, 1), transform .6s cubic-bezier(.34, 1.56, .64, 1);
}

.about-card.is-visible .card-number {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  transition-delay: .2s;
}

@media (prefers-reduced-motion: reduce) {
  .hero-points li,
  .check-list li,
  .before-after ul li,
  .card-number {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.about-section {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-card {
  position: relative;
  min-height: 250px;
  padding: 34px 30px 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.about-card::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -85px;
  bottom: -95px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(103, 82, 245, .14), transparent 68%);
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 30px;
  border-radius: 8px;
  color: #fff;
  background: var(--gradient-cool);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .08em;
}

.about-card h3 {
  margin: 22px 0 12px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.45;
}

.about-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.why-panel {
  margin-top: 72px;
  padding: 50px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
  border-radius: var(--radius-lg);
  color: #fff;
  background:
    radial-gradient(circle at 90% 0%, rgba(101, 87, 245, .42), transparent 32%),
    linear-gradient(130deg, #07152f 0%, #102a5b 100%);
  box-shadow: 0 28px 70px rgba(8, 21, 47, .18);
}

.why-copy .section-kicker {
  color: #ff8fae;
}

.why-copy h3 {
  margin: 0;
  font-size: clamp(31px, 3.8vw, 48px);
  line-height: 1.32;
  letter-spacing: -.04em;
}

.why-copy p:last-child {
  margin: 20px 0 0;
  color: #d6deec;
  font-size: 15px;
}

.why-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.why-list span,
.why-list b {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 16px;
  background: rgba(255, 255, 255, .07);
  font-size: 14px;
  font-weight: 850;
}

.why-list span::before {
  content: "✦";
  margin-right: 11px;
  color: #ff8faa;
}

.why-list b {
  grid-column: 1 / -1;
  justify-content: center;
  color: #07152f;
  background: linear-gradient(90deg, #ffd757, #ff9360);
  border: 0;
  font-size: 17px;
}

.orchestration-section {
  position: relative;
  overflow: hidden;
  padding: 118px 0;
  color: #fff;
  background:
    radial-gradient(circle at 78% 16%, rgba(111, 89, 255, .28), transparent 28%),
    radial-gradient(circle at 8% 90%, rgba(249, 36, 114, .16), transparent 32%),
    #07152f;
}

.orchestration-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image:
    linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.orchestration-section .container {
  position: relative;
  z-index: 1;
}

.orchestration-heading {
  max-width: 880px;
}

.orchestration-heading .section-kicker {
  color: #ff89ad;
}

.orchestration-heading h2 {
  color: #fff;
}

.orchestration-heading h2 span {
  color: transparent;
  background: linear-gradient(90deg, #ff5b83, #ffb04d);
  -webkit-background-clip: text;
  background-clip: text;
}

.orchestration-heading>p:last-child {
  margin-left: 0;
  color: #ccd6e6;
}

.thread-shell {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 28px;
  background: rgba(255, 255, 255, .07);
  box-shadow: 0 34px 80px rgba(0, 0, 0, .24);
  backdrop-filter: blur(18px);
}

.thread-topbar {
  min-height: 54px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  color: #d8e0ec;
  background: rgba(255, 255, 255, .05);
}

.thread-topbar>div {
  display: flex;
  gap: 6px;
}

.thread-topbar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff638c;
}

.thread-topbar i:nth-child(2) {
  background: #ffc454;
}

.thread-topbar i:nth-child(3) {
  background: #51d39b;
}

.thread-topbar p {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
}

.thread-topbar span {
  margin-left: auto;
  color: #ffb15e;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .14em;
}

.thread-flow {
  display: grid;
  grid-template-columns: 1fr 44px 1fr 44px 1fr 44px 1fr;
  align-items: stretch;
  padding: 28px;
}

.thread-step {
  min-width: 0;
  min-height: 310px;
  padding: 26px 22px 22px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 20px;
  background: rgba(255, 255, 255, .96);
  color: var(--navy);
}

.thread-step>span {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 6px;
  color: #fff;
  background: var(--navy);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .08em;
}

.step-model {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
}

.step-model img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.step-model b {
  font-size: 15px;
}

.thread-step h3 {
  margin: 20px 0 8px;
  font-size: 21px;
  line-height: 1.35;
}

.thread-step p {
  margin: 0;
  color: #536178;
  font-size: 13px;
  line-height: 1.7;
}

.thread-step blockquote {
  margin: 20px 0 0;
  padding: 11px 12px;
  border-radius: 9px;
  color: #48566d;
  background: #f3f5f9;
  font-size: 11px;
  line-height: 1.55;
}

.step-chatgpt {
  border-color: rgba(22, 165, 126, .5);
}

.step-perplexity {
  border-color: rgba(77, 87, 230, .45);
}

.step-gemini {
  border-color: rgba(51, 104, 255, .45);
}

.step-claude {
  border-color: rgba(187, 109, 67, .5);
}

.thread-arrow {
  display: grid;
  place-items: center;
  color: #ff718f;
  font-size: 22px;
  font-weight: 950;
}

.orchestration-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.orchestration-foot p {
  margin: 0 auto 0 0;
  color: #d3dbea;
  font-size: 15px;
}

.orchestration-foot p strong {
  color: #fff;
}

.orchestration-foot span {
  padding: 8px 13px;
  border-radius: 999px;
  color: #dce5f4;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  font-size: 11px;
  font-weight: 800;
}

.security-section {
  background: #f6f8fc;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  max-width: 980px;
  margin-inline: auto;
}

.state-card {
  min-height: 330px;
  padding: 34px;
  border-radius: var(--radius);
}

.state-before {
  border: 1px solid #dbe1ec;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.state-after {
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 24px 54px rgba(239, 37, 79, .21);
}

.state-label {
  display: inline-flex;
  margin: 0 0 22px;
  padding: 5px 9px;
  border-radius: 6px;
  color: #fff;
  background: #99a5b9;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .12em;
}

.state-after .state-label {
  color: var(--navy);
  background: var(--yellow);
}

.state-card h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.4;
}

.state-card ul {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.state-card li {
  position: relative;
  padding-left: 27px;
  font-size: 14px;
}

.state-before li {
  color: #5d6980;
}

.state-before li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: #a3adbd;
  font-weight: 950;
}

.state-after li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #fff2b4;
  font-weight: 950;
}

.state-arrow {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-inline: auto;
  border-radius: 50%;
  color: #fff;
  background: var(--navy);
  box-shadow: 0 12px 24px rgba(8, 21, 47, .16);
  font-size: 21px;
  font-weight: 950;
}

.security-panel {
  margin-top: 48px;
  padding: 54px;
  display: grid;
  grid-template-columns: .87fr 1.13fr;
  gap: 60px;
  align-items: center;
  border: 1px solid #dfe4ed;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.security-copy {
  position: relative;
}

.security-icon {
  width: 70px;
  height: 80px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  clip-path: polygon(50% 0, 92% 16%, 87% 68%, 50% 100%, 13% 68%, 8% 16%);
  background: var(--gradient);
  box-shadow: 0 16px 28px rgba(249, 36, 114, .22);
}

.security-icon span {
  width: 21px;
  height: 28px;
  border: 3px solid #fff;
  border-radius: 4px;
  position: relative;
}

.security-icon span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -14px;
  width: 15px;
  height: 15px;
  transform: translateX(-50%);
  border: 3px solid #fff;
  border-bottom: 0;
  border-radius: 9px 9px 0 0;
}

.security-copy h3 {
  margin: 0;
  font-size: clamp(31px, 3.5vw, 45px);
  line-height: 1.3;
  letter-spacing: -.04em;
}

.security-copy h3 span {
  color: var(--pink);
}

.security-copy>p:not(.section-kicker) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.check-list {
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--pink);
  font-weight: 950;
}

.security-copy .check-list li {
  font-size: 14px;
  font-weight: 800;
}

.security-screen {
  position: relative;
  padding: 15px 10px 34px 30px;
}

.security-screen .browser-frame img {
  width: 100%;
  aspect-ratio: 1470 / 834;
  object-fit: cover;
  object-position: top;
}

.security-badge {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 220px;
  padding: 15px 18px;
  border-radius: 15px;
  color: #fff;
  background: var(--navy);
  box-shadow: 0 18px 34px rgba(8, 21, 47, .24);
}

.security-badge b,
.security-badge span {
  display: block;
}

.security-badge b {
  color: #ff83a5;
  font-size: 12px;
  letter-spacing: .08em;
}

.security-badge span {
  margin-top: 4px;
  font-size: 11px;
}

/* -- Security news spotlight (matches PDF p.8) -- */

.security-news {
  margin-top: 56px;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.security-news-heading {
  margin: 22px 0 0;
  max-width: 900px;
  color: var(--navy);
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.5;
  letter-spacing: -.02em;
}

.security-news-highlight {
  padding: 0 4px;
  background: linear-gradient(to top, rgba(255, 122, 40, .32) 42%, transparent 42%);
}

.news-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.news-card {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-radius: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.news-card-headline {
  margin: 0;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.6;
}

.news-card-date {
  color: var(--muted);
  font-size: 10.5px;
}

.news-card-source {
  margin-top: auto;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 6px;
  color: #fff;
  background: var(--navy);
  font-size: 10.5px;
  font-weight: 800;
  width: fit-content;
}

.news-timeline {
  padding: 20px;
  border-radius: 18px;
  color: #fff;
  background: var(--navy);
}

.news-timeline-label {
  margin: 0;
  color: #ffb15e;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .1em;
}

.news-timeline-date {
  margin: 4px 0 0;
  color: #aab6ca;
  font-size: 11px;
}

.news-timeline-summary {
  margin: 12px 0 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

.news-timeline-summary b {
  padding: 0 4px;
  color: #fff;
  background: var(--red);
  border-radius: 4px;
}

.news-timeline-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  counter-reset: timeline;
}

.news-timeline-list li {
  position: relative;
  padding-left: 26px;
  color: #d3dbea;
  font-size: 12px;
}

.news-timeline-list li::before {
  counter-increment: timeline;
  content: counter(timeline);
  position: absolute;
  left: 0;
  top: -1px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--yellow);
  font-size: 10px;
  font-weight: 950;
}

.security-warn-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.security-warn-card {
  padding: 22px;
  border-radius: 18px;
  background: #fff6f5;
  border: 1px solid rgba(237, 37, 79, .2);
}

.security-warn-title {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.security-warn-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.security-warn-card li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
}

.security-warn-card li span {
  color: #48566d;
  font-size: 12px;
}

.security-warn-card li b {
  flex: none;
  padding: 3px 9px;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  font-size: 10px;
  font-weight: 900;
}

.security-warn-foot {
  margin: 14px 0 0;
  color: var(--red);
  font-size: 11.5px;
  font-weight: 800;
}

.security-solution-card {
  padding: 22px;
  border-radius: 18px;
  color: #fff;
  background: var(--navy);
}

.security-solution-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--yellow);
  font-size: 11px;
  font-weight: 900;
}

.security-solution-title {
  margin: 14px 0 0;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
}

.security-solution-title span {
  padding: 0 4px;
  background: rgba(255, 255, 255, .18);
  border-radius: 4px;
}

.security-solution-desc {
  margin: 10px 0 0;
  color: #c7cfe0;
  font-size: 12.5px;
  line-height: 1.7;
}

.guard-card {
  margin-top: 22px;
  padding: 30px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.guard-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--gradient);
  font-size: 20px;
}

.guard-label {
  display: block;
  margin-top: 16px;
  color: var(--red);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .1em;
}

.guard-title {
  margin: 8px 0 0;
  color: var(--navy);
  font-size: clamp(19px, 2.4vw, 25px);
  font-weight: 900;
  line-height: 1.5;
}

.guard-title span {
  background: linear-gradient(180deg, transparent 60%, rgba(255, 122, 40, .28) 60%);
}

.guard-desc {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.guard-flow {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.guard-flow-item {
  padding: 13px 14px;
  border-radius: 13px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.guard-flow-item b {
  display: block;
  color: var(--navy);
  font-size: 12.5px;
  font-weight: 900;
}

.guard-flow-item span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 10.5px;
  line-height: 1.55;
}

.guard-allow {
  background: #eafaf1;
  border-color: rgba(37, 185, 120, .25);
}

.guard-allow b {
  color: var(--green);
}

.guard-hold {
  background: #fff8ea;
  border-color: rgba(255, 211, 77, .45);
}

.guard-hold b {
  color: #b9871d;
}

.guard-human {
  background: #f0f0ff;
  border-color: rgba(101, 87, 245, .2);
}

.guard-human b {
  color: var(--purple);
}

.guard-deny {
  background: #fff0f2;
  border-color: rgba(237, 37, 79, .25);
}

.guard-deny b {
  color: var(--red);
}

.guard-flow-final {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 16px;
  border-radius: 13px;
  background: var(--navy);
  color: var(--yellow);
  font-size: 12.5px;
  font-weight: 900;
  text-align: center;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.support-card {
  position: relative;
  min-width: 0;
  padding: 40px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.support-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
}

.support-card-line {
  border: 1px solid rgba(37, 185, 120, .22);
  background: #f3fbf7;
  box-shadow: var(--shadow-sm);
}

.support-card-line::before {
  background: linear-gradient(105deg, var(--green) 0%, #58d99a 100%);
}

.support-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(37, 185, 120, .12);
  color: var(--green);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .08em;
}

.support-card-line h3 {
  margin: 18px 0 0;
  color: var(--navy);
  font-size: clamp(26px, 2.8vw, 32px);
  line-height: 1.35;
  letter-spacing: -.02em;
}

.support-card-line>p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.75;
}

.support-chip-list {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.support-chip-list span {
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #d7ecdf;
  color: #2f5b46;
  font-size: 11.5px;
  font-weight: 700;
}

.support-card-seminar {
  color: #fff;
  background: linear-gradient(160deg, #0d1c40 0%, var(--navy) 55%, #1a1046 100%);
}

.support-card-seminar::before {
  background: var(--gradient);
}

.support-badge-free {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 950;
}

.support-card-seminar h3 {
  margin: 16px 0 0;
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.4;
  letter-spacing: -.02em;
}

.support-card-seminar>p {
  margin: 12px 0 0;
  color: #c7cfe0;
  font-size: 13px;
  line-height: 1.75;
}

.seminar-qa-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.seminar-qa-grid div {
  padding: 14px 15px;
  border-radius: 13px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
}

.seminar-qa-grid b {
  display: block;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.seminar-qa-grid span {
  display: block;
  margin-top: 5px;
  color: #a8b2c9;
  font-size: 10.5px;
  line-height: 1.6;
}

.seminar-note {
  margin: 16px 0 0;
  padding: 12px 15px;
  border-radius: 11px;
  background: rgba(255, 211, 77, .12);
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.6;
}

.seminar-tags {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.seminar-tags span {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .2);
  color: #dfe4f2;
  font-size: 10.5px;
  font-weight: 700;
}

.fine-note-light {
  margin: 14px 0 0;
  color: #7c88a6;
  font-size: 10.5px;
}

/* -- Usage matrix + 3 values (matches PDF p.6) -- */

.usage-matrix-section {
  background: #fff;
}

.usage-matrix-heading {
  margin: 22px 0 0;
  color: var(--navy);
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.4;
  letter-spacing: -.03em;
}

.usage-matrix-panel {
  margin-top: 36px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 32px;
  align-items: start;
  border-radius: var(--radius);
  background: var(--soft);
}

.usage-matrix-list-card {
  padding: 28px 30px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.usage-matrix-kicker {
  margin: 0;
  color: var(--purple);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .1em;
}

.usage-matrix-title {
  margin: 6px 0 0;
  color: var(--navy);
  font-size: 17px;
  font-weight: 900;
}

.usage-matrix-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.usage-matrix-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.usage-matrix-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.usage-matrix-list img {
  flex: none;
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.usage-matrix-list b {
  flex: none;
  width: 92px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.usage-matrix-list span {
  color: var(--muted);
  font-size: 12.5px;
}

.usage-matrix-values {
  display: grid;
  gap: 14px;
  align-content: start;
}

.value-card {
  padding: 16px 20px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(101, 87, 245, .3);
}

.value-card span {
  display: block;
  color: var(--purple);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .08em;
}

.value-card p {
  margin: 8px 0 0;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
}

.value-card-featured {
  border: 0;
  background: var(--gradient-cool);
}

.value-card-featured span,
.value-card-featured p {
  color: #fff;
}

.template-section {
  background: #fff;
}

.template-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 74px;
  align-items: center;
}

.template-visual {
  position: relative;
  padding: 20px 12px 35px 0;
}

.template-visual .browser-frame img {
  width: 100%;
  aspect-ratio: 1474 / 800;
  object-fit: cover;
  object-position: top;
}

.template-count {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 145px;
  height: 145px;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 28px;
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 22px 44px rgba(249, 36, 114, .23);
  transform: rotate(4deg);
}

.template-count strong,
.template-count span {
  display: block;
}

.template-count strong {
  font-size: 43px;
  line-height: 1;
}

.template-count span {
  margin-top: 8px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.4;
}

.template-copy h2 {
  font-size: clamp(35px, 4vw, 49px);
}

.template-copy>p:not(.section-kicker):not(.fine-note) {
  margin: 23px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.category-block {
  margin-top: 30px;
  padding: 23px;
  border: 1px solid #e0e5ef;
  border-radius: 18px;
  background: #f8f9fc;
}

.category-block>p {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
}

.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-chips span {
  padding: 8px 13px;
  border-radius: 999px;
  color: #fff;
  background: var(--navy);
  font-size: 11px;
  font-weight: 850;
}

.extend-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  margin-top: 18px;
}

.extend-grid span {
  position: relative;
  padding: 12px 12px 12px 34px;
  border: 1px solid #f0d6df;
  border-radius: 12px;
  color: #5b3645;
  background: #fff7fa;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.45;
}

.extend-grid span::before {
  content: "◎";
  position: absolute;
  left: 12px;
  color: var(--pink);
}

.fine-note {
  margin: 18px 0 0;
  color: #7a8598;
  font-size: 11px;
  line-height: 1.65;
}

.feature-suite-section {
  background: #f7f8fc;
}

.feature-suite-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.suite-card {
  position: relative;
  min-width: 0;
  padding: 42px;
  overflow: hidden;
  border: 1px solid #dfe4ed;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.suite-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--gradient-cool);
}

.agent-card::before {
  background: var(--gradient);
}

.suite-tag {
  color: var(--purple);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .12em;
}

.agent-card .suite-tag {
  color: var(--pink);
}

.suite-card h3 {
  margin: 20px 0 0;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 39px);
  line-height: 1.35;
  letter-spacing: -.035em;
}

.suite-card>p:not(.suite-note) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.profile-ui {
  display: grid;
  gap: 10px;
  margin-top: 29px;
  padding: 18px;
  border: 1px solid #e1e6ef;
  border-radius: 17px;
  background: #f8f9fc;
}

.profile-ui div {
  padding: 13px 15px;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 6px 15px rgba(10, 24, 52, .04);
}

.profile-ui span,
.profile-ui b {
  display: block;
}

.profile-ui span {
  color: #8a95a8;
  font-size: 9px;
  font-weight: 800;
}

.profile-ui b {
  margin-top: 4px;
  font-size: 12px;
}

.suite-note {
  margin: 20px 0 0;
  padding: 13px 15px;
  border-left: 4px solid var(--purple);
  color: #4f5c73;
  background: #f1f0ff;
  font-size: 11px;
  line-height: 1.65;
}

.agent-screen {
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid #e3e8f0;
  border-radius: 16px;
  background: #fafafa;
}

.agent-screen img {
  width: 100%;
  aspect-ratio: 1466 / 597;
  object-fit: cover;
  object-position: top;
}

.agent-name-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 15px;
}

.agent-name-grid div {
  padding: 15px;
  border-radius: 13px;
  color: #fff;
  background: var(--gradient);
}

.agent-name-grid strong,
.agent-name-grid span {
  display: block;
}

.agent-name-grid strong {
  font-size: 15px;
}

.agent-name-grid span {
  margin-top: 4px;
  font-size: 9px;
  line-height: 1.45;
}

.inline-usecases {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.inline-usecases li {
  padding: 6px 10px;
  border-radius: 999px;
  color: #5f687a;
  background: #f0f2f6;
  font-size: 10px;
  font-weight: 800;
}

.roadmap-section {
  background: #fff;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.roadmap-card {
  position: relative;
  min-height: 390px;
  padding: 31px 26px;
  overflow: hidden;
  border: 1px solid #dfe4ed;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.roadmap-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: var(--green);
}

.roadmap-dev::before {
  background: var(--purple);
}

.roadmap-next::before {
  background: #f1b321;
}

.roadmap-custom::before {
  background: var(--gradient);
}

.roadmap-card>p:first-child {
  margin: 0;
  color: var(--green);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .12em;
}

.roadmap-dev>p:first-child {
  color: var(--purple);
}

.roadmap-next>p:first-child {
  color: #c88d00;
}

.roadmap-custom>p:first-child {
  color: var(--pink);
}

.roadmap-card h3 {
  margin: 16px 0 0;
  font-size: 25px;
  line-height: 1.35;
}

.roadmap-card ul {
  display: grid;
  gap: 14px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.roadmap-card li {
  position: relative;
  padding-left: 24px;
  color: #556278;
  font-size: 13px;
}

.roadmap-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 950;
}

.roadmap-dev li::before {
  content: "▲";
  color: var(--purple);
  font-size: 9px;
  top: 4px;
}

.roadmap-next li::before {
  content: "◎";
  color: #d49a0b;
}

.roadmap-custom {
  color: #fff;
  background: var(--gradient);
  border: 0;
  box-shadow: 0 24px 50px rgba(239, 37, 79, .2);
}

.roadmap-custom>p:first-child,
.roadmap-custom h3,
.roadmap-custom .roadmap-description {
  color: #fff;
}

.roadmap-description {
  margin: 24px 0 0;
  font-size: 13px;
  line-height: 1.8;
}

.roadmap-custom a {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 28px;
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--navy);
  background: var(--yellow);
  font-size: 12px;
  font-weight: 950;
}

.roadmap-dev>p a {
  margin-left: 8px;
  color: var(--purple);
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- DEV FEATURE SPOTLIGHT ---------- */

.devfeature-section {
  background: #f6f8fc;
}

.devfeature {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 56px;
  align-items: center;
  margin-top: 64px;
}

.devfeature:first-of-type {
  margin-top: 56px;
}

.devfeature-reverse .devfeature-copy {
  order: 2;
}

.devfeature-reverse .devfeature-visual {
  order: 1;
}

.devfeature-tag {
  display: inline-block;
  flex-shrink: 0;
  padding: 6px 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--navy);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .1em;
  white-space: nowrap;
}

.devfeature-copy h3 {
  margin: 18px 0 0;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.45;
  letter-spacing: -.02em;
}

.devfeature-copy>p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.devfeature-copy small {
  color: var(--muted);
  font-size: 12px;
}

.devfeature-copy .check-list {
  margin-top: 20px;
}

.devfeature-copy .check-list li {
  font-size: 13px;
}

.release-badge {
  display: inline-block;
  margin-top: 22px;
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--pink);
  background: #fde9f0;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .04em;
}

.devfeature-visual {
  min-width: 0;
}

/* -- Feature 1: DEV FEATURE 01 layout (matches PDF p.13) -- */

.devfeature01 {
  position: relative;
  margin-top: 56px;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.df01-head {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 68%;
}

.df01-head-label {
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
}

.df01-heading {
  margin: 22px 0 0;
  max-width: 720px;
  color: var(--navy);
  font-size: clamp(20px, 2.8vw, 34px);
  line-height: 1.4;
  letter-spacing: -.02em;
}

.df01-accent {
  color: var(--pink);
}

.df01-sub {
  margin: 14px 0 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 14px;
}

.release-sticky {
  position: absolute;
  top: 36px;
  right: 40px;
  width: 210px;
  padding: 14px 16px;
  display: grid;
  gap: 3px;
  text-align: center;
  border: 2px dashed rgba(249, 36, 114, .32);
  border-radius: 14px;
  background: #fdedf2;
  transform: rotate(3deg);
}

.release-sticky b,
.release-sticky span {
  color: var(--pink);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .1em;
}

.release-sticky strong {
  color: var(--navy);
  font-size: 17px;
  font-weight: 950;
}

.df01-panels {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
}

.df01-arrow {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-inline: auto;
  border-radius: 50%;
  color: #fff;
  background: var(--gradient);
  font-size: 17px;
  font-weight: 950;
  box-shadow: 0 14px 28px rgba(239, 37, 79, .28);
}

.ai-suggest-panel {
  padding: 24px;
  border-radius: var(--radius);
  background: #fdf1f0;
  border: 1px solid rgba(239, 37, 79, .12);
}

.ai-suggest-topic {
  position: relative;
  margin: 0;
  padding-left: 16px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.ai-suggest-topic::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
}

.ai-suggest-panel .meeting-mock-ai-badge {
  display: inline-block;
  margin-top: 10px;
}

.ai-suggest-desc {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.ai-suggest-label {
  margin: 16px 0 10px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
}

/* -- Feature 1: meeting mock -- */

.meeting-mock {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.meeting-mock-head {
  display: flex;
}

.meeting-mock-next {
  padding: 5px 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--navy);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .06em;
}

.meeting-mock h4 {
  margin: 14px 0 0;
  font-size: 18px;
}

.meeting-mock-meta {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.meeting-mock-meta li {
  color: var(--muted);
  font-size: 12px;
}

.meeting-mock-ai {
  position: relative;
  margin-top: 18px;
  padding: 16px 16px 14px;
  border-radius: 16px;
  background: #f6f8fc;
  border: 1px solid var(--line);
}

.meeting-mock-ai-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--gradient);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .04em;
}

.meeting-mock-ai>p {
  margin: 10px 0 0;
  font-size: 12px;
  font-weight: 800;
  color: var(--text);
}

.meeting-mock-suggest {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.meeting-mock-suggest li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
  color: #48566d;
  font-size: 11.5px;
}

.meeting-mock-suggest i {
  flex: none;
  font-style: normal;
  color: var(--pink);
  font-weight: 950;
}

.meeting-mock-files {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}

.meeting-mock-files span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.meeting-mock-files p {
  margin: 6px 0 0;
  color: #48566d;
  font-size: 12px;
}

.meeting-mock-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.meeting-mock-actions span {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  color: var(--navy);
  background: var(--soft);
  border: 1px solid var(--line);
}

.meeting-mock-actions span:first-child {
  color: #fff;
  background: var(--gradient);
  border: 0;
}

/* -- Connect grid -- */

.connect-grid {
  margin-top: 40px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.connect-grid-title {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.connect-grid-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.connect-cat {
  display: inline-block;
  padding: 5px 11px;
  border-radius: 7px;
  color: #fff;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .06em;
}

.connect-cat-calendar {
  background: var(--purple);
}

.connect-cat-mail {
  background: var(--red);
}

.connect-cat-messenger {
  background: var(--orange);
}

.connect-cat-file {
  background: var(--blue);
}

.connect-cat-label {
  display: inline-block;
  margin: 0 0 12px 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.connect-grid-cols ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.connect-grid-cols li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  background: var(--soft);
}

.connect-grid-cols li img {
  flex: none;
  width: 22px;
  height: 22px;
  object-fit: contain;
  border-radius: 5px;
}

.connect-grid-cols li span {
  display: grid;
  line-height: 1.35;
}

.connect-grid-cols li b {
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.connect-grid-cols li small {
  color: var(--muted);
  font-size: 10px;
}

.connect-grid .fine-note {
  margin-top: 22px;
}

/* -- Feature 2: DEV FEATURE 02 layout (matches PDF p.14) -- */

.devfeature02 {
  position: relative;
  margin-top: 64px;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.release-sticky-blue {
  border-color: rgba(101, 87, 245, .32);
  background: #eeecfd;
}

.release-sticky-blue b,
.release-sticky-blue span {
  color: var(--purple);
}

.df02-icon-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.df02-icon-line {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.df02-icon-line img {
  width: 31px;
  height: 31px;
  object-fit: contain;
}

.df02-icon-x {
  color: var(--muted);
  font-size: 18px;
  font-weight: 900;
}

.df02-icon-jam {
  width: 132px;
  height: auto;
}

.df02-accent-green {
  color: var(--green);
}

.df02-accent-purple {
  color: var(--purple);
}

.df02-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.line-col {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.line-col-head {
  padding: 13px 18px;
  color: #fff;
  font-size: 12.5px;
  font-weight: 900;
}

.line-col-realtime .line-col-head {
  background: var(--green);
}

.line-col-csv .line-col-head {
  background: var(--orange);
}

.line-col-body {
  padding: 18px;
  display: grid;
  gap: 8px;
}

.line-step {
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
}

.line-step-input {
  color: var(--navy);
  background: #f6f8fc;
}

.line-col-realtime .line-step-input {
  background: #e9f9f1;
}

.line-col-csv .line-step-input {
  background: #fff1e6;
}

.line-step-mid {
  color: var(--navy);
  background: var(--soft);
}

.line-step-out {
  color: #fff;
  font-weight: 900;
  background: var(--gradient);
}

.line-step-arrow {
  text-align: center;
  color: #ff718f;
  font-size: 14px;
  font-weight: 950;
}

.line-side {
  display: grid;
  gap: 18px;
}

.line-examples,
.line-usecase {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.line-side-kicker {
  margin: 0;
  color: var(--pink);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .1em;
}

.line-side-title {
  margin: 6px 0 14px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.line-usecase .chat-mock {
  margin-top: 12px;
  padding: 0;
  background: none;
  border: 0;
}

.line-extract-bar {
  margin-top: 22px;
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  border-radius: 14px;
  background: var(--soft);
}

.line-extract-label {
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
}

.line-extract-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.line-extract-tags span {
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.tag-green {
  color: #14804f;
  background: #dcf6e8;
}

.tag-pink {
  color: #c22a63;
  background: #fbe3ee;
}

.tag-blue {
  color: #23539b;
  background: #e1ecfc;
}

.tag-gray {
  color: #52586b;
  background: #e7e9f0;
}

.tag-cyan {
  color: #106b7c;
  background: #d9f3f7;
}

.tag-tan {
  color: #8a5a2b;
  background: #f5e6d3;
}

.line-checklist {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.line-checklist span {
  margin-right: 18px;
}

.line-checklist span::before {
  content: "・";
}

.chat-mock {
  margin-top: 18px;
  padding: 18px;
  display: grid;
  gap: 10px;
  border-radius: 18px;
  background: #f6f8fc;
  border: 1px solid var(--line);
}

.chat-msg {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.chat-msg-avatar {
  flex: none;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 13px;
  background: #fff;
  border: 1px solid var(--line);
}

.chat-msg-ai .chat-msg-avatar {
  color: #fff;
  background: var(--gradient);
  border: 0;
}

.chat-msg-bubble {
  padding: 10px 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  color: #48566d;
  font-size: 12.5px;
  line-height: 1.7;
}

.chat-msg-ai .chat-msg-bubble {
  border-color: rgba(101, 87, 245, .25);
}

.chat-msg-bubble strong {
  color: var(--purple);
}

/* -- Example groups (inside DEV FEATURE 02 side panel) -- */

.example-groups-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.example-groups-list span {
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--navy);
  font-size: 10.5px;
  font-weight: 800;
}

/* -- Feature 3: DEV FEATURE 03 layout (matches PDF p.15) -- */

.devfeature03 {
  position: relative;
  margin-top: 64px;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.df03-steps {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 44px 1fr 44px 1fr;
  align-items: stretch;
}

.df03-step {
  padding: 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.df03-step-dark {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.df03-step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.df03-step-label {
  color: var(--muted);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .1em;
}

.df03-step-dark .df03-step-label {
  color: #aab6ca;
}

.df03-step-badge {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .05em;
}

.df03-badge-pink {
  color: var(--pink);
  background: #fde9f0;
}

.df03-badge-orange {
  color: #c85e12;
  background: #ffedde;
}

.df03-badge-yellow {
  color: #8a6a1f;
  background: var(--yellow);
}

.df03-step h4 {
  margin: 14px 0 0;
  font-size: 16px;
}

.df03-step>p {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.7;
}

.df03-step-dark>p {
  color: #c7cfe0;
}

.df03-step:not(.df03-step-dark)>p {
  color: var(--muted);
}

.df03-arrow {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  align-self: center;
  margin-inline: auto;
  border-radius: 50%;
  color: #fff;
  background: var(--gradient);
  font-size: 14px;
  font-weight: 950;
  box-shadow: 0 12px 24px rgba(239, 37, 79, .26);
}

.df03-chat {
  margin-top: 16px;
  display: grid;
  gap: 8px;
}

.df03-chat-line {
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--soft);
  color: #48566d;
  font-size: 11.5px;
}

.df03-extract {
  margin-top: 16px;
  padding: 14px;
  border-radius: 14px;
  background: #fdf1f0;
  border: 1px solid rgba(239, 37, 79, .12);
}

.df03-extract p {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 12px;
}

.df03-extract-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.df03-extract-tags span {
  padding: 5px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(239, 37, 79, .18);
  color: var(--navy);
  font-size: 10.5px;
  font-weight: 800;
}

.df03-note {
  margin: 14px 0 0;
  padding: 11px 14px;
  border-radius: 12px;
  background: #fff8ec;
  color: #8a6a1f;
  font-size: 11.5px;
  line-height: 1.6;
}

.df03-tree {
  margin-top: 16px;
}

.df03-tree ul {
  margin: 0;
  padding-left: 16px;
  list-style: none;
  display: grid;
  gap: 7px;
}

.df03-tree>ul {
  padding-left: 0;
}

.df03-tree li {
  color: #c7cfe0;
  font-size: 12px;
}

.df03-tree li ul {
  margin-top: 7px;
}

.df03-tree-highlight {
  color: #ffb15e;
  font-weight: 800;
}

.df03-tree-highlight span {
  margin-left: 6px;
  color: #8792a8;
  font-weight: 500;
}

.df03-usecases {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.df03-usecase {
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.df03-usecase-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.df03-usecase-title {
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.df03-usecase-badge {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
}

.df03-badge-blue {
  color: var(--blue);
  background: #e1ecfc;
}

.df03-usecase .chat-mock {
  margin-top: 14px;
  padding: 0;
  background: none;
  border: 0;
}

.df03-usecase .chat-msg-bubble span {
  display: block;
  margin-top: 8px;
  color: var(--pink);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.df03-before-after {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.df03-before-after div {
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 12.5px;
  line-height: 1.6;
}

.df03-ba-before {
  color: var(--muted);
  background: var(--soft);
}

.df03-ba-before b {
  color: var(--navy);
}

.df03-ba-after {
  color: #fff;
  background: var(--gradient);
}

.df03-ba-after b {
  color: #fff;
}

.devfeature-fine {
  margin-top: 32px;
  text-align: center;
}

.proof-section {
  padding: 110px 0;
  background: linear-gradient(130deg, #fff3ed 0%, #fff8f2 52%, #fff 100%);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 26px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--navy);
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.proof-badge span {
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.proof-badge b {
  padding-left: 14px;
  border-left: 1px solid var(--line);
  color: var(--pink);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .1em;
}

.proof-heading {
  margin: 22px 0 0;
  max-width: 1100px;
  color: var(--navy);
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.45;
  letter-spacing: -.03em;
}

@media (min-width: 1181px) {
  .proof-heading {
    white-space: nowrap;
  }
}

.proof-highlight {
  background-image: linear-gradient(to top, rgba(255, 122, 40, .32) 42%, transparent 42%);
}

.proof-callout {
  margin-top: 36px;
  padding: 26px 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.proof-callout-main {
  display: flex;
  align-items: center;
  gap: 20px;
}

.proof-clock {
  flex: none;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 28px;
  background: radial-gradient(circle at 35% 30%, #ffcaa3, var(--orange) 70%);
  box-shadow: 0 14px 26px rgba(255, 122, 40, .3);
}

.proof-callout-main p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.proof-callout-main strong {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 900;
}

.proof-callout-main strong span {
  color: var(--red);
  font-size: 44px;
  letter-spacing: -.02em;
}

.proof-callout-annual {
  flex: none;
  padding: 12px 22px;
  text-align: center;
  border: 2px dashed rgba(237, 37, 79, .35);
  border-radius: 14px;
}

.proof-callout-annual span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.proof-callout-annual strong {
  color: var(--red);
  font-size: 20px;
  font-weight: 950;
}

.proof-panels {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.proof-panel {
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow-sm);
}

.proof-panel-head {
  padding: 16px 24px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.proof-panel-head-navy {
  background: var(--navy);
}

.proof-panel-head-orange {
  background: linear-gradient(100deg, var(--red) 0%, var(--orange) 100%);
}

.proof-panel-list {
  margin: 0;
  padding: 20px 24px 4px;
  list-style: none;
  display: grid;
  gap: 14px;
}

.proof-panel-list li {
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line);
  color: var(--navy);
  font-size: 13.5px;
  font-weight: 700;
}

.proof-panel-meta {
  margin: 8px 24px 0;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--soft);
  color: var(--muted);
  font-size: 12px;
}

.proof-panel-quote {
  margin: 14px 24px 24px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #fdf1f0;
  color: #7a3a2e;
  font-size: 12px;
  line-height: 1.7;
}

.proof-panel-note {
  margin: 12px 24px 0;
  color: var(--muted);
  font-size: 11.5px;
}

.proof-scale-grid {
  margin: 16px 24px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.proof-scale-card {
  padding: 14px 8px;
  text-align: center;
  border-radius: 14px;
  background: var(--soft);
}

.proof-scale-card-featured {
  background: #ffe9da;
}

.proof-scale-card span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.proof-scale-card strong {
  display: block;
  margin-top: 6px;
  color: var(--red);
  font-size: 22px;
  font-weight: 950;
}

.proof-scale-card strong small {
  font-size: 12px;
}

.proof-scale-card>small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.proof-salary-box {
  margin: 16px 24px 0;
  padding: 16px;
  border-radius: 14px;
  background: var(--navy);
}

.proof-salary-box>p {
  margin: 0 0 12px;
  color: #ffd982;
  font-size: 11.5px;
  font-weight: 800;
}

.proof-salary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.proof-salary-grid div {
  text-align: center;
}

.proof-salary-grid span {
  display: block;
  color: #aab6ca;
  font-size: 10px;
}

.proof-salary-grid strong {
  display: block;
  margin-top: 4px;
  color: #ffd982;
  font-size: 15px;
  font-weight: 900;
}

.proof-panel-ref {
  margin: 14px 24px 24px;
  color: var(--muted);
  font-size: 11px;
}

.proof-point-bar {
  margin-top: 24px;
  padding: 22px 28px;
  border-radius: var(--radius);
  background: #fff4ea;
  border: 1px solid #ffe0c2;
}

.proof-point-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  font-size: 11px;
  font-weight: 900;
}

.proof-point-bar p {
  margin: 12px 0 0;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
}

.proof-point-bar p u {
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
}

.proof-point-arrow {
  margin-top: 8px !important;
  color: var(--muted) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}

.proof-section .fine-note {
  margin-top: 14px;
}

.proof-section>.container>.text-link {
  margin-top: 22px;
}

.departments-section {
  background: #f7f8fc;
}

.department-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.department-grid article {
  min-height: 210px;
  padding: 25px 24px;
  border: 1px solid #dde3ed;
  border-radius: 19px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(12, 28, 59, .05);
  transition: transform .2s ease, box-shadow .2s ease;
}

.department-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(12, 28, 59, .09);
}

.department-grid span {
  display: inline-flex;
  width: 35px;
  height: 27px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  color: #fff;
  background: var(--gradient-cool);
  font-size: 10px;
  font-weight: 950;
}

.department-grid article:nth-child(2n) span {
  background: var(--gradient);
}

.department-grid h3 {
  margin: 22px 0 10px;
  color: var(--navy);
  font-size: 21px;
}

.department-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.comparison-section {
  padding: 112px 0;
  color: #fff;
  background:
    radial-gradient(circle at 86% 15%, rgba(116, 82, 245, .24), transparent 30%),
    #08152f;
}

.section-heading-light h2 {
  color: #fff;
}

.section-heading-light h2 span {
  background: linear-gradient(90deg, #ff6489, #ffaf4d);
  -webkit-background-clip: text;
  background-clip: text;
}

.section-heading-light .section-kicker {
  color: #ff89aa;
}

.cost-compare {
  display: grid;
  grid-template-columns: 1fr 70px 1fr;
  align-items: stretch;
  max-width: 980px;
  margin-inline: auto;
}

.cost-panel {
  min-height: 520px;
  padding: 34px;
  border-radius: 26px;
}

.cost-other {
  color: var(--navy);
  background: #fff;
}

.cost-jam {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 28px 60px rgba(239, 37, 79, .28);
}

.cost-jam::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: -110px;
  top: -120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
}

.cost-label {
  margin: 0 0 24px;
  font-size: 15px;
  font-weight: 950;
}

.cost-jam .cost-label img {
  width: 112px;
  filter: brightness(0) invert(1);
}

.cost-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cost-other li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid #e4e8ef;
  font-size: 13px;
}

.cost-other li b {
  white-space: nowrap;
}

.cost-total {
  margin-top: 22px;
  padding-top: 18px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-top: 2px solid var(--navy);
}

.cost-total span {
  font-size: 13px;
  font-weight: 900;
}

.cost-total strong {
  color: var(--pink);
  font-size: 26px;
}

.cost-total small {
  margin-left: 3px;
  color: var(--navy);
  font-size: 11px;
}

.annual-label {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--yellow);
  font-size: 10px;
  font-weight: 950;
}

.jam-price {
  display: block;
  margin-top: 24px;
  color: #fff36f;
  font-size: 80px;
  line-height: 1;
  letter-spacing: -.05em;
}

.jam-price small {
  margin-left: 5px;
  font-size: 24px;
}

.jam-unit {
  margin: 10px 0 0;
  font-size: 13px;
  font-weight: 850;
}

.cost-jam ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 35px;
}

.cost-jam li {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 11px;
  background: rgba(255, 255, 255, .1);
  font-size: 11px;
  font-weight: 850;
}

.cost-arrow {
  display: grid;
  place-items: center;
  align-self: center;
  width: 54px;
  height: 54px;
  margin-inline: auto;
  border-radius: 50%;
  color: #fff;
  background: var(--pink);
  box-shadow: 0 14px 30px rgba(249, 36, 114, .3);
  font-size: 24px;
  font-weight: 950;
}

.saving-banner {
  max-width: 980px;
  margin: 24px auto 0;
  padding: 22px 28px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 22px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  background: rgba(255, 255, 255, .08);
}

.saving-banner p {
  margin: 0;
  color: #d9e1ed;
  font-size: 14px;
}

.saving-banner p span {
  margin: 0 8px;
  color: #ff8aa9;
}

.saving-banner strong {
  color: #fff36f;
  font-size: 22px;
}

.saving-banner b {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--navy);
  background: #fff;
  font-size: 11px;
}

.comparison-note {
  max-width: 980px;
  margin: 18px auto 0;
  color: #aeb9cb;
  font-size: 10px;
  line-height: 1.65;
}

.pricing-section {
  background: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 980px;
  margin-inline: auto;
}

.price-card {
  position: relative;
  min-height: 620px;
  padding: 45px 42px 38px;
  display: flex;
  flex-direction: column;
  border: 1px solid #dfe4ed;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.price-card-featured {
  color: #fff;
  background: var(--gradient);
  border: 0;
  box-shadow: 0 30px 66px rgba(239, 37, 79, .22);
}

.recommend-badge {
  position: absolute;
  right: 26px;
  top: -18px;
  padding: 9px 20px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--yellow);
  box-shadow: 0 10px 24px rgba(165, 109, 0, .18);
  font-size: 12px;
  font-weight: 950;
  transform: rotate(3deg);
}

.plan-en {
  margin: 0;
  color: var(--purple);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .14em;
}

.price-card-featured .plan-en {
  color: #fff4a8;
}

.price-card h3 {
  margin: 10px 0 0;
  font-size: 28px;
}

.price {
  display: flex;
  align-items: baseline;
  margin-top: 24px;
}

.price strong {
  color: var(--navy);
  font-size: 58px;
  line-height: 1;
  letter-spacing: -.055em;
}

.price-card-featured .price strong {
  color: #fff36f;
}

.price span {
  margin-left: 6px;
  font-size: 18px;
  font-weight: 900;
}

.price-unit {
  margin: 10px 0 0;
  color: #647187;
  font-size: 12px;
  font-weight: 800;
}

.price-card-featured .price-unit {
  color: rgba(255, 255, 255, .88);
}

.price-card .check-list {
  margin-top: 31px;
}

.price-card .check-list li {
  color: #536177;
  font-size: 13px;
  line-height: 1.65;
}

.price-card-featured .check-list li {
  color: #fff;
}

.price-card-featured .check-list li::before {
  color: #fff6a8;
}

.price-card .button {
  margin-top: auto;
}

.pricing-marks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 980px;
  margin: 28px auto 0;
  overflow: hidden;
  border: 1px solid #e0e5ee;
  border-radius: 18px;
}

.pricing-marks span {
  min-height: 95px;
  padding: 17px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #e0e5ee;
  color: #68758b;
  font-size: 10px;
  text-align: center;
}

.pricing-marks span:last-child {
  border-right: 0;
}

.pricing-marks b {
  margin-bottom: 4px;
  color: var(--pink);
  font-size: 14px;
}

.pricing-caution {
  margin: 15px 0 0;
  color: #68758b;
  font-size: 12px;
  text-align: center;
}

.steps-section {
  padding: 100px 0;
  color: #fff;
  background: var(--gradient);
}

.steps-lead {
  margin: 18px auto 0;
  max-width: 640px;
  color: #fff !important;
  font-size: 14.5px;
  line-height: 1.8;
}

.start-conditions-grid {
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.start-condition-card {
  padding: 28px 24px;
  border-radius: 22px;
  color: var(--navy);
  background: #fff;
  box-shadow: 0 20px 45px rgba(110, 17, 55, .14);
}

.start-condition-num {
  display: block;
  color: rgba(12, 24, 50, .18);
  font-size: 26px;
  font-weight: 950;
  letter-spacing: -.02em;
}

.start-condition-en {
  margin: 4px 0 0;
  color: var(--orange);
  font-size: 10.5px;
  font-weight: 950;
  letter-spacing: .1em;
}

.start-condition-card h3 {
  margin: 10px 0 0;
  font-size: 24px;
  font-weight: 950;
}

.start-condition-desc {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.7;
}

.start-condition-tags {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.start-condition-tags span {
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--soft);
  border: 1px solid var(--line);
  color: #3a4459;
  font-size: 10.5px;
  font-weight: 700;
}

.start-condition-card-dark {
  color: #fff;
  background: linear-gradient(160deg, #0d1c40 0%, var(--navy) 55%, #1a1046 100%);
  box-shadow: 0 20px 45px rgba(8, 21, 47, .35);
}

.start-condition-card-dark .start-condition-num {
  color: rgba(255, 255, 255, .2);
}

.start-condition-card-dark .start-condition-en {
  color: var(--yellow);
}

.start-condition-card-dark .start-condition-desc {
  color: #c7cfe0;
}

.start-condition-card-dark .start-condition-tags span {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .16);
  color: #e2e6f0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 28px 60px rgba(110, 17, 55, .17);
}

.steps-grid article {
  position: relative;
  min-height: 260px;
  padding: 38px 30px;
  color: var(--navy);
  border-right: 1px solid #e4e8ef;
}

.steps-grid article:last-child {
  border-right: 0;
}

.steps-grid article:not(:last-child)::after {
  content: "→";
  position: absolute;
  z-index: 2;
  right: -17px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--purple);
  font-size: 15px;
  font-weight: 950;
}

.steps-grid span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--gradient-cool);
  box-shadow: 0 10px 22px rgba(90, 77, 231, .2);
  font-size: 18px;
  font-weight: 950;
}

.steps-grid article:last-child span {
  background: var(--gradient);
}

.steps-grid h3 {
  margin: 24px 0 10px;
  font-size: 21px;
}

.steps-grid p {
  margin: 0;
  color: #5e6a7e;
  font-size: 13px;
  line-height: 1.75;
}

.contact-section {
  padding: 108px 0;
  color: #fff;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 214, 82, .16), transparent 26%),
    linear-gradient(130deg, #07152f 0%, #122b5a 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 72px;
  align-items: center;
}

.contact-message .section-kicker {
  color: #ff89aa;
}

.contact-message h2 {
  color: #fff;
  font-size: clamp(41px, 4.8vw, 60px);
}

.contact-message h2 span {
  background: linear-gradient(90deg, #ff5a83, #ffad4c);
  -webkit-background-clip: text;
  background-clip: text;
}

.contact-message>p:not(.section-kicker) {
  margin: 24px 0 0;
  color: #d0d9e8;
  font-size: 15px;
}

.contact-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}

.contact-summary span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .07);
  font-size: 11px;
  font-weight: 850;
}

.contact-form {
  position: relative;
  padding: 38px;
  border-radius: 28px;
  color: var(--text);
  background: #fff;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .26);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 4px 15px;
  margin-bottom: 25px;
}

.form-heading p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--pink);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .14em;
}

.form-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.3;
}

.form-heading span {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--pink);
  background: #fff0f5;
  font-size: 10px;
  font-weight: 850;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px;
}

.form-grid label {
  color: var(--navy);
  font-size: 12px;
  font-weight: 850;
}

.form-grid em {
  margin-left: 5px;
  padding: 2px 5px;
  border-radius: 3px;
  color: #fff;
  background: var(--pink);
  font-size: 9px;
  font-style: normal;
}

.form-grid label>span {
  margin-left: 4px;
  color: #8a95a7;
  font-size: 10px;
}

.form-grid input,
.form-grid select {
  display: block;
  width: 100%;
  height: 49px;
  margin-top: 7px;
  padding: 0 13px;
  border: 1px solid #d8dfe9;
  border-radius: 9px;
  color: var(--text);
  background: #fff;
  outline: none;
  font-size: 13px;
}

.form-grid input::placeholder {
  color: #a4adbb;
}

.form-grid input:focus,
.form-grid select:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(249, 36, 114, .09);
}

.form-grid .full {
  grid-column: 1 / -1;
}

.submit-button {
  width: 100%;
  margin-top: 22px;
  border: 0;
}

.submit-button:disabled {
  opacity: .65;
  cursor: wait;
  transform: none;
}

.privacy-note,
.recaptcha-note {
  margin: 12px auto 0;
  color: #6a768a;
  font-size: 11px;
  line-height: 1.6;
  text-align: center;
}

.recaptcha-note {
  margin-top: 7px;
}

.recaptcha-note a {
  color: var(--navy);
  text-decoration: underline;
  font-weight: 800;
}

.form-result {
  min-height: 22px;
  margin-top: 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 850;
}

.form-result.is-pending {
  color: #5d6a7f;
}

.form-result.is-success {
  color: #15895e;
}

.form-result.is-error {
  color: #d62863;
}

.faq-section {
  background: #f7f8fb;
}

.faq-list {
  max-width: 900px;
  margin-inline: auto;
}

.faq-list details {
  margin: 12px 0;
  overflow: hidden;
  border: 1px solid #dde3ed;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(12, 28, 59, .04);
}

.faq-list summary {
  position: relative;
  padding: 22px 62px 22px 24px;
  cursor: pointer;
  list-style: none;
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 50%;
  width: 16px;
  height: 2px;
  transform: translateY(-50%);
  background: var(--pink);
  transition: transform .2s ease;
}

.faq-list summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(0);
}

.faq-list p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  padding: 54px 0 18px;
  color: #fff;
  background: #050f24;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
}

.footer-brand img {
  width: 132px;
}

.footer-brand p {
  max-width: 310px;
  margin: 18px 0 0;
  color: #aab6ca;
  font-size: 12px;
  line-height: 1.8;
}

.footer-brand .footer-note-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .16);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.footer-note-link:hover {
  border-color: rgba(255, 255, 255, .35);
}

.footer-note-link img {
  height: 25px;
  width: auto;
  object-fit: contain;
}

.site-footer h3 {
  margin: 2px 0 14px;
  color: #fff;
  font-size: 12px;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: #aab6ca;
  font-size: 11px;
}

.site-footer a:hover {
  color: #fff;
}

.copyright {
  margin-top: 38px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: #7e8ba1;
  font-size: 10px;
  text-align: center;
}

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

.grecaptcha-badge {
  visibility: hidden !important;
}

@media (max-width: 1180px) {
  .global-nav {
    gap: 17px;
  }

  .global-nav a {
    font-size: 12px;
  }

  .header-cta {
    padding-inline: 16px;
  }

  .hero-grid {
    gap: 45px;
  }

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

  .model-ribbon {
    grid-template-columns: repeat(4, 1fr);
  }

  .model-plus {
    grid-column: span 2;
  }

  .thread-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .thread-arrow {
    display: none;
  }

  .thread-step {
    min-height: 280px;
  }

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

  .roadmap-card {
    min-height: 330px;
  }

  .devfeature {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .devfeature-reverse .devfeature-copy {
    order: 1;
  }

  .devfeature-reverse .devfeature-visual {
    order: 2;
  }

  .connect-grid-cols {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 26px;
  }

  .devfeature01 {
    padding: 32px 28px;
  }

  .df01-head {
    max-width: 100%;
  }

  .release-sticky {
    position: static;
    margin: 18px 0 0;
    transform: none;
  }

  .df01-panels {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .df01-arrow {
    display: none;
  }

  .devfeature02 {
    padding: 32px 28px;
  }

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

  .line-side {
    grid-column: span 2;
  }

  .devfeature03 {
    padding: 32px 28px;
  }

  .df03-steps {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .df03-arrow {
    display: none;
  }

  .security-news {
    padding: 32px 28px;
  }

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

  .news-timeline {
    grid-column: span 2;
  }

  .usage-matrix-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  .df01-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .section {
    padding: 86px 0;
  }

  .container {
    width: min(100% - 36px, 1180px);
  }

  .header-inner {
    width: min(100% - 28px, 1280px);
  }

  .brand img {
    width: 116px;
  }

  .global-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    max-height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    display: none;
    padding: 22px 24px 30px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(8, 21, 47, .99);
    box-shadow: 0 18px 34px rgba(0, 0, 0, .22);
  }

  .global-nav.is-open {
    display: flex;
  }

  .global-nav a {
    padding: 14px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    font-size: 14px;
  }

  .global-nav a::after {
    display: none;
  }

  .global-nav .nav-mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    margin-top: 18px;
    padding: 0 20px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: var(--gradient);
    box-shadow: 0 14px 34px rgba(249, 36, 114, .28);
    font-size: 14px;
    font-weight: 950;
  }

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

  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
    margin-left: auto;
  }

  .hero {
    padding-top: 62px;
  }

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

  .hero-copy {
    max-width: 720px;
    padding-top: 0;
  }

  .hero h1 {
    font-size: clamp(46px, 9vw, 66px);
  }

  .hero-visual {
    min-height: 620px;
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
  }

  .model-ribbon {
    margin-top: 35px;
  }

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

  .about-card {
    min-height: auto;
  }

  .why-panel {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 42px;
  }

  .orchestration-section {
    padding: 94px 0;
  }

  .thread-flow {
    padding: 20px;
  }

  .before-after {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .state-arrow {
    transform: rotate(90deg);
  }

  .security-panel {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 42px;
  }

  .template-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .proof-panels {
    grid-template-columns: 1fr;
  }

  .template-grid {
    gap: 55px;
  }

  .feature-suite-grid {
    grid-template-columns: 1fr;
  }

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

  .cost-compare {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cost-arrow {
    transform: rotate(90deg);
  }

  .cost-panel {
    min-height: auto;
  }

  .saving-banner {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }

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

  .price-card {
    min-height: auto;
  }

  .price-card .button {
    margin-top: 32px;
  }

  .start-conditions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .steps-grid article:nth-child(2) {
    border-right: 0;
  }

  .steps-grid article:nth-child(-n+2) {
    border-bottom: 1px solid #e4e8ef;
  }

  .steps-grid article:nth-child(2)::after {
    display: none;
  }

  .contact-grid {
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }

  .footer-grid>div:last-child {
    grid-column: 2;
  }

}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .section {
    padding: 72px 0;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    padding: 46px 0 28px;
  }

  .hero h1 {
    font-size: clamp(39px, 12vw, 52px);
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 15px;
  }

  .hero-points li {
    font-size: 14px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-row {
    max-width: none;
  }

  .trust-row span {
    padding-inline: 8px;
    font-size: 12px;
  }

  .trust-row b {
    font-size: 9px;
  }

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

  .browser-frame-main {
    top: 28px;
    width: 94%;
  }

  .browser-frame-sub {
    width: 37%;
  }

  .hero-visual-label {
    right: 0;
    width: 90px;
    height: 90px;
  }

  .hero-visual-label strong {
    font-size: 26px;
  }

  .hero-visual-label span {
    font-size: 8px;
  }

  .hero-floating-note {
    left: 0;
    bottom: 2px;
    padding: 9px 12px;
  }

  .hero-floating-note p {
    font-size: 9px;
  }

  .model-ribbon {
    grid-template-columns: repeat(2, 1fr);
    padding: 10px;
  }

  .model-plus {
    grid-column: 1 / -1;
  }

  .model-item {
    min-height: 64px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .template-copy h2,
  .contact-message h2 {
    font-size: clamp(30px, 9vw, 41px);
  }

  .security-section .section-heading h2 {
    font-size: 42px;
  }

  .orchestration-heading h2 {
    font-size: 28px;
  }

  #roadmap h2 {
    font-size: 30px;
  }

  #departments h2 {
    font-size: 30px;
  }

  .section-heading>p:last-child {
    margin-top: 18px;
    font-size: 14px;
  }

  .about-card {
    padding: 28px 24px;
  }

  .why-panel {
    margin-top: 50px;
    padding: 31px 24px;
    border-radius: 24px;
  }

  .why-list {
    grid-template-columns: 1fr;
  }

  .why-list b {
    grid-column: auto;
  }

  .orchestration-section {
    padding: 76px 0;
  }

  .thread-topbar {
    padding-inline: 13px;
  }

  .thread-topbar p {
    font-size: 10px;
  }

  .thread-topbar span {
    display: none;
  }

  .thread-flow {
    grid-template-columns: 1fr;
    padding: 15px;
  }

  .thread-step {
    min-height: auto;
  }

  .orchestration-foot {
    align-items: stretch;
  }

  .orchestration-foot p {
    width: 100%;
    margin-bottom: 4px;
  }

  .orchestration-foot span {
    text-align: center;
  }

  .state-card {
    min-height: auto;
    padding: 29px 24px;
  }

  .security-panel {
    padding: 29px 22px;
    border-radius: 24px;
  }

  .security-screen {
    padding: 0 0 35px;
  }

  .security-badge {
    width: 190px;
  }

  .template-count {
    width: 108px;
    height: 108px;
    border-radius: 22px;
  }

  .template-count strong {
    font-size: 33px;
  }

  .template-count span {
    font-size: 8px;
  }

  .category-block {
    padding: 19px;
  }

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

  .suite-card {
    padding: 31px 23px;
    border-radius: 24px;
  }

  .agent-name-grid {
    grid-template-columns: 1fr;
  }

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

  .roadmap-card {
    min-height: auto;
    padding-bottom: 31px;
  }

  .roadmap-custom {
    padding-bottom: 92px;
  }

  .connect-grid,
  .devfeature01,
  .devfeature02,
  .devfeature03,
  .security-news {
    padding: 26px 20px;
  }

  .usage-matrix-panel {
    padding: 20px;
  }

  .usage-matrix-list-card {
    padding: 22px 20px;
  }

  .usage-matrix-list b {
    width: 78px;
    font-size: 13px;
  }

  .news-grid,
  .security-warn-grid {
    grid-template-columns: 1fr;
  }

  .guard-flow {
    grid-template-columns: 1fr 1fr;
  }

  .start-conditions-grid {
    grid-template-columns: 1fr;
  }

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

  .seminar-qa-grid {
    grid-template-columns: 1fr;
  }

  .news-timeline {
    grid-column: span 1;
  }

  .release-sticky {
    margin-inline: auto;
  }

  .df01-head {
    align-items: center;
    margin-top: 20px;
    text-align: center;
  }

  .df02-icon-row {
    justify-content: center;
  }

  .df01-heading,
  .df01-sub {
    max-width: 100%;
    text-align: center;
  }

  .connect-grid-cols {
    grid-template-columns: 1fr 1fr;
    gap: 26px 16px;
  }

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

  .line-side {
    grid-column: span 1;
  }

  .df03-usecases,
  .df03-before-after {
    grid-template-columns: 1fr;
  }

  .proof-section {
    padding: 76px 0;
  }

  .proof-callout {
    padding: 22px;
  }

  .proof-callout-annual {
    width: 100%;
  }

  .proof-scale-grid,
  .proof-salary-grid {
    grid-template-columns: 1fr;
  }

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

  .department-grid article {
    min-height: auto;
  }

  .comparison-section {
    padding: 76px 0;
  }

  .cost-panel {
    padding: 27px 22px;
  }

  .jam-price {
    font-size: 65px;
  }

  .cost-jam ul {
    grid-template-columns: 1fr;
  }

  .price-card {
    padding: 36px 24px 30px;
  }

  .price strong {
    font-size: 49px;
  }

  .pricing-marks {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-marks span:nth-child(2) {
    border-right: 0;
  }

  .pricing-marks span:nth-child(-n+2) {
    border-bottom: 1px solid #e0e5ee;
  }

  .steps-section {
    padding: 76px 0;
  }

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

  .steps-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid #e4e8ef;
  }

  .steps-grid article:last-child {
    border-bottom: 0;
  }

  .steps-grid article:not(:last-child)::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -17px;
    transform: translateX(-50%) rotate(90deg);
  }

  .contact-section {
    padding: 76px 0;
  }

  .contact-form {
    padding: 27px 19px;
    border-radius: 22px;
  }

  .form-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .form-heading span {
    justify-self: start;
  }

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

  .form-grid .full {
    grid-column: auto;
  }

  .faq-list summary {
    padding: 19px 54px 19px 19px;
    font-size: 14px;
  }

  .faq-list p {
    padding: 0 19px 20px;
    font-size: 13px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid>div:last-child {
    grid-column: auto;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}


/* --- Marked heading refinements (2026-07 update) --- */
.heading-keep,
.hero-title-main {
  display: inline-block;
  white-space: nowrap;
}

.hero-title-main {
  color: var(--navy) !important;
  background: none !important;
  -webkit-text-fill-color: currentColor;
}

.why-copy h3 {
  font-size: clamp(30px, 3.25vw, 43px);
  letter-spacing: -.045em;
}

.security-copy h3 {
  font-size: clamp(25px, 3.15vw, 42px);
}

.template-copy h2 {
  font-size: clamp(27px, 3.6vw, 46px);
}

.roadmap-section .section-heading,
.departments-section .section-heading,
.pricing-section .section-heading {
  max-width: 900px;
}

.comparison-section .section-heading {
  max-width: 860px;
}

.steps-section .section-heading {
  max-width: 880px;
}

.steps-heading-accent {
  color: #fff !important;
  background: none !important;
  -webkit-text-fill-color: currentColor;
  text-shadow: 0 2px 12px rgba(8, 21, 47, .22);
}

.contact-message h2 {
  font-size: clamp(40px, 4.35vw, 56px);
}

/* --- Legal / Terms pages --- */
.policy-page {
  background: #f6f8fc;
}

.policy-page .site-header {
  position: sticky;
}

.legal-main {
  min-height: 70vh;
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 86px;
  color: #fff;
  background:
    radial-gradient(circle at 83% 15%, rgba(111, 89, 255, .35), transparent 26%),
    radial-gradient(circle at 15% 95%, rgba(249, 36, 114, .2), transparent 30%),
    #07152f;
}

.legal-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image:
    linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

.legal-hero .container {
  position: relative;
  z-index: 1;
}

.legal-hero .section-kicker {
  color: #ff91ae;
}

.legal-title-mobile-line {
  display: inline;
}

.legal-hero h1 {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(38px, 5.2vw, 66px);
  line-height: 1.2;
  letter-spacing: -.05em;
  font-weight: 950;
}

.legal-hero>.container>p:not(.section-kicker):not(.terms-effective) {
  max-width: 760px;
  margin: 24px 0 0;
  color: #cbd5e5;
  font-size: 16px;
  line-height: 1.9;
}

.terms-effective {
  display: inline-flex;
  margin: 28px 0 0;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  font-size: 12px;
  font-weight: 850;
}

.legal-content-section {
  padding: 82px 0 110px;
}

.legal-container {
  max-width: 1040px;
}

.legal-card,
.terms-document {
  border: 1px solid #dfe5ee;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(8, 21, 47, .08);
}

.legal-table {
  margin: 0;
}

.legal-row {
  display: grid;
  grid-template-columns: 250px 1fr;
  border-bottom: 1px solid #e5e9f0;
}

.legal-row:last-child {
  border-bottom: 0;
}

.legal-row dt,
.legal-row dd {
  margin: 0;
  padding: 28px 32px;
  font-size: 15px;
  line-height: 1.85;
}

.legal-row dt {
  color: var(--navy);
  background: #f8f9fc;
  font-weight: 900;
}

.legal-row dd {
  color: #39465d;
}

.legal-row dd a {
  color: #3159cf;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-row dd small {
  color: #6a768b;
}

.legal-row ul {
  margin: 0;
  padding-left: 1.3em;
}

.legal-back {
  margin-top: 38px;
  text-align: center;
}

.terms-layout {
  max-width: 1180px;
}

.terms-nav {
  position: sticky;
  z-index: 2;
  top: 92px;
  margin-bottom: 28px;
  padding: 18px;
  display: grid;
  grid-template-columns: auto repeat(7, 1fr);
  gap: 8px;
  align-items: stretch;
  border: 1px solid #dfe5ee;
  border-radius: 18px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 12px 32px rgba(8, 21, 47, .08);
  backdrop-filter: blur(14px);
}

.terms-nav>p {
  margin: 0;
  padding: 0 12px;
  display: flex;
  align-items: center;
  color: #7a879a;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .12em;
}

.terms-nav a {
  min-width: 0;
  padding: 10px 8px;
  border-radius: 10px;
  color: #41506a;
  background: #f5f7fb;
  font-size: 10px;
  line-height: 1.35;
  text-align: center;
  font-weight: 800;
}

.terms-nav a:hover {
  color: #fff;
  background: var(--gradient-cool);
}

.terms-nav a span {
  display: block;
  margin-bottom: 3px;
  color: var(--purple);
  font-size: 9px;
  letter-spacing: .08em;
}

.terms-nav a:hover span {
  color: #fff;
}

.terms-document {
  padding: 58px 64px 70px;
}

.terms-chapter+.terms-chapter {
  margin-top: 76px;
}

.terms-chapter>h2 {
  margin: 0 0 34px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--navy);
  color: var(--navy);
  font-size: 28px;
  line-height: 1.45;
  letter-spacing: -.02em;
}

.terms-chapter>h2 span {
  display: block;
  margin-bottom: 7px;
  color: var(--pink);
  font-size: 10px;
  letter-spacing: .14em;
}

.terms-article+.terms-article {
  margin-top: 46px;
}

.terms-article h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.55;
}

.term-clause,
.term-subclause {
  position: relative;
  margin: 10px 0 0;
  color: #39465d;
  font-size: 15px;
  line-height: 1.95;
}

.term-clause {
  padding-left: 2.2em;
}

.term-subclause {
  margin-left: 2.2em;
  padding-left: 3em;
  color: #536078;
  font-size: 14px;
}

.term-clause>span,
.term-subclause>span {
  position: absolute;
  left: 0;
  color: var(--navy);
  font-weight: 900;
}

.terms-end,
.terms-date {
  text-align: right;
  color: #536078;
  font-size: 14px;
}

.terms-end {
  margin: 64px 0 0;
  color: var(--navy);
  font-weight: 900;
}

.terms-date {
  margin: 10px 0 0;
}

@media (max-width: 1180px) {
  .terms-nav {
    top: 82px;
    grid-template-columns: repeat(4, 1fr);
  }

  .terms-nav>p {
    grid-column: 1 / -1;
    justify-content: center;
  }
}

@media (max-width: 760px) {

  .heading-keep,
  .hero-title-main {
    white-space: normal;
  }

  h1,
  h2,
  h3,
  h4,
  .proof-heading,
  .usage-matrix-heading,
  .security-news-heading,
  .news-timeline-summary,
  .df01-heading,
  .df01-head-label,
  .line-col-head,
  .security-solution-title,
  .hero-lead {
    text-wrap: balance;
  }

  .about-card h3 {
    font-size: 20px;
  }

  .state-card h3 {
    font-size: 24px;
  }

  .legal-hero {
    padding: 74px 0 62px;
  }

  .legal-title-mobile-line {
    display: block;
  }

  .legal-hero h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .legal-hero>.container>p:not(.section-kicker):not(.terms-effective) {
    font-size: 14px;
  }

  .legal-content-section {
    padding: 54px 0 82px;
  }

  .legal-card,
  .terms-document {
    border-radius: 20px;
  }

  .legal-row {
    grid-template-columns: 1fr;
  }

  .legal-row dt,
  .legal-row dd {
    padding: 20px 21px;
    font-size: 14px;
  }

  .legal-row dt {
    padding-bottom: 10px;
    background: #f6f8fc;
  }

  .legal-row dd {
    padding-top: 10px;
  }

  .terms-nav {
    position: static;
    grid-template-columns: repeat(2, 1fr);
    padding: 13px;
  }

  .terms-document {
    padding: 35px 22px 48px;
  }

  .terms-chapter+.terms-chapter {
    margin-top: 58px;
  }

  .terms-chapter>h2 {
    font-size: 23px;
  }

  .terms-article h3 {
    font-size: 18px;
  }

  .term-clause,
  .term-subclause {
    font-size: 14px;
    line-height: 1.9;
  }

  .term-subclause {
    margin-left: .7em;
    padding-left: 2.8em;
    font-size: 13px;
  }
}

.copyright {
  font-size: 11px;
  color: #888;
  text-align: center;
  padding: 12px 0;
  text-wrap: balance;
  /* 文字の折り返しバランスを自動調整 */
}

/* PCでは横並び、スマホでは自然な2行に分離 */
.copyright-service,
.copyright-company {
  display: inline-block;
  white-space: nowrap;
  /* 「エーアイ」と「ジャム」の間などの意図しない改行を防止 */
}

@media (max-width: 768px) {

  .copyright-service,
  .copyright-company {
    display: block;
    /* スマホ表示時は中央揃えで綺麗な2行にする */
    margin: 2px 0;
  }
}