:root {
  --color-accent: #2a9d8f;
  --color-accent-dark: #1d7a6e;
  --color-surface: #ffffff;
  --color-surface-alt: #f5f5f7;
  --color-surface-soft: #f2f2f7;
  --color-page: #fbfbfd;
  --color-primary: #1d1d1f;
  --color-text: #1d1d1f;
  --color-text-muted: #6e6e73;
  --color-text-light: #86868b;
  --color-text-secondary: #86868b;
  --color-border: #e5e5e5;
  --gradient-hero: linear-gradient(110deg, #0b3f3b 0%, #155e56 48%, #2fbf9c 100%);
  --primary-gradient: linear-gradient(135deg, #2a9d8f, #1f7a6f);
  --shadow-card: 0 10px 40px rgba(0,0,0,0.03);
  --shadow-floating: 0 8px 24px rgba(0,0,0,0.1);
  --shadow-cta: 0 8px 20px rgba(42,157,143,0.25);
  --radius-card: 32px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --header-height: 60px;
  --container-max: 1090px;
  --gutter-desktop: 48px;
  --gutter-tablet: 40px;
  --gutter-mobile: 30px;
  --space-section-desktop: 160px;
  --space-section-tablet: 120px;
  --space-section-mobile: 80px;
  --space-section-current: var(--space-section-desktop);
  --card-padding-block: clamp(40px, 5vw, 64px);
  --card-padding-inline: clamp(24px, 4vw, 48px);
  --card-gap-desktop: clamp(24px, 3vw, 32px);
  --card-glass: rgba(255, 255, 255, 0.7);
  --card-border: rgba(42, 157, 143, 0.15);
  --bento-large-gap: clamp(40px, 6vw, 80px);
  --section-intro-max: 900px;
  --hero-break-spacing: 56px;
  --font-family-base: "SF Pro JP", "SF Pro Text", "SF Pro Display", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", sans-serif;
  --chat-green: #2A9D8F;
  --chat-green-hover: #4e8273;
  --fs-headline-xl: clamp(36px, 6vw, 72px);
  --fs-headline-lg: clamp(30px, 5vw, 56px);
  --fs-headline-md: clamp(24px, 3.8vw, 40px);
  --fs-body-lg: clamp(16px, 2.5vw, 22px);
  --fs-body-md: clamp(14px, 2vw, 18px);
  --transition-emphasis: 250ms cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-soft: 400ms cubic-bezier(0.22, 1, 0.36, 1);
  --text-main: #11181c;
  --text-muted: #687076;
}

@media (max-width: 1024px) {
  :root {
      --space-section-current: var(--space-section-tablet);
      --hero-break-spacing: 24px;
  }
}


@media (max-width: 768px) {
  :root {
      --space-section-current: var(--space-section-mobile);
  }
}

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

.lp-web-body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font-family-base);
  color: var(--color-text);
  background-color: var(--color-page);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.lp-web-link {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-emphasis), opacity var(--transition-emphasis), transform var(--transition-emphasis);
}

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

.lp-web-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lp-web-control {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
}

.lp-web-button {
  cursor: pointer;
}

.lp-web-button:focus-visible,
.lp-web-link:focus-visible {
  outline: 2px solid rgba(42,157,143,0.4);
  outline-offset: 3px;
}

.lp-web-body.no-scroll {
  overflow: hidden;
  position: fixed;
  inset: 0;
  width: 100%;
}

.lp-web-body.js-enabled .fade-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--transition-soft), transform var(--transition-soft);
  will-change: opacity, transform;
}

.lp-web-body.js-enabled .fade-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

#pricing-section, #faq-section {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
  }
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--gutter-desktop);
  position: relative;
}

@media (max-width: 1024px) {
  .container {
      padding-inline: var(--gutter-tablet);
  }
}

@media (max-width: 768px) {
  .container {
      padding-inline: var(--gutter-mobile);
  }
}

.section-spacing {
  padding-block: var(--space-section-current);
}

.section-intro {
  width: 100%;
  max-width: var(--section-intro-max);
  margin: 0 auto 80px 0;
  text-align: left;
}

.section-intro--narrow {
  --section-intro-max: 48rem;
}

:where(.kpi-card, .bento-card, .integ-card) {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  border: 1px solid rgba(0,0,0,0.02);
  box-shadow: var(--shadow-card);
}

.security-inner,
.pricing-inner,
.faq-inner {
  margin: 0 auto;
}

.pricing-inner {
  max-width: 1120px;
  padding-inline: var(--gutter-tablet);
}

.faq-inner {
  max-width: 1080px;
  padding-inline: var(--gutter-tablet);
}

.faq-list-items .py-5 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.faq-list-items h3 {
  line-height: 1.35;
}

@media (min-width: 1024px) {
  .faq-list-panel {
    overflow: visible;
  }
}

.security-grid {
  max-width: 980px;
  margin: 0 auto;
  padding-inline: var(--gutter-tablet);
}

.faq-card-action {
  white-space: nowrap;
}

.faq-support-texture {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='1'/%3E%3C/svg%3E");
}

.faq-card-mascot {
  object-fit: contain;
  object-position: right bottom;
  -webkit-mask-image: linear-gradient(to top, black 80%, transparent 100%);
  mask-image: linear-gradient(to top, black 80%, transparent 100%);
}

.faq-title-line {
  display: block;
}

.faq-title-mobile-line {
  display: inline;
}

.faq-support-title {
  max-width: 560px;
  font-size: 26px;
  line-height: 1.36;
  letter-spacing: 0;
}

.faq-section .faq-support-title {
  font-size: 24px;
  line-height: 1.4;
}

.pricing-title-line {
  display: inline;
}

@media (max-width: 768px) {
  .pricing-inner,
  .faq-inner,
  .security-grid {
      padding-inline: 0;
  }

  .pricing-section .section-intro,
  .faq-section .section-intro,
  .security-section .section-intro {
      margin-bottom: 48px;
  }

  .faq-layout {
      gap: 28px;
  }

  .faq-section .faq-support-card {
      width: 100%;
      height: clamp(288px, 78vw, 320px);
      border-radius: 26px;
  }

  .faq-section .faq-support-card-content {
      padding: clamp(24px, 6vw, 30px) 24px 0;
  }

  .faq-section .faq-support-title {
      max-width: 286px;
      margin-top: 0;
      margin-bottom: 0;
      font-size: clamp(1.38rem, 5.55vw, 1.58rem);
      line-height: 1.28;
      letter-spacing: 0;
  }

  .faq-section .faq-title-mobile-line {
      display: inline;
  }

  .faq-section .faq-card-actions {
      width: 100%;
      margin-top: clamp(14px, 3.8vw, 18px);
      flex-wrap: nowrap;
      gap: 10px;
  }

  .faq-section .faq-card-action {
      flex: 1 1 0;
      min-width: 0;
      height: 48px;
      padding: 0 12px;
      border-radius: var(--radius-pill);
      font-size: 13px;
      line-height: 1;
      white-space: nowrap;
  }

  .faq-section .faq-card-visual {
      right: -32px;
      bottom: -16px;
      width: min(250px, 74%);
      height: auto;
      aspect-ratio: 1 / 1;
  }

  .faq-list-panel {
      height: auto !important;
      min-height: 0;
  }

  .faq-list-panel > .flex-1,
  .faq-list-panel > .flex-1 > .flex-1 {
      flex: 0 0 auto;
      min-height: 0;
  }

  .faq-list-panel .justify-center {
      justify-content: flex-start;
  }

  .faq-list-items .py-5 {
      padding-top: 14px;
      padding-bottom: 14px;
  }

  .faq-list-items .gap-6 {
      gap: 10px;
  }

  .faq-list-items h3 {
      margin: 0;
      font-size: 14.75px;
      line-height: 1.42;
      text-wrap: balance;
  }

  .faq-section .responsive-desc {
      font-size: 15px;
      line-height: 1.75;
      text-wrap: balance;
  }

  .faq-section .responsive-desc br {
      display: none;
  }

  .faq-list-items .icon-chevron {
      width: 18px;
      height: 18px;
  }

  .faq-list-items .accordion-inner {
      padding-right: 0;
      font-size: 14px;
      line-height: 1.75;
  }

  .faq-list-items .accordion-content.open .accordion-inner {
      padding-bottom: 20px;
  }

  .pricing-title-line {
      display: block;
  }
}

.pricing-table-shell {
  position: relative;
  overflow: visible;
  background: var(--color-surface);
}

.pricing-section .pricing-table-scroll {
  border-radius: inherit;
  overscroll-behavior-x: contain;
  overflow-y: visible;
}

@media (min-width: 769px) {
  .pricing-section .pricing-table-scroll {
      overflow: visible;
  }
}

.pricing-table {
  position: relative;
}

.pricing-table-head th {
  position: sticky;
  top: var(--header-height);
  z-index: 60;
  height: 86px;
  padding-block: 1.55rem;
  background: var(--color-surface);
  box-shadow: 0 1px 0 var(--color-border), 0 12px 24px rgba(29, 29, 31, 0.04);
  vertical-align: middle;
}

.pricing-table-head th:first-child {
  left: 0;
  z-index: 70;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

.pricing-table-head th:not(:first-child) {
  font-size: clamp(1.05rem, 1.25vw, 1.18rem);
  line-height: 1.2;
}

.pricing-table-head th:nth-child(3)::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 0;
  height: 2px;
  background: var(--color-accent);
}

.pricing-table .feature-category-label,
.pricing-table .feature-category-fill {
  background: var(--color-surface-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.pricing-table .feature-category-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 0.75rem 1.5rem;
  position: sticky;
  left: 0;
  background: var(--color-surface-alt);
  z-index: 30;
}

.pricing-table .feature-category-fill {
  padding: 0;
  height: 42px;
}

.pricing-table .feature-row-label {
  min-width: 260px;
}

@media (max-width: 640px) {
  .pricing-table .feature-row-label,
  .pricing-table .feature-category-label {
      min-width: 180px;
      max-width: 180px;
      padding: 0.75rem 1rem;
      font-size: 12px;
      letter-spacing: 0.08em;
      white-space: normal;
  }

  .pricing-table .feature-row-label {
      padding-inline: 1rem;
  }
}

.pricing-section {
  font-weight: 700;
}

.pricing-section * {
  font-weight: inherit;
}

.pricing-price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.pricing-price--value {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.pricing-price--unit {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-muted);
}

.pricing-plan-button:hover {
  border-color: #2a9d8f;
  background-color: #2a9d8f;
  color: #ffffff;
}

@media (min-width: 1281px) {
  .pricing-inner .text-3xl,
  .pricing-price--value {
      font-size: 1.875rem;
  }
}

@media (max-width: 1280px) {
  .pricing-inner .text-3xl,
  .pricing-price--value {
      font-size: 24px;
  }

  .pricing-price {
      flex-wrap: nowrap;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: var(--color-surface);
  border-bottom: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  box-shadow: none;
}

.header-container {
  width: 100%;
  max-width: 1840px;
  margin: 0 auto;
  padding: 0 var(--gutter-desktop);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo-img {
  width: 120px;
  height: 24px;
}

.site-nav-list {
  display: flex;
  gap: 36px;
  list-style: none;
}

.site-nav-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  padding: 5px 0;
  transition: color 0.3s ease;
}

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

.header-buttons {
  display: flex;
  align-items: center;
  gap: 24px;
}

.login-button {
  font-size: 14px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 100px;
  color: var(--color-text);
  transition: background 0.3s ease, color 0.3s ease;
}

.login-button:hover {
  background: rgba(42,157,143,0.08);
  color: var(--color-accent);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  background: var(--color-accent);
  color: var(--color-surface);
  box-shadow: 0 8px 20px rgba(42,157,143,0.25);
  transition: background 0.3s ease, transform 0.3s ease;
}

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

.mobile-login-text {
  display: none;
}

.mobile-menu-toggle {
  display: none;
  border: none;
  background: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
  z-index: 1001;
}

.mobile-menu-toggle:hover {
  background: rgba(42,157,143,0.08);
}

.menu-icon {
  position: relative;
  width: 18px;
  height: 2px;
  background: var(--color-text);
  border-radius: 1px;
}

.menu-icon::before, .menu-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--color-text);
  border-radius: 1px;
  transition: all 0.3s ease;
}

.menu-icon::before {
  top: -5px;
}

.menu-icon::after {
  top: 5px;
}

.mobile-menu-toggle.active .menu-icon {
  background: transparent;
}

.mobile-menu-toggle.active .menu-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.mobile-menu-toggle.active .menu-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  border-left: 1px solid rgba(42,157,143,0.1);
  box-shadow: -5px 0 25px rgba(0,0,0,0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease, opacity 0.3s ease;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1000;
}

.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  display: flex;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 20px;
  height: var(--header-height);
  border-bottom: 1px solid rgba(42,157,143,0.1);
}

.mobile-menu-login-text {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-accent);
  font-weight: 700;
  font-size: 14px;
}

.mobile-menu-logo {
  display: inline-flex;
}

.mobile-menu-logo-img {
  width: 120px;
  height: 24px;
}

.mobile-menu-close {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(42,157,143,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.mobile-menu-close:hover {
  transform: translateY(-50%) rotate(90deg);
  background: rgba(42,157,143,0.2);
}

.mobile-menu-close-icon {
  position: relative;
  width: 20px;
  height: 20px;
}

.mobile-menu-close-icon::before, .mobile-menu-close-icon::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--color-accent);
  top: 50%;
  left: 0;
}

.mobile-menu-close-icon::before {
  transform: rotate(45deg);
}

.mobile-menu-close-icon::after {
  transform: rotate(-45deg);
}

.mobile-menu-list {
  list-style: none;
  padding: 40px;
}

.mobile-menu-list::after {
  content: '';
  display: block;
  height: 1px;
  background: #e0e0e0;
  margin-top: 10px;
}

.mobile-menu-item {
  margin-bottom: 20px;
}

.mobile-menu-link {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  transition: color 0.3s ease, transform 0.3s ease;
}

.mobile-menu-link:hover {
  color: var(--color-accent);
  transform: translateY(-2px);
}

.mobile-menu-buttons {
  padding: 30px 40px 40px;
}

.mobile-cta-button {
  display: block;
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
  padding: 12px 24px;
  border-radius: 999px;
  text-align: center;
  font-weight: 600;
  background: var(--color-accent);
  color: var(--color-surface);
  transition: opacity 0.3s ease;
}

.mobile-cta-button:hover {
  opacity: 0.9;
}

@media (max-width: 1024px) {
  .header-container {
      padding: 0 32px;
      justify-content: center;
  }

  .site-nav {
      display: none;
  }

  .header-buttons .login-button, .header-buttons .cta-button {
      display: none;
  }

  .mobile-login-text {
      display: inline-block;
      position: absolute;
      left: 24px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--color-accent);
      font-weight: 700;
      font-size: 14px;
  }

  .mobile-menu-toggle {
      display: flex;
      position: absolute;
      right: 24px;
      top: 50%;
      transform: translateY(-50%);
  }

  .mobile-menu, .mobile-menu-overlay {
      display: block;
  }
}

.hero {
  position: relative;
  width: 100%;
  min-height: 680px;
  height: 90vh;
  max-height: 1000px;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
  isolation: isolate;
}

.hero .container {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(40px, 5vw, 84px);
  align-items: center;
  width: 100%;
  max-width: 1440px;
  padding-inline: clamp(32px, 4vw, 56px);
  height: 100%;
  position: relative;
  z-index: 2;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  background-image:
    linear-gradient(90deg, rgba(6,20,18,0.54) 0%, rgba(6,20,18,0.08) 60%, rgba(6,20,18,0) 75%),
    radial-gradient(circle at 18% 32%, rgba(6,20,18,0.32) 0%, rgba(6,20,18,0) 60%),
    repeating-linear-gradient(30deg, rgba(255,255,255,0.035) 0 1px, rgba(255,255,255,0) 1px 36px),
    repeating-linear-gradient(150deg, rgba(255,255,255,0.03) 0 1px, rgba(255,255,255,0) 1px 36px);
  opacity: 1;
}

.hero::after {
  background-image:
    radial-gradient(circle at 76% 20%, rgba(72,220,170,0.38) 0%, rgba(72,220,170,0) 44%),
    radial-gradient(circle at 88% 54%, rgba(46,200,160,0.28) 0%, rgba(46,200,160,0) 46%),
    radial-gradient(circle at 68% 80%, rgba(32,170,140,0.24) 0%, rgba(32,170,140,0) 52%),
    radial-gradient(circle at 35% 75%, rgba(28,140,120,0.18) 0%, rgba(28,140,120,0) 60%);
  filter: blur(10px);
  opacity: 0.9;
}

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

.glass-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .glass-card {
      background: rgba(255,255,255,0.2);
      border-color: rgba(255,255,255,0.3);
  }
}

.glass-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.glass-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.6);
}

.glass-line {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.45);
}

.glass-line.short {
  width: 60px;
}

.glass-line:not(.short) {
  width: 120px;
}

.glass-pill {
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.5);
  width: 90px;
}

.glass-pill.wide {
  width: 140px;
}

.glass-bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.35);
  width: 100%;
}

.card-a {
  right: 20%;
  top: 17%;
  width: 220px;
  height: 140px;
  transform: rotate(-4deg);
  opacity: 0.82;
}

.card-b {
  right: 8%;
  top: 48%;
  width: 250px;
  height: 160px;
  transform: rotate(2deg);
  opacity: 0.72;
}


.hero-text {
  color: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 28px;
  max-width: 560px;
  padding: clamp(72px, 9vh, 112px) 0 clamp(56px, 8vh, 84px);
}

.eyebrow-img {
  width: min(100%, 380px);
  height: auto;
  opacity: 0.95;
  display: block;
}

.headline-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  filter: drop-shadow(0 16px 34px rgba(0,0,0,0.18));
}

@media (min-width: 1025px) {
  .hero .container {
      position: relative;
      grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  }

  .hero-text {
      position: relative;
      z-index: 2;
  }

  .hero-visual {
      position: relative;
      width: 100%;
      height: auto;
      min-height: clamp(420px, 48vw, 720px);
      align-items: center;
      justify-content: flex-end;
      justify-self: end;
      overflow: visible;
      z-index: 1;
  }

  .hero .eyebrow-img {
      width: 76%;
      max-width: none;
  }

  .hero .headline-img {
      width: 100%;
      max-width: 590px;
  }

  .hero .model-img {
      position: absolute;
      right: 5%;
      top: clamp(16px, 4vh, 48px);
      bottom: auto;
      width: auto;
      height: 100%;
      max-width: none;
      max-height: none;
      object-fit: contain;
      transform: scale(1.15);
      transform-origin: right top;
  }

  .hero .model-img.hero-ui-mock {
      position: relative;
      right: auto;
      top: auto;
      bottom: auto;
      width: min(96%, 940px);
      max-width: 100%;
      height: auto;
      max-height: min(76vh, 680px);
      object-fit: contain;
      object-position: right center;
      border-radius: 28px;
      border: none;
      background: transparent;
      box-shadow: none;
      margin-left: auto;
      transform: none;
      transform-origin: center right;
  }

  .hero-ui-composite-desktop {
      margin-left: auto;
  }
}

@media (min-width: 1280px) {
  .hero .model-img {
      right: 6%;
      transform: scale(1.2);
  }

  .hero .model-img.hero-ui-mock {
      width: min(100%, 1080px);
      max-width: 100%;
      max-height: min(80vh, 760px);
      transform: none;
  }
}

.hero-buttons {
  display: flex;
  gap: 14px;
  margin-top: 6px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  padding: 0 30px;
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-pill);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  white-space: nowrap;
}

.hero-mobile-visual {
  display: none;
  width: 100%;
}

.model-img-mobile {
  width: min(100%, 240px);
  max-width: 240px;
}

.hero-ui-mock-mobile {
  width: min(100%, 520px);
  max-width: 520px;
  border-radius: 22px;
  border: none;
  box-shadow: none;
}

.hero-ui-composite {
  position: relative;
  display: inline-block;
  width: fit-content;
  max-width: 100%;
}

.hero-ui-composite::after {
  content: "";
  position: absolute;
  left: clamp(-12px, 4%, 28px);
  bottom: clamp(-8px, -1%, 6px);
  width: clamp(120px, 22%, 180px);
  height: clamp(20px, 4.4%, 34px);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(8, 24, 22, 0.18) 0%, rgba(8, 24, 22, 0.1) 45%, rgba(8, 24, 22, 0) 78%);
  filter: blur(8px);
  opacity: 0.72;
  pointer-events: none;
  z-index: 1;
}

.hero-ui-composite .hero-ui-mock,
.hero-ui-composite .hero-ui-mock-mobile {
  display: block;
}

.hero-character {
  position: absolute;
  height: auto;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 18px 32px rgba(6,20,18,0.22));
}

.hero-character-desktop {
  width: clamp(133px, 21.6%, 207px);
  left: clamp(-20px, -2%, 16px);
  bottom: clamp(-12px, -2.2%, 0px);
}

.hero-character-mobile {
  width: clamp(101px, 30.6%, 158px);
  left: clamp(4px, 1%, 18px);
  bottom: clamp(-12px, -2%, -2px);
}

.btn-primary {
  background: white;
  color: var(--color-accent-dark);
  box-shadow: 0 16px 36px rgba(4, 18, 18, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.btn-secondary {
  background: rgba(255,255,255,0.12);
  color: white;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.28);
  box-shadow: 0 10px 28px rgba(4, 18, 18, 0.12);
}

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

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: clamp(360px, 52vw, 620px);
  z-index: 0;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: clamp(420px, 44vw, 620px);
  height: clamp(420px, 44vw, 620px);
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(255,255,255,0.26) 0%, rgba(255,255,255,0.12) 30%, rgba(255,255,255,0) 72%);
  filter: blur(6px);
  pointer-events: none;
  z-index: 0;
}

.model-img {
  position: relative;
  width: clamp(260px, 32vw, 400px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(-20px 10px 40px rgba(0,0,0,0.15));
  z-index: 1;
  pointer-events: none;
  transform: translateY(clamp(15px, 6%, 40px));
}

.ui-showcase {
  background-color: var(--color-surface);
  padding: var(--space-section-current) 0;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.ui-showcase-header {
  max-width: 1000px;
  margin: 0 auto 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.section-eyebrow {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-accent);
  display: block;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ui-headline {
  font-size: var(--fs-headline-lg);
  line-height: 1.1;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.03em;
  margin: 0;
}

.ui-headline-sub {
  display: block;
  color: var(--color-text);
}

.ui-headline-line {
  display: block;
}

.ui-desc {
  font-size: var(--fs-body-lg);
  line-height: 1.6;
  color: var(--color-text-muted);
  font-weight: 600;
  max-width: 1000px;
  margin-top: 24px;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

.ui-showcase-container {
  display: flex;
  justify-content: center;
  perspective: 1000px;
  margin-top: 40px;
}

.ui-showcase-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.15), 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.5s ease;
}

.ui-showcase:hover .ui-showcase-img {
  transform: translateY(-10px);
}

.achievement-section {
  background: var(--color-page);
  padding: var(--space-section-current) 0;
}

.achievement-header {
  max-width: 960px;
  margin: 0 auto 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.achievement-header .ui-desc {
  width: min(100%, 760px);
  text-align: left;
}

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

.kpi-card {
  background: var(--color-surface);
  padding: 36px 28px 32px;
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.02);
  transition: transform 0.3s, box-shadow 0.3s;
}

.kpi-card:hover {
  transform: none;
}

.kpi-visual-area {
  height: 72px;
  width: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.kpi-icon {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kpi-icon.gray {
  stroke: #ccc;
}

.kpi-icon.fill-primary {
  fill: rgba(42, 157, 143, 0.1);
}

.kpi-label {
  font-size: var(--fs-body-md);
  font-weight: 700;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.kpi-number-wrap {
  margin-bottom: 8px;
}

.kpi-number {
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--color-text);
}

.kpi-unit {
  font-size: 24px;
  font-weight: 700;
  margin-left: 4px;
  color: var(--color-text);
}

.kpi-desc {
  max-width: 250px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin: 12px auto 0;
  letter-spacing: 0;
  text-wrap: pretty;
}

.kpi-note {
  max-width: 250px;
  margin: 16px auto 0;
  padding-top: 0;
  color: var(--color-text-light);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.72;
  letter-spacing: 0;
}

.bento-features {
  background-color: var(--color-surface-alt);
  padding: var(--space-section-current) 0;
}

.section-header {
  margin-bottom: 80px;
  max-width: 900px;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.section-headline {
  font-size: var(--fs-headline-lg);
  line-height: 1.1;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.04em;
}

.section-headline-sub {
  color: var(--color-text-light);
  display: block;
  margin-bottom: 10px;
  font-size: inherit;
}

.responsive-headline {
  font-size: var(--fs-headline-lg);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.responsive-desc {
  font-size: var(--fs-body-lg);
  line-height: 1.7;
  font-weight: 600;
}

@media (min-width: 601px) {
  .section-intro .responsive-desc,
  .section-intro .responsive-desc.leading-relaxed {
    line-height: 1.6;
  }
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(460px, auto);
  gap: var(--card-gap-desktop);
  align-items: stretch;
}

.bento-card {
  padding: var(--card-padding-block) var(--card-padding-inline);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transition: transform var(--transition-soft);
}

.bento-card:hover {
  transform: none;
}

.bento-card.large {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--bento-large-gap);
  align-items: center;
}

.bento-title {
  font-size: var(--fs-headline-md);
  font-weight: 700;
  margin: 0 0 clamp(16px, 2vw, 24px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--color-text);
}

.bento-desc {
  font-size: var(--fs-body-lg);
  font-weight: 700;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
}

.bento-visual {
  background: var(--color-surface-soft);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: clamp(280px, 32vw, 360px);
  padding: clamp(20px, 3vw, 32px);
}

.bento-card:not(.large) .bento-visual {
  margin-block-start: clamp(24px, 4vw, 48px);
  min-height: clamp(240px, 45vw, 320px);
  height: auto;
}

.bento-card:not(.large) .bento-title {
  font-size: clamp(22px, 3vw, calc(var(--fs-headline-md) * 0.85));
}

.visual-delivery {
  width: 85%;
  background: white;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.progress-bar {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 10px 0 20px;
}

.progress-line {
  position: absolute;
  top: 12px;
  left: 0;
  width: 100%;
  height: 4px;
  background: #eee;
  z-index: 0;
}

.progress-line-fill {
  position: absolute;
  top: 12px;
  left: 0;
  width: 50%;
  height: 4px;
  background: var(--color-accent);
  z-index: 0;
}

.p-step {
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.p-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: white;
  border: 4px solid #eee;
  transition: all 0.3s;
}

.p-step.active .p-circle {
  border-color: var(--color-accent);
  background: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(42,157,143,0.2);
}

.p-label {
  font-size: 12px;
  font-weight: 700;
  color: #999;
}

.p-step.active .p-label {
  color: var(--color-text);
}

.delivery-info {
  background: #f9f9f9;
  padding: 16px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.d-label {
  font-size: 12px;
  color: #888;
  font-weight: 600;
  display: block;
}

.d-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
}

.d-highlight {
  color: var(--color-accent);
}

.visual-steps {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 32px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 320px;
  background: white;
  padding: 16px 24px;
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.visual-steps .step-num {
  width: 32px;
  height: 32px;
  background: var(--color-accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.step-arrow {
  color: #ccc;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
}

@media (max-width: 480px) {
  .visual-steps {
      align-items: flex-start;
  }

  .step-item {
      justify-content: flex-start;
      position: relative;
      padding-left: 48px;
  }

  .visual-steps .step-num {
      position: absolute;
      left: 12px;
      top: 50%;
      transform: translateY(-50%);
  }

  .step-arrow {
      padding-left: 40px;
  }
}

.visual-ticket {
  width: 80%;
  background: white;
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  overflow: hidden;
  position: relative;
}

.ticket-header {
  background: var(--color-accent);
  padding: 20px;
  color: white;
  text-align: center;
}

.ticket-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.ticket-body {
  padding: 32px;
  text-align: center;
}

.ticket-date {
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  color: var(--color-text);
  margin-bottom: 8px;
}

.ticket-time {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 24px;
}

.ticket-detail {
  display: flex;
  justify-content: center;
  gap: 16px;
  border-top: 1px solid #eee;
  padding-top: 16px;
}

.td-item {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
}

.td-item-value {
  display: block;
  font-weight: 700;
  color: var(--color-text);
  font-size: 16px;
  margin-top: 4px;
}

.integration-section {
  padding: var(--space-section-current) 0;
  background: var(--color-surface-alt);
}

.integ-header {
  margin-bottom: 60px;
  max-width: 700px;
}

.integ-title {
  font-size: var(--fs-headline-lg);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-text);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.integ-desc {
  font-size: var(--fs-body-lg);
  font-weight: 700;
  color: var(--color-text-muted);
  line-height: 1.6;
}

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

.integ-card {
  background: white;
  border-radius: 32px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.03);
  position: relative;
  border: 1px solid rgba(0,0,0,0.03);
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.integ-card:hover {
  transform: none;
}

.integ-status {
  position: absolute;
  top: 24px;
  right: 24px;
  display: none;
  align-items: center;
  gap: 6px;
  background: rgba(42, 157, 143, 0.08);
  color: var(--color-accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

.status-dot {
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(42,157,143,0.2);
}

.integ-status.soon {
  background: var(--color-surface-alt);
  color: #999;
}

.integ-status.soon .status-dot {
  background: #ccc;
  box-shadow: none;
}

.integ-logo-box {
  width: 100%;
  max-width: 180px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

.integ-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
  transition: transform 0.4s ease;
}

.integ-card-desc {
  font-size: var(--fs-body-md);
  font-weight: 700;
  color: var(--color-text-muted);
  line-height: 1.7;
  text-align: left;
  width: 100%;
}

.integ-card:hover .integ-logo-img {
  transform: scale(1.03);
}

.integ-card:hover .integ-card-desc {
  color: var(--color-text);
}

.coming-soon-card {
  justify-content: center;
  background: #fafafa;
}

.coming-soon-text {
  font-size: 32px;
  font-weight: 800;
  color: #e0e0e0;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-family: "SF Pro Display", sans-serif;
  margin-bottom: 16px;
}

.features-detail-section {
  background: var(--color-surface);
  padding: var(--space-section-current) 0;
}

.features-detail-header {
  position: relative;
  text-align: left;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto 54px;
  padding-left: 0;
}

.features-detail-header::before {
  display: none;
}

.features-detail-header .lp-unified-heading {
  margin-bottom: 0;
  padding-left: 0;
}

.features-detail-eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  display: block;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.features-detail-kicker {
  display: block;
  box-sizing: border-box;
  max-width: 1040px;
  padding-left: 0;
  margin-bottom: 13px;
  color: #222;
  font-size: 54px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1rem;
  white-space: nowrap;
}

.features-detail-title {
  box-sizing: border-box;
  max-width: 1040px;
  padding-left: 0;
  margin: 0;
  color: #222;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
}

.features-detail-lead {
  max-width: 760px;
  margin: 0;
  color: #222;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.8;
  text-align: left;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  max-width: 1080px;
  margin: 0 auto;
}

.feature-card {
  min-width: 0;
  min-height: 520px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(16, 24, 20, 0.08);
  border-radius: 28px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  position: relative;
  height: auto;
  box-shadow: 0 18px 50px rgba(19, 31, 26, 0.05);
  transition: border-color 0.25s ease, background-color 0.25s ease;
  cursor: default;
}

.feature-card:hover {
  transform: none;
  border-color: rgba(42, 157, 143, 0.24);
  background: rgba(255, 255, 255, 0.9);
}

.feature-card-content {
  z-index: 2;
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 18px;
  row-gap: 0;
  align-items: center;
}

.feature-card-kicker {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 58px;
  margin-bottom: 0;
  color: #2a9d8f;
  background: #ffffff;
  border: 1px solid rgba(42, 157, 143, 0.28);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(17, 43, 69, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  font-family: Inter, "Noto Sans JP", sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.feature-card-kicker::before {
  display: none;
}

.feature-card-kicker::after {
  display: none;
}

.feature-card-icon {
  width: 48px;
  height: 48px;
  color: var(--color-accent);
  margin-bottom: 24px;
}

.feature-card-title {
  min-width: 0;
  margin: 0;
  color: var(--color-text);
  font-size: clamp(1.35rem, 1.85vw, 1.8rem);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.feature-card-desc {
  grid-column: 1 / -1;
  max-width: 430px;
  margin-top: 18px;
  color: var(--color-text-muted);
  font-weight: 700;
  font-size: clamp(0.95rem, 1.18vw, 1.06rem);
  line-height: 1.78;
}

.feedback-chip-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 8px;
  margin-bottom: 0;
}

.feedback-chip {
  background: white;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 6px 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #333;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.feature-card-visual {
  flex: 0 0 auto;
  width: 100%;
  height: 300px;
  min-height: 300px;
  margin-top: 28px;
  padding: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #f7f8f8;
  border: 1px solid rgba(16, 24, 20, 0.06);
  border-radius: 16px;
}

.feature-card-img {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 252px;
  object-fit: contain;
  object-position: center;
  border-radius: 14px;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
  transition: transform 0.5s ease;
}

.feature-card:hover .feature-card-img {
  transform: none;
}

@media (min-width: 1025px) {
  .features-grid .feature-card-content {
      min-height: 184px;
  }

  .features-grid .feature-card-visual {
      margin-top: 32px;
  }
}

.feature-permission-ui,
.feature-prompt-ui {
  position: relative;
  z-index: 1;
  width: min(100%, 238px);
  padding: 14px;
  background: #ffffff;
  border: 1px solid rgba(16, 24, 20, 0.08);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(19, 31, 26, 0.08);
}

.permission-label {
  display: block;
  margin: 0 0 7px;
  color: var(--color-text);
  font-size: 11.5px;
  font-weight: 900;
  line-height: 1.2;
}

.permission-input,
.permission-select {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 38px;
  padding: 0 11px;
  background: #ffffff;
  border: 1px solid rgba(71, 85, 105, 0.24);
  border-radius: 10px;
  color: var(--color-text);
  font-size: 12px;
  font-weight: 800;
}

.permission-input {
  margin-bottom: 8px;
  color: #9aa3af;
}

.permission-select {
  justify-content: space-between;
}

.permission-select b {
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  transform: rotate(45deg) translateY(-2px);
}

.permission-note {
  margin: 7px 0 10px;
  color: var(--color-text-muted);
  font-size: 10.5px;
  font-weight: 800;
  line-height: 1.45;
}

.permission-footer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.permission-submit {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 13px;
  background: var(--color-accent);
  border-radius: 10px;
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 900;
}

.permission-footer small {
  color: var(--color-text-muted);
  font-size: 10.5px;
  font-weight: 800;
  line-height: 1.35;
}

.feature-prompt-ui {
  width: min(100%, 246px);
  padding: 0;
  overflow: hidden;
}

.prompt-toolbar {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 8px;
  padding: 12px 13px;
  border-bottom: 1px solid rgba(16, 24, 20, 0.08);
}

.prompt-toolbar strong {
  color: var(--color-text);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

.prompt-pencil {
  position: relative;
  display: block;
  width: 15px;
  height: 15px;
  transform: rotate(-45deg);
}

.prompt-pencil::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 1px;
  width: 5px;
  height: 14px;
  background: var(--color-text);
  border-radius: 2px;
}

.prompt-pencil::after {
  content: "";
  position: absolute;
  left: 6px;
  top: -2px;
  width: 5px;
  height: 4px;
  background: var(--color-text);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.prompt-toggle {
  position: relative;
  display: block;
  width: 34px;
  height: 20px;
  background: var(--color-accent);
  border-radius: 999px;
}

.prompt-toggle::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  width: 14px;
  height: 14px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(19, 31, 26, 0.14);
}

.prompt-body {
  padding: 14px 13px 12px;
}

.prompt-label {
  display: block;
  margin-bottom: 14px;
  color: var(--color-text);
  font-size: 11.5px;
  font-weight: 900;
  line-height: 1.25;
}

.prompt-textarea {
  min-height: 72px;
  padding: 10px;
  background: #ffffff;
  border: 1px solid rgba(71, 85, 105, 0.24);
  border-radius: 10px;
  color: var(--color-text);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
}

.prompt-count {
  display: block;
  margin-top: 5px;
  color: var(--color-text-muted);
  font-size: 10.5px;
  font-weight: 800;
  line-height: 1;
  text-align: right;
}

.prompt-body p {
  margin: 9px 0 0;
  color: var(--color-text-muted);
  font-size: 10.5px;
  font-weight: 800;
  line-height: 1.45;
}

.mockup-chat-ui {
  background: white;
  border-radius: 20px 20px 0 0;
  padding: 24px;
  width: 80%;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.03);
}

.mockup-bubble {
  background: var(--color-accent);
  color: white;
  padding: 12px 16px;
  border-radius: 16px 16px 0 16px;
  font-size: 14px;
  font-weight: 600;
  margin-left: auto;
  width: fit-content;
  margin-bottom: 12px;
}

.mockup-bubble.bot {
  background: #eee;
  color: #333;
  border-radius: 16px 16px 16px 0;
  margin-left: 0;
  margin-right: auto;
}

.mockup-list-ui {
  background: white;
  border-radius: 20px;
  padding: 20px;
  width: 85%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mockup-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  background: #fafafa;
}

.mockup-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #eee;
}

.mockup-line {
  height: 8px;
  border-radius: 4px;
  background: #eee;
  width: 60%;
}

.mockup-invite-ui {
  background: white;
  border-radius: 20px;
  padding: 30px;
  width: 80%;
  text-align: center;
}

.invite-avatars {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.invite-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid white;
  background: #ddd;
  margin-left: -12px;
}

.invite-avatar:first-child {
  margin-left: 0;
}

.invite-avatar.add {
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.feature-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding: 12px 24px;
  background-color: var(--color-accent);
  color: white;
  font-weight: 700;
  font-size: 15px;
  border-radius: 100px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(42, 157, 143, 0.3);
  position: relative;
  z-index: 5;
}

.feature-cta-button:hover {
  background-color: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(42, 157, 143, 0.4);
}

.mockup-form {
  width: 85%;
  background: white;
  padding: 24px;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.05);
  border-radius: 24px 24px 0 0;
  border: 1px solid rgba(0,0,0,0.03);
}

.form-row {
  margin-bottom: 16px;
}

.form-label {
  font-size: 11px;
  color: var(--color-text-light);
  margin-bottom: 6px;
  font-weight: 600;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input-box {
  height: 40px;
  background: #f2f2f7;
  border: none;
  border-radius: 10px;
  width: 100%;
}

.form-area-box {
  height: 72px;
  background: #f2f2f7;
  border: none;
  border-radius: 10px;
  width: 100%;
}

.scenario-btn {
  display: block;
  width: 100%;
  padding: 12px 16px;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 14px;
  text-align: left;
  position: relative;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.steps-section {
  background: var(--color-page);
  padding: var(--space-section-current) 0;
}

.steps-header {
  margin: 0 0 100px;
  max-width: 800px;
  text-align: left;
}

.steps-eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  display: block;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.steps-headline {
  font-size: var(--fs-headline-lg);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 40px;
  color: var(--color-text);
  line-height: 1.1;
}

.steps-desc {
  font-size: var(--fs-body-lg);
  line-height: 1.6;
  color: var(--color-text-muted);
  font-weight: 700;
  margin-top: 24px;
}

.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 120px;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.steps-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(42, 157, 143, 0.3) 20%, rgba(42, 157, 143, 0.3) 80%, transparent);
  transform: translateX(-50%);
  z-index: 0;
}

.step-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.step-block.reverse {
  flex-direction: row-reverse;
}

.step-info {
  width: 45%;
}

.step-image {
  width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.step-code-frame {
  position: relative;
  width: 100%;
  max-width: 360px;
}

.steps-timeline .step-num {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: white;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  background: var(--color-accent);
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(42, 157, 143, 0.4);
}

.step-block .step-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.step-block .step-desc {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.file-icons-cluster {
  position: relative;
  width: 320px;
  height: auto;
  padding: 24px;
  background: var(--color-page);
  border-radius: 32px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.file-icon-item {
  width: 100%;
  aspect-ratio: 1;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: static;
}

.file-icon-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--color-text-muted);
}

.code-window {
  width: 100%;
  max-width: 360px;
  background: #2d2d2d;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  font-family: monospace;
  font-size: 12px;
  color: #e0e0e0;
  line-height: 1.5;
  position: relative;
}

.code-window::before {
  display: block;
  width: 34px;
  height: 8px;
  margin-bottom: 16px;
  background:
    radial-gradient(circle at 4px 4px, #555 0 3px, transparent 3.5px),
    radial-gradient(circle at 17px 4px, #555 0 3px, transparent 3.5px),
    radial-gradient(circle at 30px 4px, #555 0 3px, transparent 3.5px);
  content: '';
}

.line-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: white;
  padding: 12px 20px;
  border-radius: 100px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 13px;
  color: var(--color-text);
}

.launch-visual {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.active-badge-fixed {
  position: absolute;
  top: 24px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.95);
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(42,157,143,0.15);
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  z-index: 2;
}

.ping-dot {
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  margin-right: 6px;
  box-shadow: 0 0 0 2px rgba(42,157,143,0.2);
}

.active-text {
  font-size: 11px;
  font-weight: 800;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.time-display-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
}

.time-ring-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 8px solid rgba(42,157,143,0.1);
  border-top-color: var(--color-accent);
  transform: rotate(-45deg);
  background: radial-gradient(circle, rgba(42,157,143,0.05) 0%, transparent 70%);
}

.time-text {
  font-size: 88px;
  font-weight: 800;
  line-height: 1;
  color: var(--color-text);
  letter-spacing: -0.04em;
  z-index: 1;
  margin-bottom: -8px;
}

.time-unit {
  font-size: 28px;
  color: var(--color-accent);
  margin-left: 4px;
}

.full-coverage {
  font-size: 12px;
  font-weight: 800;
  color: #999;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 1;
}

.hybrid-tag-box {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent);
  background: white;
  padding: 8px 20px;
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border: 1px solid rgba(42,157,143,0.1);
}

.pdca-visual {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--color-page);
  border-radius: 32px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
}

.pdca-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px dashed rgba(42,157,143,0.2);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quality-center {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  z-index: 2;
}

.pdca-arrow {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: spin-slow 20s linear infinite;
}

.pdca-arrow::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  transform: translateX(-50%);
}

@keyframes spin-slow {
  from {
      transform: rotate(0deg);
  }

  to {
      transform: rotate(360deg);
  }
}

.trend-line-box {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: white;
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 8px;
}

.trend-icon {
  color: var(--color-accent);
}

.trend-text {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text);
}

.support-badge {
  position: absolute;
  top: 40px;
  left: 40px;
  background: var(--color-text);
  color: white;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}


.glass-icon {
  background: rgba(42, 157, 143, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(42, 157, 143, 0.1);
}

.group:hover .graphic-element {
  transform: scale(1.05) translateY(-2px);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.feature-row:hover {
  background-color: var(--color-page);
}

.accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-content.open {
  grid-template-rows: 1fr;
}

.accordion-inner {
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0s;
  font-weight: 600;
}

.accordion-content.open .accordion-inner {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
  padding-bottom: 28px;
  font-weight: 700;
}

.faq-accordion-item:focus-visible {
  outline: 2px solid rgba(42,157,143,0.4);
  outline-offset: 4px;
}

.icon-chevron {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

.group[aria-expanded="true"] .icon-chevron {
  transform: rotate(180deg);
}

.group:hover .icon-chevron {
  transform: translateY(2px);
}

.group[aria-expanded="true"]:hover .icon-chevron {
  transform: rotate(180deg) translateY(-2px);
}

.footer-link {
  position: relative;
  transition: color 0.3s ease;
}

.footer-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: #2a9d8f;
  transition: width 0.3s ease;
}

.footer-link:hover::after {
  width: 100%;
}

.footer-brand {
  gap: 20px;
}

.footer-logo-img {
  height: 38px;
}

.footer-brand-copy {
  margin: 0;
}

.site-footer .footer-brand-copy,
.site-footer .footer-link,
.site-footer .footer-contact-text,
.site-footer .footer-copyright {
  color: #5f6368;
}

@media (max-width: 640px) {
  footer.site-footer {
      padding-top: 48px;
      padding-bottom: 28px;
  }

  .site-footer .container {
      padding-inline: 24px;
  }

  .site-footer .footer-grid {
      gap: 34px;
      margin-bottom: 40px;
  }

  .site-footer .footer-brand {
      gap: 14px;
  }

  .site-footer .footer-logo-img {
      width: min(100%, 208px);
      height: auto;
  }

  .site-footer .footer-brand-copy {
      max-width: 18rem;
      font-size: 15px;
      line-height: 1.85;
      color: #5f6368;
  }

  .site-footer .footer-section {
      width: 100%;
  }

  .site-footer .footer-heading {
      margin-bottom: 10px;
      font-size: 12px;
      line-height: 1.4;
      letter-spacing: 0.08em;
      color: var(--color-text);
  }

  .site-footer .footer-link-list {
      display: grid;
      gap: 2px;
  }

  .site-footer .footer-link-list > li {
      margin: 0 !important;
  }

  .site-footer .footer-link {
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      font-size: 15px;
      line-height: 1.45;
      color: #5f6368;
  }

  .site-footer .footer-link::after {
      display: none;
  }

  .site-footer .footer-contact-list {
      display: grid;
      gap: 16px;
  }

  .site-footer .footer-contact-list > * {
      margin: 0 !important;
  }

  .site-footer .footer-contact-item {
      gap: 14px;
  }

  .site-footer .footer-contact-icon {
      width: 24px;
      min-width: 24px;
      display: flex;
      justify-content: center;
      padding-top: 1px;
  }

  .site-footer .footer-contact-icon svg {
      width: 20px;
      height: 20px;
  }

  .site-footer .footer-contact-text,
  .site-footer .footer-contact-item .footer-link {
      font-size: 15px;
      line-height: 1.75;
  }

  .site-footer .footer-bottom {
      padding-top: 22px;
  }

  .site-footer .footer-copyright {
      max-width: 18rem;
      margin: 0 auto;
      font-size: 12px;
      line-height: 1.6;
      color: #5f6368;
  }
}

@media (max-width: 1120px) and (min-width: 1025px) {
  .hero {
      min-height: 600px;
      height: auto;
      align-items: flex-start;
      padding-top: calc(var(--header-height) + 12px);
  }

  .hero .container {
      grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
      gap: 28px;
      align-items: center;
  }

  .hero-text {
      padding-top: 12px;
      padding-bottom: 20px;
      max-width: 100%;
  }

  .hero-visual {
      min-height: 460px;
      width: 100%;
  }

  .hero .model-img.hero-ui-mock {
      width: min(100%, 820px);
      max-width: 100%;
      max-height: 560px;
      transform: none;
  }

  .hero-character-desktop {
      width: clamp(108px, 18%, 158px);
      left: clamp(12px, 3%, 28px);
      bottom: -4px;
  }

  .hero-ui-composite::after {
      left: clamp(10px, 6%, 34px);
      width: clamp(104px, 19%, 150px);
      height: 24px;
      opacity: 0.62;
  }
}

@media (max-width: 1024px) {
  .container {
      padding: 0 32px;
  }

  .hero {
      min-height: 600px;
      height: auto;
      padding-top: calc(var(--header-height) + var(--hero-break-spacing));
      padding-bottom: var(--hero-break-spacing);
      align-items: center;
  }

  .hero .container {
      grid-template-columns: 1fr;
      gap: 28px;
      text-align: center;
      display: grid;
      justify-items: center;
  }

  .hero-text {
      max-width: min(100%, 640px);
      width: auto;
      height: auto;
      align-items: center;
      gap: 22px;
      padding: 0;
      margin: 0 auto;
      text-align: center;
      order: 1;
  }

  .hero-buttons {
      flex-direction: row;
      width: 100%;
      max-width: 420px;
      margin: 16px auto 0;
      gap: 12px;
      align-items: center;
      justify-content: center;
  }

  .hero-btn {
      flex: 1 1 auto;
      justify-content: center;
      padding: 14px 20px;
      font-size: 15px;
      height: auto;
  }

  .hero .container > .hero-visual {
      order: 2;
  }

  .hero-visual {
      position: relative;
      width: 100%;
      height: 400px;
      margin-top: 20px;
      order: 2;
      align-items: center;
      justify-content: center;
      z-index: 1;
  }

  .hero-visual.hero-visual-desktop {
      display: none;
  }

  .hero-mobile-visual {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      max-width: 100%;
      margin: 14px auto 0;
      order: 3;
  }

  .eyebrow {
      margin-bottom: 2px;
      margin-top: 20px;
  }

  .eyebrow-img {
      width: min(100%, 360px);
      margin-left: auto;
      margin-right: auto;
  }

  .headline {
      margin-top: 0;
      margin-bottom: 0;
      position: relative;
      z-index: 2;
  }

  .headline-img {
      max-width: min(100%, 470px);
      margin: 0 auto;
  }

  .hero-text > .headline {
      order: 2;
  }

  .hero-text > .hero-buttons {
      order: 5;
  }

  .model-img {
      position: relative;
      right: auto;
      bottom: 0;
      height: auto;
      width: min(80%, 360px);
      max-width: 360px;
      left: 50%;
      transform: translateX(-50%);
  }

  .model-img-mobile {
      width: min(100%, 240px);
      max-width: 240px;
      mask-image: linear-gradient(to bottom,
      rgba(0,0,0,1) 0%,
      rgba(0,0,0,1) 70%,
      rgba(0,0,0,0.85) 85%,
      rgba(0,0,0,0) 100%);
      -webkit-mask-image: linear-gradient(to bottom,
      rgba(0,0,0,1) 0%,
      rgba(0,0,0,1) 70%,
      rgba(0,0,0,0.85) 85%,
      rgba(0,0,0,0) 100%);
  }

  .hero-ui-mock-mobile {
      width: min(95%, 640px);
      max-width: 100%;
      border-radius: 20px;
      mask-image: none;
      -webkit-mask-image: none;
      margin: 0 auto;
  }

  .hero-ui-composite-mobile {
      width: min(100%, 680px);
  }

  .hero-ui-composite-mobile::after {
      left: clamp(6px, 5%, 20px);
      width: clamp(96px, 24%, 136px);
      height: 20px;
      bottom: -6px;
      opacity: 0.56;
  }

  .features-detail-header {
      margin-bottom: 34px;
  }

  .features-detail-header::before {
      display: none;
  }

  .features-detail-kicker {
      padding-left: 0;
      margin-bottom: 26px;
      font-size: 46px;
      line-height: 1.4;
  }

  .features-detail-title {
      padding-left: 0;
      font-size: 18px;
      line-height: 1.4;
  }

  .features-detail-lead {
      max-width: 100%;
      margin-top: 0;
      font-size: 17px;
      font-weight: 500;
      line-height: 1.8;
  }

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

  .feature-card {
      height: auto;
      min-height: 0;
      padding: 22px;
      border-radius: 18px;
  }

  .feature-card-content {
      column-gap: 14px;
  }

  .feature-card-kicker {
      width: 60px;
      height: 52px;
      border-radius: 16px;
      font-size: 1.2rem;
  }

  .feature-card-title {
      font-size: clamp(1.25rem, 6vw, 1.6rem);
  }

  .feature-card-visual {
      height: 220px;
      min-height: 220px;
      padding: 18px;
      border-radius: 12px;
  }

  .feature-card-img {
      max-height: 184px;
      border-radius: 10px;
  }

  .steps-timeline::before {
      left: 20px;
  }

  .step-block, .step-block.reverse {
      flex-direction: column;
      align-items: flex-start;
      padding-left: 48px;
      gap: 32px;
  }

  .step-info, .step-image {
      width: 100%;
  }

  .steps-timeline .step-num {
      position: absolute;
      left: 0;
      top: 0;
  }

  .header-container {
      padding: 0 24px;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      height: 100%;
  }

  .logo {
      grid-column: 2;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100%;
  }

  .logo-link {
      display: flex;
      align-items: center;
      height: 100%;
  }

  .logo-img {
      height: 22px;
      display: block;
  }

  .mobile-menu-toggle {
      grid-column: 3;
      display: flex;
      margin-left: auto;
  }

  .kpi-grid, .bento-grid, .integ-grid {
      grid-template-columns: 1fr;
  }

  .integ-card {
      min-height: 280px;
      padding: 40px 28px;
  }

  .coming-soon-text {
      margin-bottom: 0;
  }

  .kpi-card {
      min-height: 500px;
  }

  .bento-card.large {
      grid-template-columns: 1fr;
  }

  .bento-card.large .bento-visual {
      order: -1;
      margin-block-start: 0;
      height: auto;
      min-height: 300px;
  }

  .kpi-number {
      font-size: 56px;
  }
}

@media (max-width: 768px) {
  :root {
      --bento-large-gap: 24px;
  }

  .lp-web-body {
      font-size: 15px;
  }

  .container {
      padding: 0 20px;
  }

  .hero {
      padding-top: calc(var(--header-height) + 12px);
  }

  .hero .container {
      width: 100%;
      padding-inline: 24px;
      overflow: hidden;
  }

  .hero-text {
      width: 100%;
      max-width: 420px;
      text-align: center;
  }

  .hero-mobile-visual {
      margin: 10px auto 0;
      max-width: 100%;
  }

  .hero-ui-mock-mobile {
      width: min(100%, 720px);
  }

  .headline-img,
  .eyebrow-img {
      max-width: 100%;
  }

  .ui-headline {
      font-size: clamp(24px, 7vw, 32px);
  }

  .ui-headline-line {
      white-space: nowrap;
  }

  .hero-buttons {
      width: 100%;
      max-width: 100%;
      margin: 0 auto;
  }

  .model-img-mobile {
      width: min(100%, 210px);
      max-width: 210px;
  }

  .feedback-chip {
      font-size: 9px;
      padding: 4px 10px;
  }

  .section-eyebrow {
      font-size: 11px;
      letter-spacing: 0.28em;
  }

  .pricing-table {
      font-size: 13px;
  }

  .section-header {
      margin-bottom: 56px;
      text-align: center;
      margin-left: auto;
      margin-right: auto;
  }

  .bento-card.large .bento-visual,
  .bento-card:not(.large) .bento-visual {
      min-height: 240px;
      height: auto;
  }

  .visual-delivery, .visual-ticket, .visual-steps {
      width: 100%;
      padding: 20px;
  }

  .delivery-info {
      flex-direction: row;
      gap: 12px;
      padding: 12px;
  }

  .d-label {
      font-size: 10px;
  }

  .d-value {
      font-size: 13px;
  }

  .visual-steps {
      padding: 10px 0;
  }

  .step-item {
      width: 100%;
      max-width: 100%;
      padding: 12px 16px;
  }

  .step-text {
      font-size: 14px;
	  padding-left: 48px;
  }

  .visual-ticket {
      width: 100%;
  }

  .ticket-date {
      font-size: 32px;
  }

  .ticket-time {
      font-size: 18px;
  }

  .file-icons-cluster {
      width: 240px;
      height: 240px;
      margin: 0 auto;
  }

  .file-icon-item {
      width: 56px;
      height: 56px;
  }

  .file-icon-label {
      font-size: 9px;
  }
}

@media (max-width: 600px) {
  :root {
      --bento-large-gap: 16px;
  }

  .headline-img {
      max-width: 260px;
  }

  .hero-ui-mock-mobile {
      width: min(calc(100vw - 24px), 720px);
  }

  .hero-buttons {
      flex-direction: row;
      max-width: 320px;
      gap: 10px;
      justify-content: center;
  }

  .hero-btn {
      width: auto;
      flex: 0 0 auto;
      min-width: 0;
      padding: 12px 20px;
  }

  .section-header {
      margin-bottom: 40px;
  }

  .pricing-table {
      width: 434px;
      min-width: 434px !important;
      table-layout: fixed;
      font-size: 12px;
  }

  .pricing-section .pricing-table-head th {
      height: 68px;
      padding: 14px 10px;
  }

  .pricing-section .pricing-table-head th:first-child,
  .pricing-section .pricing-table .feature-row-label,
  .pricing-section .pricing-table .feature-category-label {
      width: 140px;
      min-width: 140px;
      max-width: 140px;
  }

  .pricing-section .pricing-table-head th:not(:first-child),
  .pricing-section .pricing-table tbody td:not(.feature-row-label),
  .pricing-section .pricing-table .feature-category-fill {
      width: 98px;
      min-width: 98px;
      max-width: 98px;
  }

  .pricing-section .pricing-table .feature-row-label,
  .pricing-section .pricing-table .feature-category-label {
      padding: 14px 12px;
      font-size: 12px;
      line-height: 1.45;
      letter-spacing: 0.02em;
      white-space: normal;
      word-break: keep-all;
      overflow-wrap: anywhere;
  }

  .pricing-section .pricing-table tbody td:not(.feature-row-label) {
      padding: 14px 10px;
      font-size: 12px;
      line-height: 1.45;
      white-space: normal;
      word-break: keep-all;
      overflow-wrap: anywhere;
  }

  .pricing-section .pricing-table .feature-category-fill {
      height: 40px;
      padding: 0;
  }

  .pricing-section .pricing-table svg {
      width: 18px;
      height: 18px;
  }
}

@media (max-width: 360px) {
  .faq-section .faq-support-title {
      font-size: 22px;
      line-height: 1.25;
  }

  .faq-section .faq-card-actions {
      flex-direction: row;
      align-items: center;
      gap: 8px;
  }

  .faq-section .faq-card-action {
      width: auto;
      height: 46px;
      flex: 1 1 0;
      padding-inline: 8px;
      font-size: 12px;
  }

  .faq-section .faq-card-visual {
      width: min(236px, 74%);
      right: -32px;
      bottom: -14px;
  }
}

@media (max-width: 480px) {
  .model-img-mobile {
      width: min(100%, 192px);
      max-width: 192px;
  }
}

.hybrid-section {
  background-color: var(--color-surface);
  overflow: hidden;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.hybrid-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: var(--gutter-desktop);
}

@media (max-width: 1024px) {
  .hybrid-container {
      padding-inline: var(--gutter-tablet);
  }
}

@media (max-width: 768px) {
  .hybrid-container {
      padding-inline: var(--gutter-mobile);
  }
}

.hybrid-header {
  margin-bottom: 80px;
  text-align: left;
}

.hybrid-eyebrow {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: inline-block;
}

.hybrid-headline {
  font-size: var(--fs-headline-lg);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--color-text);
}

.hybrid-headline .text-gradient {
  background: linear-gradient(135deg, #1d1d1f 30%, #555 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hybrid-lead {
  font-size: var(--fs-body-lg);
  line-height: 1.6;
  color: var(--color-text-secondary);
  font-weight: 600;
  max-width: 720px;
}

.hybrid-section .switcher-controls {
  display: flex;
  justify-content: center;
  background: #f5f5f7;
  padding: 5px;
  border-radius: 999px;
  width: fit-content;
  margin: 0 auto 64px;
  position: relative;
  box-shadow: inset 0 1px 4px rgba(0,0,0,0.04);
}

.hybrid-section .switcher-btn {
  position: relative;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-secondary);
  background: transparent;
  border-radius: 999px;
  box-shadow: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.hybrid-section .switcher-btn.active {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12), 0 0 1px rgba(0,0,0,0.04);
  color: var(--color-primary);
  font-weight: 700;
}

@media (max-width: 768px) {
  .hybrid-section .switcher-controls {
      display: grid;
      grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
      width: 100%;
      max-width: 420px;
      margin-bottom: 48px;
  }

  .hybrid-section .switcher-btn {
      min-width: 0;
      padding: 12px 14px;
      font-size: 14px;
      line-height: 1.2;
      text-align: center;
  }
}

.hybrid-section .switcher-container {
  position: relative;
  min-height: 480px;
}

.hybrid-section .switcher-panel {
  display: none;
  width: 100%;
}

.hybrid-section .switcher-panel.active {
  display: block;
  animation: panelFadeUp 0.35s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.hybrid-section .bento-grid {
  display: grid;
  gap: 24px;
  grid-auto-rows: auto;
  align-items: stretch;
}

.hybrid-section .grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

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

.hybrid-section .bento-card {
  background: #ffffff;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  transition: border-color 0.3s ease;
  height: auto;
}

.hybrid-section .bento-card:hover {
  border-color: rgba(42, 157, 143, 0.15);
  z-index: 2;
}

.hybrid-section .card-visual {
  height: 240px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  min-height: 240px;
}

.hybrid-section .grid-2 .card-visual {
  height: 320px;
  min-height: 320px;
}

.hybrid-section .hy-card .card-visual {
  margin: 0;
  border-bottom: 1px solid rgba(0,0,0,0.03);
}

.hybrid-section .card-visual.web-theme {
  background: #fbfbfd;
  background-image: radial-gradient(#e5e5e5 1.5px, transparent 1.5px);
  background-size: 20px 20px;
}

.hybrid-section .card-visual.line-theme {
  background: #f2f7f4;
  background-image: radial-gradient(rgba(6,199,85,0.1) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
}

.hybrid-section .card-content {
  padding: 30px 32px 34px;
  flex: 1;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
}

.hybrid-section .pattern-badge {
  display: flex;
  align-items: flex-start;
  margin-bottom: 14px;
  width: 100%;
}

.hybrid-section .p-num {
  position: relative;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  height: 58px;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: transparent;
  box-shadow: none;
  font-family: Inter, "Noto Sans JP", sans-serif;
}

.hybrid-section .p-num::after {
  display: none;
}

.hybrid-section .p-prefix {
  display: none;
}

.hybrid-section .p-digit {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.15px rgba(42, 157, 143, 0.42);
  font-size: 3.85rem;
  font-weight: 760;
  line-height: 0.88;
  letter-spacing: -0.06em;
  margin-left: 0;
}

.hybrid-section .p-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  background: rgba(42, 157, 143, 0.08);
  border: 1px solid rgba(42, 157, 143, 0.16);
  border-radius: 999px;
  color: var(--color-primary);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.hybrid-section .pattern-badge.line .p-label {
  background: rgba(6, 199, 85, 0.08);
  border-color: rgba(6, 199, 85, 0.18);
}

.hybrid-section .card-title {
  font-size: 21px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
  letter-spacing: 0;
  line-height: 1.34;
}

.hybrid-section .card-desc {
  font-size: 15px;
  line-height: 1.72;
  color: var(--color-text-secondary);
  font-weight: 500;
  letter-spacing: 0;
}

.hybrid-section .card-desc strong {
  font-weight: 600;
}

@media (max-width: 1024px) {
  .hybrid-section .grid-3,
  .hybrid-section .grid-2 {
      grid-template-columns: 1fr;
  }

  .hybrid-section .card-visual {
      height: 280px;
  }

  .hybrid-section .card-content {
      padding: 28px 26px 32px;
  }

  .hybrid-section .p-num {
      width: auto;
      height: 52px;
  }

  .hybrid-section .p-digit {
      font-size: 3.35rem;
      -webkit-text-stroke-width: 1px;
  }

  .hybrid-section .card-title {
      font-size: 20px;
      margin-bottom: 8px;
  }
}

.notification-section {
  background-color: #fbfbfd;
  padding-top: 100px;
  padding-bottom: 120px;
  overflow: hidden;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.notify-wrapper {
  text-align: left;
  width: 100%;
  margin: 0;
}

.notify-header {
  margin-bottom: 80px;
  max-width: 720px;
}

.notify-eyebrow {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 24px;
}

.notify-headline {
  font-size: var(--fs-headline-lg);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--color-primary);
  margin-bottom: 24px;
}

.notify-lead {
  font-size: var(--fs-body-lg);
  line-height: 1.6;
  color: var(--color-text-secondary);
  font-weight: 600;
  max-width: 720px;
  margin: 0;
}

.notify-visual-stage {
  position: relative;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin: 40px auto 0;
  width: 100%;
  max-width: 1000px;
}

.n-source {
  position: relative;
  z-index: 10;
  margin-bottom: 20px;
}

.n-logo-circle {
  width: 100px;
  height: 100px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  z-index: 2;
}

.n-logo-img {
  width: 60px;
  height: auto;
}

.n-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  opacity: 0;
  animation: pulseWave 2s infinite;
  z-index: 1;
}

.n-flow-lines {
  position: absolute;
  top: 50px;
  bottom: 50px;
  left: 0;
  right: 0;
  z-index: 5;
  pointer-events: none;
  max-width: 600px;
  margin: 0 auto;
  display: block;
}

.n-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.n-targets {
  display: flex;
  justify-content: center;
  gap: 60px;
  z-index: 10;
  width: 100%;
  max-width: 800px;
}

.n-target-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 20px;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.02);
  transition: transform 0.3s;
  width: 140px;
}

.n-target-item:hover {
  transform: translateY(-8px);
}

.n-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #f9f9fb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.n-icon-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.n-label {
  font-size: 14px;
  font-weight: 700;
  color: #333;
}

@media (max-width: 1024px) {
  .notification-section {
      padding: 60px 0;
  }

  .notify-visual-stage {
      height: 340px;
      gap: 20px;
  }

  .n-flow-lines {
      max-width: 100%;
      top: 40px;
      bottom: 40px;
  }

  .n-targets {
      gap: 12px;
      padding: 0 10px;
  }

  .n-target-item {
      width: auto;
      flex: 1;
      padding: 16px 8px;
      border-radius: 16px;
  }

  .n-icon-box {
      width: 44px;
      height: 44px;
      border-radius: 12px;
  }

  .n-icon-img {
      width: 24px;
      height: 24px;
  }

  .n-label {
      font-size: 11px;
  }

  .n-logo-circle {
      width: 80px;
      height: 80px;
  }

  .n-logo-img {
      width: 48px;
  }
}

.hybrid-section .ui-browser-mockup {
  width: 80%;
  background: white;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  padding: 20px;
  border: 1px solid rgba(0,0,0,0.04);
  max-width: 400px;
}

.hybrid-section .ui-chat-row {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.hybrid-section .ui-chat-row.right {
  justify-content: flex-end;
}

.hybrid-section .ui-chat-row.left {
  gap: 12px;
}

.hybrid-section .ui-bubble {
  padding: 12px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  max-width: 85%;
}

.hybrid-section .ui-bubble.user-green,
.hybrid-section .ui-bubble.user-green-large {
  background: var(--chat-green);
  color: white;
  border-bottom-right-radius: 4px;
}

.hybrid-section .ui-bubble.user-green-large {
  padding: 14px 24px;
  font-size: 15px;
}

.hybrid-section .ui-avatar {
  width: 32px;
  height: 32px;
  background: #eee;
  border-radius: 50%;
  flex-shrink: 0;
}

.hybrid-section .ui-avatar.human {
  background: #333;
  border: 2px solid white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.hybrid-section .ui-avatar.p-avatar {
  width: 40px;
  height: 40px;
  background-image: url('https://assets.pecochat.co.jp/static/img/line/pecochat_logo.webp?v=1752945740');
  background-size: cover;
  border: none;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hybrid-section .ui-browser-mockup.fallback-mode.compact {
  height: 200px;
  width: 85%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.hybrid-section .ui-chat-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  width: 100%;
}

.hybrid-section .ui-bubble.bot-white,
.hybrid-section .ui-bubble.bot-white-large {
  background: white;
  color: #333;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border-bottom-left-radius: 4px;
}

.hybrid-section .ui-bubble.bot-white-large {
  padding: 24px;
  border-radius: 24px;
  border-top-left-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 15px;
  line-height: 1.5;
  width: fit-content;
  max-width: 100%;
}

.hybrid-section #panel-web {
  --bubble-tail-width: 10px;
  --bubble-tail-height: 16px;
  --bubble-tail-offset: 5px;
  --bubble-tail-overlap: 1px;
  --bubble-tail-inner-scale: 0.9;
  --bubble-tail-cover: 2px;
  --bubble-tail-clip: polygon(
    5.6% 3.7%, 5.9% 3.9%, 6.6% 4.4%, 7.7% 5.1%, 9.0% 6.0%, 10.4% 6.9%,
    11.8% 7.9%, 13.2% 8.8%, 14.6% 9.7%, 16.0% 10.6%, 17.4% 11.5%, 18.8% 12.4%,
    20.2% 13.3%, 21.6% 14.2%, 22.9% 15.1%, 24.3% 16.0%, 25.7% 16.9%, 27.1% 17.7%,
    28.5% 18.2%, 29.9% 18.5%, 31.3% 18.5%, 32.7% 18.5%, 34.1% 18.7%, 35.5% 19.3%,
    36.9% 20.1%, 38.2% 21.0%, 39.6% 21.8%, 41.0% 22.2%, 42.4% 22.2%, 43.8% 22.2%,
    45.2% 22.6%, 46.6% 23.4%, 48.0% 24.3%, 49.4% 25.1%, 50.8% 25.7%, 52.1% 25.9%,
    53.5% 25.9%, 54.9% 25.9%, 56.3% 25.9%, 57.7% 25.9%, 59.1% 25.9%, 60.5% 25.9%,
    61.9% 25.9%, 63.3% 25.9%, 64.7% 26.0%, 66.1% 26.2%,
    67.4% 26.6%, 68.6% 27.1%, 69.8% 27.7%, 71.0% 28.4%,
    72.0% 28.9%, 73.0% 29.2%, 74.0% 29.4%, 75.0% 29.5%, 76.0% 29.6%,
    77.8% 29.6%, 83.3% 29.6%, 88.9% 29.6%, 94.4% 29.6%, 100.0% 29.6%, 100.0% 100.0%,
    99.9% 95.3%, 99.5% 90.9%, 98.9% 86.8%, 98.0% 83.0%, 96.9% 79.4%, 95.5% 76.1%,
    94.4% 74.1%, 94.1% 73.9%, 93.4% 73.4%, 92.3% 72.7%, 91.0% 71.8%, 89.6% 71.0%,
    88.9% 70.4%, 87.5% 70.3%, 86.1% 70.4%, 84.7% 70.4%, 83.3% 70.4%, 81.9% 70.4%,
    80.5% 70.4%, 79.1% 70.4%, 77.8% 70.4%,
    77.1% 70.3%, 76.4% 70.1%, 75.7% 69.9%, 75.0% 69.6%, 74.3% 69.3%, 73.6% 68.9%,
    72.2% 66.7%, 70.8% 65.8%, 69.4% 64.9%, 68.0% 64.0%, 66.7% 63.0%, 65.3% 63.0%,
    63.9% 63.0%, 62.5% 63.0%, 61.1% 63.0%, 59.7% 62.7%, 58.3% 62.0%, 56.9% 61.1%,
    55.6% 59.3%, 54.2% 58.4%, 52.8% 57.5%, 51.4% 56.6%, 50.0% 55.6%, 48.6% 54.7%,
    47.2% 53.8%, 45.8% 52.9%, 44.4% 51.9%, 43.0% 51.9%, 41.6% 51.9%, 40.2% 51.9%,
    38.9% 51.9%, 37.5% 50.0%, 36.1% 48.3%, 34.7% 46.4%, 33.3% 44.4%, 31.9% 43.3%,
    30.5% 42.4%, 29.1% 41.5%, 27.8% 40.7%, 26.4% 39.8%, 25.0% 38.9%, 23.6% 38.0%,
    22.2% 37.0%, 20.8% 35.6%, 19.4% 34.2%, 18.1% 32.8%, 16.7% 29.6%, 15.3% 27.8%,
    13.9% 26.0%, 12.5% 24.1%, 11.1% 22.2%, 9.7% 20.4%, 8.3% 18.5%, 7.0% 16.2%,
    5.9% 13.7%, 5.6% 11.1%, 5.6% 8.3%, 5.6% 6.5%, 5.6% 5.1%, 5.6% 4.2%
  );
}

.hybrid-section #panel-web .ui-bubble.user-green,
.hybrid-section #panel-web .ui-bubble.user-green-large,
.hybrid-section #panel-web .ui-bubble.bot-white,
.hybrid-section #panel-web .ui-bubble.bot-white-large {
  position: relative;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: none;
}

.hybrid-section #panel-web .ui-bubble.user-green,
.hybrid-section #panel-web .ui-bubble.user-green-large {
  --mode-bubble-bg: var(--chat-green);
  border-radius: 18px;
  margin-right: calc(var(--bubble-tail-width) - var(--bubble-tail-overlap));
}

.hybrid-section #panel-web .ui-bubble.bot-white,
.hybrid-section #panel-web .ui-bubble.bot-white-large {
  --mode-bubble-bg: #fff;
  border-radius: 18px;
  margin-left: calc(var(--bubble-tail-width) - var(--bubble-tail-overlap));
}

.hybrid-section #panel-web .ui-bubble.bot-white-large {
  border-radius: 22px;
}

.hybrid-section #panel-web .ui-bubble.user-green::before,
.hybrid-section #panel-web .ui-bubble.user-green::after,
.hybrid-section #panel-web .ui-bubble.user-green-large::before,
.hybrid-section #panel-web .ui-bubble.user-green-large::after,
.hybrid-section #panel-web .ui-bubble.bot-white::before,
.hybrid-section #panel-web .ui-bubble.bot-white::after,
.hybrid-section #panel-web .ui-bubble.bot-white-large::before,
.hybrid-section #panel-web .ui-bubble.bot-white-large::after {
  content: "";
  position: absolute;
  top: var(--bubble-tail-offset);
  width: var(--bubble-tail-width);
  height: var(--bubble-tail-height);
  pointer-events: none;
  -webkit-clip-path: var(--bubble-tail-clip);
  clip-path: var(--bubble-tail-clip);
}

.hybrid-section #panel-web .ui-bubble.user-green::before,
.hybrid-section #panel-web .ui-bubble.user-green-large::before,
.hybrid-section #panel-web .ui-bubble.bot-white::before,
.hybrid-section #panel-web .ui-bubble.bot-white-large::before {
  background: rgba(15, 23, 42, 0.08);
}

.hybrid-section #panel-web .ui-bubble.user-green::after,
.hybrid-section #panel-web .ui-bubble.user-green-large::after,
.hybrid-section #panel-web .ui-bubble.bot-white::after,
.hybrid-section #panel-web .ui-bubble.bot-white-large::after {
  background: var(--mode-bubble-bg);
}

.hybrid-section #panel-web .ui-bubble.user-green::before,
.hybrid-section #panel-web .ui-bubble.user-green-large::before {
  right: calc(-1 * (var(--bubble-tail-width) - var(--bubble-tail-overlap)));
  transform: scaleX(-1);
}

.hybrid-section #panel-web .ui-bubble.user-green::after,
.hybrid-section #panel-web .ui-bubble.user-green-large::after {
  right: calc(-1 * (var(--bubble-tail-width) - var(--bubble-tail-overlap)));
  transform: scaleX(-1) scale(var(--bubble-tail-inner-scale));
  box-shadow: calc(-1 * var(--bubble-tail-cover)) 0 0 0 var(--mode-bubble-bg);
}

.hybrid-section #panel-web .ui-bubble.bot-white::before,
.hybrid-section #panel-web .ui-bubble.bot-white-large::before {
  left: calc(-1 * (var(--bubble-tail-width) - var(--bubble-tail-overlap)));
}

.hybrid-section #panel-web .ui-bubble.bot-white::after,
.hybrid-section #panel-web .ui-bubble.bot-white-large::after {
  left: calc(-1 * (var(--bubble-tail-width) - var(--bubble-tail-overlap)));
  transform-origin: 100% 50%;
  transform: scale(var(--bubble-tail-inner-scale));
  box-shadow: var(--bubble-tail-cover) 0 0 0 var(--mode-bubble-bg);
}

.hybrid-section .bot-text-large {
  margin: 0;
  font-weight: 500;
}

.hybrid-section .bot-buttons-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.hybrid-section .bot-btn-green {
  background: var(--chat-green);
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  width: 100%;
  max-width: 300px;
  transition: background 0.2s;
}

.hybrid-section .bot-btn-green:hover {
  background: var(--chat-green-hover);
}

.hybrid-section .ui-fallback-btn-green:hover {
  background: #f7fbfa;
  border-color: rgba(42, 157, 143, 0.38);
  color: #0f766e;
}

.hybrid-section .ui-fallback-btn-green {
  background: #fff;
  color: #0f766e;
  padding: 10px 18px;
  border: 1.5px solid rgba(29, 31, 36, 0.18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: fit-content;
  max-width: 100%;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
  opacity: 0;
  animation: btnFadeUp 0.5s forwards 1s;
  cursor: pointer;
  white-space: nowrap;
}

.hybrid-section .hand-icon {
  font-size: 13px;
  line-height: 1;
}

.hybrid-section .delayed-response,
.hybrid-section .delayed-response-2 {
  opacity: 0;
  animation: msgSlideIn 0.5s forwards 0.5s;
}

.hybrid-section .delayed-response-2 {
  animation-delay: 0.8s;
}

.hybrid-section .ui-cursor-click-web {
  width: 24px;
  height: 24px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="black" viewBox="0 0 24 24"><path d="M7 2l12 11.2-5.8.5 3.3 7.3-2.2.9-3.2-7.4-4.4 4.3V2z" stroke="white" stroke-width="1"/></svg>') no-repeat center/contain;
  position: absolute;
  bottom: 20px;
  left: 60%;
  opacity: 0;
  animation: cursorClick 3s infinite;
  pointer-events: none;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.hybrid-section .ui-contact-selector-flat {
  width: 90%;
  max-width: 500px;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.04);
}

.hybrid-section .ui-phone-frame {
  width: 140px;
  height: 200px;
  background: #fff;
  border-radius: 20px;
  border: 4px solid #fff;
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hybrid-section .phone-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #eef6f4;
}

.hybrid-section .screen-chat-bg {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hybrid-section .chat-placeholder {
  width: 70%;
  height: 8px;
  background: rgba(42, 157, 143, 0.18);
  border-radius: 4px;
}

.hybrid-section .chat-placeholder.short {
  width: 40%;
}

.hybrid-section .screen-rich-menu {
  background: #f7f7f7;
  border-top: 1px solid #ddd;
  padding-bottom: 8px;
  position: relative;
  z-index: 2;
}

.hybrid-section .menu-tab-bar {
  background: rgba(255,255,255,0.8);
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: #666;
  font-weight: 700;
  border-bottom: 1px solid #eee;
}

.hybrid-section .rm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 4px;
  gap: 2px;
}

.hybrid-section .rm-btn {
  background: white;
  height: 44px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  position: relative;
  border: 1px solid #eee;
}

.hybrid-section .rm-btn.active-tap {
  border-color: #06C755;
  background: #eaffef;
  z-index: 10;
}

.hybrid-section .rm-icon {
  color: #333;
}

.hybrid-section .rm-label {
  font-size: 7px;
  font-weight: 700;
  color: #333;
}

.hybrid-section .rm-icon-placeholder,
.hybrid-section .rm-label-placeholder {
  background: #eee;
  border-radius: 2px;
}

.hybrid-section .rm-icon-placeholder {
  width: 12px;
  height: 12px;
}

.hybrid-section .rm-label-placeholder {
  width: 20px;
  height: 4px;
}

.hybrid-section .tap-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(6,199,85,0.2);
  animation: rippleTap 1.5s infinite;
  pointer-events: none;
}

.hybrid-section .tap-hand {
  position: absolute;
  bottom: -20px;
  right: -16px;
  width: 32px;
  animation: handTap 1.5s infinite;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.hybrid-section .ui-line-escalation {
  width: 80%;
  background: #eef6f4;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  position: relative;
  border: 4px solid #fff;
}

.hybrid-section .le-chat-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hybrid-section .le-row {
  display: flex;
  gap: 6px;
  align-items: flex-start;
  opacity: 0;
  animation: msgSlideIn 0.5s forwards;
}

.hybrid-section .le-row.right {
  justify-content: flex-end;
  animation-delay: 0s;
  opacity: 1;
}

.hybrid-section .le-row.delayed-1 {
  animation-delay: 0.5s;
}

.hybrid-section .le-row.delayed-3 {
  animation-delay: 2.5s;
}

.hybrid-section .le-bubble {
  background: #9de66a;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 10px;
  color: #000;
  max-width: 80%;
  line-height: 1.4;
}

.hybrid-section .le-bubble.bot,
.hybrid-section .le-bubble.operator {
  background: white;
  color: #333;
}

.hybrid-section .le-bubble.operator {
  border: 1px solid #06C755;
}

.hybrid-section .le-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hybrid-section .le-avatar.ai {
  background: #e5e5e5;
}

.hybrid-section .le-avatar.human {
  background: #333;
  border: 1px solid white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hybrid-section .le-notification {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #333;
  color: white;
  padding: 4px 8px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 8px;
  font-weight: 700;
  opacity: 0;
  animation: popToast 2s forwards 1.5s;
}

.hybrid-section .ui-peco-user-control {
  width: 85%;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.04);
  padding: 16px;
  position: relative;
}

.hybrid-section .admin-user-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
}

.hybrid-section .user-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hybrid-section .u-avatar {
  width: 32px;
  height: 32px;
  background: #e5e5e5;
  border-radius: 50%;
}

.hybrid-section .u-details {
  display: flex;
  flex-direction: column;
}

.hybrid-section .u-name {
  font-size: 11px;
  font-weight: 700;
  color: #333;
  display: flex;
  align-items: center;
  gap: 4px;
}

.hybrid-section .line-badge-icon {
  background: #06C755;
  color: white;
  font-size: 8px;
  padding: 1px 4px;
  border-radius: 4px;
}

.hybrid-section .u-status {
  font-size: 9px;
  color: #888;
  margin-top: 2px;
}

.hybrid-section .peco-mode-switch {
  width: 140px;
  height: 32px;
  background: #f5f5f5;
  border-radius: 32px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hybrid-section .pm-option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  z-index: 2;
  transition: all 0.3s;
}

.hybrid-section .pm-option.pm-ai {
  background: #8ab6a4;
  color: white;
}

.hybrid-section .pm-option.pm-human {
  background: transparent;
  color: #999;
}

.hybrid-section .pm-icon {
  width: 14px;
  height: 14px;
}

.hybrid-section .hy-card:hover .pm-option.pm-ai {
  background: transparent;
  color: #999;
}

.hybrid-section .hy-card:hover .pm-option.pm-human {
  background: #c56353;
  color: white;
}

.hybrid-section .ui-cursor-hand-line {
  width: 28px;
  position: absolute;
    bottom: 8px;
  right: 20px;
  transform: translate(10px, 10px);
  opacity: 0;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
  transition: 0.4s;
}

.hybrid-section .hy-card:hover .ui-cursor-hand-line {
  transform: translate(0, 0);
  opacity: 1;
  z-index: 2;
}

@keyframes panelFadeUp {
  from {
      opacity: 0;
      transform: translateY(8px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes pulseWave {
  0% {
      transform: scale(1);
      opacity: 0.6;
  }
  100% {
      transform: scale(1.8);
      opacity: 0;
  }
}

@keyframes btnFadeUp {
  from {
      opacity: 0;
      transform: translateY(5px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes cursorClick {
  0%, 30% {
      opacity: 0;
      transform: translate(20px, 20px);
  }
  40% {
      opacity: 1;
      transform: translate(0, 0);
  }
  50% {
      transform: scale(0.9);
  }
  60% {
      transform: scale(1);
  }
  80% {
      opacity: 1;
  }
  100% {
      opacity: 0;
  }
}

@keyframes msgSlideIn {
  from {
      opacity: 0;
      transform: translateY(10px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes rippleTap {
  0% {
      transform: translate(-50%, -50%) scale(0.5);
      opacity: 0;
  }
  50% {
      opacity: 1;
  }
  100% {
      transform: translate(-50%, -50%) scale(2);
      opacity: 0;
  }
}

@keyframes handTap {
  0%, 100% {
      transform: translate(0, 0);
  }
  50% {
      transform: translate(-4px, -4px) scale(0.9);
  }
}

@keyframes popToast {
  0% {
      opacity: 0;
      transform: translateY(4px);
  }
  40% {
      opacity: 1;
      transform: translateY(0);
  }
  100% {
      opacity: 0;
      transform: translateY(-4px);
  }
}

.hero-url-input {
  margin: 10px 0 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 540px;
  font-size: 16px;
}

.hero-url-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  margin-bottom: 0;
  letter-spacing: 0.01em;
}

.hero-url-field {
  display: flex;
  align-items: center;
  padding: 17px 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255,255,255,0.42);
  box-shadow: 0 20px 40px rgba(6, 20, 18, 0.12);
  backdrop-filter: blur(10px);
}

.hero-url-text {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 16px;
  color: var(--textMain, #1f2937);
}

.hero-url-text::placeholder {
  color: rgba(100, 116, 139, 0.7);
}

.hero-btn.btn-primary.hero-cta-highlight {
  position: relative;
  isolation: isolate;
  box-sizing: border-box;
  border: 3px solid transparent;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(120deg, #22d3ee, #a78bfa, #34d399, #facc15, #22d3ee) border-box;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  background-size: auto, 300% 300%;
  box-shadow: 0 14px 34px rgba(34, 211, 238, 0.35), 0 10px 24px rgba(0, 0, 0, 0.2);
  animation: hero-cta-breathe 1.7s ease-in-out infinite, hero-cta-shift 3.6s ease-in-out infinite;
}

.hero-btn.btn-primary.hero-cta-highlight::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.35), transparent 60%);
  filter: blur(6px);
  opacity: 0.7;
  pointer-events: none;
  z-index: -1;
  animation: hero-cta-pulse 1.8s ease-in-out infinite;
}

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

@keyframes hero-cta-pulse {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 0.85; }
}

@keyframes hero-cta-breathe {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-1px) scale(1.03); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-btn.btn-primary.hero-cta-highlight {
      animation: none;
  }
  .hero-btn.btn-primary.hero-cta-highlight::after {
      animation: none;
  }
}

@media (max-width: 1024px) {
  .hero-text > .hero-url-input {
      order: 4;
  }
  .hero-text > .hero-buttons {
      order: 5;
  }
}

@media (max-width: 768px) {
  .hero-url-input {
      width: 100%;
      max-width: 100%;
  }

  .hero-url-field {
      padding-inline: 18px;
  }

  .hero-url-text {
      min-width: 0;
      font-size: 15px;
      text-overflow: ellipsis;
  }
}

.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s var(--p-ease-apple), transform 1s var(--p-ease-apple);
}
.in-view .reveal-up {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }

.service-mode-section {
    --service-mode-primary: #2a9d8f;
    --service-mode-primary-hover: #238b7e;
    --service-mode-text-main: #1d1d1f;
    --service-mode-text-body: #6e6e73;
    --service-mode-text-sub: #86868b;
    --service-mode-bg-body: #e8e8ed;
    --service-mode-bg-card: #ffffff;
    --service-mode-ui-border: #e1e4e8;
    --service-mode-ui-bg-toolbar: #f4f6f8;
    background-color: var(--service-mode-bg-body);
    color: var(--service-mode-text-main);
    font-family: var(--font-family-base);
    line-height: 1.5;
}

@media (min-width: 1025px) {
    .service-mode-section.section-spacing {
        padding-block: 140px;
    }
}

.service-mode-container {
    max-width: 1120px;
    margin: 0 auto;
    padding-inline: var(--gutter-desktop);
    text-align: center;
}

@media (max-width: 1024px) {
    .service-mode-container {
        padding-inline: var(--gutter-tablet);
    }
}

@media (max-width: 768px) {
    .service-mode-container {
        padding-inline: var(--gutter-mobile);
    }
}

.service-mode-lead {
    margin-bottom: 80px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.service-mode-title {
    font-size: var(--fs-headline-lg);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 24px;
    margin-top: 0;
    background-image: linear-gradient(129deg, #63d2c1, #40bcae, #2a9d8f, #207e72, #18635a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.service-mode-subtitle {
    font-size: var(--fs-body-lg);
    color: var(--service-mode-text-body);
    font-weight: 500;
    margin: 0 auto;
    line-height: 1.6;
    max-width: 800px;
}

.service-mode-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: stretch;
}

.service-mode-card {
    background: var(--service-mode-bg-card);
    border-radius: 28px;
    padding: 40px;
    text-align: left;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-mode-card-header {
    margin-bottom: 32px;
}

.service-mode-card-badge {
    display: inline;
    font-size: inherit;
    font-weight: 700;
    color: inherit;
    letter-spacing: 0;
    background: none;
    padding: 0;
    border-radius: 0;
    margin: 0;
}

.service-mode-card-title {
    font-size: clamp(20px, 4.6vw, 24px);
    font-weight: 700;
    margin: 0 0 16px 0;
    color: var(--service-mode-text-main);
    line-height: 1.35;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.service-mode-card-description {
    font-size: 19px;
    line-height: 1.45;
    color: var(--service-mode-text-body);
    margin: 0;
    font-weight: 600;
    letter-spacing: -0.015em;
}

.service-mode-simulator {
    margin-top: auto;
    height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.service-mode-editor {
    border: 1px solid var(--service-mode-ui-border);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    position: relative;
}

.service-mode-editor-toolbar {
    background-color: var(--service-mode-ui-bg-toolbar);
    border-bottom: 1px solid var(--service-mode-ui-border);
    padding: 8px 12px;
    display: flex;
    gap: 8px;
}

.service-mode-tool-icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6e6e73;
    font-size: 12px;
    font-weight: bold;
    cursor: default;
}

.service-mode-tool-icon svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.service-mode-editor-textarea {
    flex-grow: 1;
    padding: 16px;
    font-size: 14px;
    color: #333;
    position: relative;
    overflow: hidden;
}

.service-mode-editor-placeholder {
    color: #a1a1a6;
    pointer-events: none;
    position: absolute;
    top: 16px;
    left: 16px;
    transition: opacity 0.2s;
}

.service-mode-editor-placeholder.is-hidden {
    opacity: 0;
}

.service-mode-editor-content {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    line-height: 1.6;
    white-space: pre-wrap;
}

.service-mode-cursor::after {
    content: "|";
    animation: service-mode-blink 1s step-end infinite;
    color: var(--service-mode-primary);
}

@keyframes service-mode-blink {
    50% { opacity: 0; }
}

.service-mode-editor-footer {
    padding: 12px 16px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}

.service-mode-char-count {
    font-size: 11px;
    color: #a1a1a6;
    margin-right: auto;
}

.service-mode-send-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #e5e5ea;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-mode-send-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    margin-left: 2px;
    margin-top: 1px;
}

.service-mode-send-btn:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.service-mode-send-btn.is-active {
    background-color: var(--service-mode-primary);
    box-shadow: 0 4px 10px rgba(42, 157, 143, 0.3);
}

.service-mode-send-btn.is-sending {
    transform: scale(0.9);
    background-color: var(--service-mode-primary-hover);
}

.service-mode-generate-btn {
    margin-top: 16px;
    width: 100%;
    padding: 12px;
    border: 1px solid var(--service-mode-ui-border);
    background-color: #fff;
    color: #1d1d1f;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-mode-generate-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

.service-mode-generate-btn.is-active {
    border-color: var(--service-mode-primary);
    background-color: rgba(42, 157, 143, 0.05);
    color: var(--service-mode-primary);
}

.service-mode-auto-visual {
    position: relative;
    height: 100%;
    background: #f5f5f7;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 20px;
}

.service-mode-chat-container {
    --bubble-tail-width: 10px;
    --bubble-tail-height: 16px;
    --bubble-tail-offset: 5px;
    --bubble-tail-overlap: 1px;
    --bubble-tail-inner-scale: 0.9;
    --bubble-tail-cover: 2px;
    --bubble-tail-clip: polygon(
        5.6% 3.7%, 5.9% 3.9%, 6.6% 4.4%, 7.7% 5.1%, 9.0% 6.0%, 10.4% 6.9%,
        11.8% 7.9%, 13.2% 8.8%, 14.6% 9.7%, 16.0% 10.6%, 17.4% 11.5%, 18.8% 12.4%,
        20.2% 13.3%, 21.6% 14.2%, 22.9% 15.1%, 24.3% 16.0%, 25.7% 16.9%, 27.1% 17.7%,
        28.5% 18.2%, 29.9% 18.5%, 31.3% 18.5%, 32.7% 18.5%, 34.1% 18.7%, 35.5% 19.3%,
        36.9% 20.1%, 38.2% 21.0%, 39.6% 21.8%, 41.0% 22.2%, 42.4% 22.2%, 43.8% 22.2%,
        45.2% 22.6%, 46.6% 23.4%, 48.0% 24.3%, 49.4% 25.1%, 50.8% 25.7%, 52.1% 25.9%,
        53.5% 25.9%, 54.9% 25.9%, 56.3% 25.9%, 57.7% 25.9%, 59.1% 25.9%, 60.5% 25.9%,
        61.9% 25.9%, 63.3% 25.9%, 64.7% 26.0%, 66.1% 26.2%,
        67.4% 26.6%, 68.6% 27.1%, 69.8% 27.7%, 71.0% 28.4%,
        72.0% 28.9%, 73.0% 29.2%, 74.0% 29.4%, 75.0% 29.5%, 76.0% 29.6%,
        77.8% 29.6%, 83.3% 29.6%, 88.9% 29.6%, 94.4% 29.6%, 100.0% 29.6%, 100.0% 100.0%,
        99.9% 95.3%, 99.5% 90.9%, 98.9% 86.8%, 98.0% 83.0%, 96.9% 79.4%, 95.5% 76.1%,
        94.4% 74.1%, 94.1% 73.9%, 93.4% 73.4%, 92.3% 72.7%, 91.0% 71.8%, 89.6% 71.0%,
        88.9% 70.4%, 87.5% 70.3%, 86.1% 70.4%, 84.7% 70.4%, 83.3% 70.4%, 81.9% 70.4%,
        80.5% 70.4%, 79.1% 70.4%, 77.8% 70.4%,
        77.1% 70.3%, 76.4% 70.1%, 75.7% 69.9%, 75.0% 69.6%, 74.3% 69.3%, 73.6% 68.9%,
        72.2% 66.7%, 70.8% 65.8%, 69.4% 64.9%, 68.0% 64.0%, 66.7% 63.0%, 65.3% 63.0%,
        63.9% 63.0%, 62.5% 63.0%, 61.1% 63.0%, 59.7% 62.7%, 58.3% 62.0%, 56.9% 61.1%,
        55.6% 59.3%, 54.2% 58.4%, 52.8% 57.5%, 51.4% 56.6%, 50.0% 55.6%, 48.6% 54.7%,
        47.2% 53.8%, 45.8% 52.9%, 44.4% 51.9%, 43.0% 51.9%, 41.6% 51.9%, 40.2% 51.9%,
        38.9% 51.9%, 37.5% 50.0%, 36.1% 48.3%, 34.7% 46.4%, 33.3% 44.4%, 31.9% 43.3%,
        30.5% 42.4%, 29.1% 41.5%, 27.8% 40.7%, 26.4% 39.8%, 25.0% 38.9%, 23.6% 38.0%,
        22.2% 37.0%, 20.8% 35.6%, 19.4% 34.2%, 18.1% 32.8%, 16.7% 29.6%, 15.3% 27.8%,
        13.9% 26.0%, 12.5% 24.1%, 11.1% 22.2%, 9.7% 20.4%, 8.3% 18.5%, 7.0% 16.2%,
        5.9% 13.7%, 5.6% 11.1%, 5.6% 8.3%, 5.6% 6.5%, 5.6% 5.1%, 5.6% 4.2%
    );
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.service-mode-chat-container.is-hidden {
    opacity: 0;
}

.service-mode-chat-bubble {
    padding: 12px 16px;
    border-radius: 18px;
    max-width: 76%;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: none;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: opacity 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    position: relative;
    width: fit-content;
    word-break: break-word;
    white-space: normal;
}

.service-mode-chat-bubble.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.service-mode-chat-bubble::before,
.service-mode-chat-bubble::after {
    content: "";
    position: absolute;
    top: var(--bubble-tail-offset);
    width: var(--bubble-tail-width);
    height: var(--bubble-tail-height);
    pointer-events: none;
    -webkit-clip-path: var(--bubble-tail-clip);
    clip-path: var(--bubble-tail-clip);
}

.service-mode-chat-bubble::before {
    background: rgba(15, 23, 42, 0.08);
}

.service-mode-chat-bubble::after {
    background: var(--mode-bubble-bg);
}

.service-mode-chat-bubble--user {
    --mode-bubble-bg: var(--service-mode-primary);
    background-color: var(--mode-bubble-bg);
    align-self: flex-end;
    color: #fff;
    margin-right: calc(var(--bubble-tail-width) - var(--bubble-tail-overlap));
}

.service-mode-chat-bubble--user::before {
    right: calc(-1 * (var(--bubble-tail-width) - var(--bubble-tail-overlap)));
    transform: scaleX(-1);
}

.service-mode-chat-bubble--user::after {
    right: calc(-1 * (var(--bubble-tail-width) - var(--bubble-tail-overlap)));
    transform: scaleX(-1) scale(var(--bubble-tail-inner-scale));
    box-shadow: calc(-1 * var(--bubble-tail-cover)) 0 0 0 var(--mode-bubble-bg);
}

.service-mode-chat-bubble--ai {
    --mode-bubble-bg: #fff;
    background-color: var(--mode-bubble-bg);
    align-self: flex-start;
    color: var(--service-mode-text-main);
    margin-left: calc(var(--bubble-tail-width) - var(--bubble-tail-overlap));
}

.service-mode-chat-bubble--ai::before {
    left: calc(-1 * (var(--bubble-tail-width) - var(--bubble-tail-overlap)));
}

.service-mode-chat-bubble--ai::after {
    left: calc(-1 * (var(--bubble-tail-width) - var(--bubble-tail-overlap)));
    transform-origin: 100% 50%;
    transform: scale(var(--bubble-tail-inner-scale));
    box-shadow: var(--bubble-tail-cover) 0 0 0 var(--mode-bubble-bg);
}

@media (max-width: 768px) {
    .service-mode-lead {
        margin-bottom: 40px;
    }
    .service-mode-title {
        text-align: left;
    }
    .service-mode-subtitle {
        font-size: 18px;
        text-align: left;
    }
    .service-mode-card {
        padding: 24px;
    }
    .service-mode-card-description {
        font-size: 16px;
    }
}

@media (min-width: 900px) {
    .service-mode-cards {
        grid-template-columns: 1fr 1fr;
    }
}

.accuracy-card {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-block: clamp(96px, 9vw, 144px);
    background: #f8fbfa;
    color: var(--color-text);
}

.accuracy-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding-inline: var(--gutter-tablet);
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
}

.text-content {
    display: flex;
    flex-direction: column;
}

.accuracy-copy {
    width: 100%;
    max-width: 1120px;
    margin-inline: auto;
    padding-left: 0;
    text-align: left;
}

.accuracy-heading {
    margin-bottom: 60px;
}

.accuracy-eyebrow {
    display: block;
    margin-bottom: clamp(18px, 2vw, 26px);
    white-space: normal;
}

.learning-loop-showcase-eyebrow.accuracy-eyebrow {
    display: block;
    white-space: normal;
    font-size: 54px;
    line-height: 1.4;
}

.accuracy-eyebrow-line {
    display: inline;
}

.accuracy-title {
    max-width: 1040px;
}

.accuracy-body {
    margin: 0;
    max-width: 920px;
}

.accuracy-metrics {
    display: grid;
    grid-template-columns: minmax(280px, 1.12fr) minmax(220px, 0.78fr) minmax(220px, 0.78fr);
    gap: 1px;
    max-width: 1040px;
    margin-top: clamp(42px, 5vw, 64px);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 24px;
    background: rgba(0,0,0,0.06);
    box-shadow: 0 22px 64px rgba(20, 38, 35, 0.05);
}

.accuracy-metric {
    min-width: 0;
    padding: clamp(24px, 3vw, 32px);
    background: rgba(255,255,255,0.86);
}

.accuracy-metric-primary {
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,251,250,0.92));
}

.accuracy-metric-label {
    display: block;
    margin-bottom: 16px;
    color: var(--color-accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.2;
}

.accuracy-metric-value {
    display: flex;
    align-items: baseline;
    margin-bottom: 16px;
    color: var(--color-accent);
    white-space: nowrap;
}

.accuracy-metric-value span {
    font-size: clamp(4.8rem, 10vw, 7.8rem);
    font-weight: 900;
    line-height: 0.84;
    letter-spacing: -0.055em;
}

.accuracy-metric-value small {
    margin-left: 8px;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    line-height: 1;
}

.accuracy-metric strong {
    display: block;
    margin-bottom: 12px;
    color: var(--color-text);
    font-size: clamp(1.05rem, 1.4vw, 1.22rem);
    font-weight: 800;
    line-height: 1.45;
    letter-spacing: 0;
}

.accuracy-metric p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.75;
}

.accuracy-metric .accuracy-metric-note {
    max-width: 280px;
    margin: -2px 0 14px;
    color: var(--color-text-light);
    font-size: 0.74rem;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0;
}

.accuracy-visual {
    display: block;
    width: min(420px, 100%);
    max-width: 420px;
    margin-top: clamp(42px, 5vw, 64px);
    margin-left: 0;
    margin-right: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.accuracy-visual-img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 1024px) {
	.accuracy-container {
		padding-inline: var(--gutter-tablet);
	}
    .accuracy-metrics {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }
    .accuracy-metric-primary {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .accuracy-metrics {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .accuracy-card {
        padding-block: 72px 80px;
    }
    .accuracy-container {
      padding-inline: var(--gutter-mobile);
    }
    .accuracy-heading {
        margin-bottom: 40px;
    }
    .learning-loop-showcase-eyebrow.accuracy-eyebrow {
        font-size: 46px;
        line-height: 1.4;
        overflow-wrap: normal;
        word-break: keep-all;
    }
    .accuracy-eyebrow-line {
        display: block;
    }
    .accuracy-metrics {
      margin-top: 30px;
      border-radius: 20px;
    }
    .accuracy-visual {
      overflow: visible;
      border-radius: 0;
      max-width: 100%;
      margin-left: 0;
      margin-right: 0;
    }
    .accuracy-visual-img {
      margin-left: 0;
      margin-right: 0;
      width: 100%;
      max-width: 100%;
    }
    .accuracy-metric {
      padding: 24px;
    }
    .accuracy-metric-value span {
        font-size: clamp(4.2rem, 22vw, 5.6rem);
    }
    .accuracy-metric-value small {
        font-size: clamp(1.7rem, 8vw, 2.3rem);
    }
}

.learning-loop-showcase {
    position: relative;
    overflow: hidden;
    padding-block: clamp(44px, 4.6vw, 68px) clamp(52px, 5.2vw, 78px);
    background: #f8fbfa;
    color: var(--color-text);
}

.hero-chatgpt-integration {
    position: relative;
    z-index: 2;
    padding: clamp(14px, 1.7vw, 22px) 20px;
    margin-top: 0;
    background: #ffffff;
    border: 0;
    box-shadow: none;
}

.hero-chatgpt-integration::before {
    content: "";
    position: absolute;
    inset: -2px 0 auto;
    height: 4px;
    background: #ffffff;
    pointer-events: none;
}

.hero-chatgpt-integration-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1120px;
}

.hero-chatgpt-integration-img {
    display: block;
    width: min(390px, 68vw);
    height: auto;
    opacity: 0.9;
    filter: none;
}

.learning-loop-showcase::before {
    display: none;
}

.learning-loop-showcase-container {
    display: flex;
    flex-direction: column;
    gap: clamp(62px, 6vw, 86px);
    align-items: stretch;
    max-width: 1200px;
}

.learning-loop-showcase-intro {
    display: block;
}

.learning-loop-showcase-copy,
.learning-loop-showcase-visual {
    position: relative;
    z-index: 1;
}

.learning-loop-showcase-copy {
    width: 100%;
    max-width: 1120px;
    margin-inline: auto;
    padding-left: 0;
    text-align: left;
}

.learning-loop-showcase-heading {
    position: relative;
    margin-bottom: 60px;
    padding-left: 37px;
    max-width: 1040px;
}

.learning-loop-showcase-heading::before {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    width: 4px;
    height: calc(100% - 16px);
    background: #222;
}

.learning-loop-showcase-eyebrow {
    display: flex;
    align-items: flex-end;
    gap: 0.055em;
    margin-bottom: 13px;
    color: #222;
    font-size: 54px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.1rem;
    white-space: nowrap;
}

.learning-loop-showcase-brand {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    line-height: 1;
}

.learning-loop-showcase-ruby {
    display: block;
    width: max-content;
    margin-bottom: 0.1em;
    font-size: 0.24em;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.04em;
}

.learning-loop-showcase-brand-text {
    display: block;
}

.learning-loop-showcase-suffix {
    display: inline-block;
    line-height: 1;
}

.learning-loop-showcase-title {
    margin: 0;
    color: #222;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0;
}

.learning-loop-showcase-title span {
    white-space: nowrap;
}

.learning-loop-showcase-lead {
    max-width: 940px;
    margin: 0 0 22px;
    color: var(--color-text);
    font-size: clamp(1.08rem, 1.52vw, 1.25rem);
    font-weight: 500;
    line-height: 1.9;
}

.learning-loop-showcase-body {
    margin: 0;
    max-width: 920px;
    color: #222;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.8;
}

.learning-loop-showcase-note {
    margin: 18px 0 0;
    max-width: 920px;
    color: #222;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
}

.learning-loop-showcase-visual {
    min-width: 0;
    width: 100%;
    max-width: 1120px;
    margin-inline: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: hidden;
    aspect-ratio: 7144 / 2686;
}

.learning-loop-showcase-img {
    width: 100%;
    height: auto;
    margin-inline: auto;
    filter: none;
}

@media (max-width: 1024px) {
    .learning-loop-showcase-copy {
        max-width: 100%;
    }

    .learning-loop-showcase-container {
        gap: 48px;
    }

    .learning-loop-showcase-img {
        width: 100%;
        margin-inline: auto;
    }
}

@media (max-width: 600px) {
    .learning-loop-showcase {
        padding-block: 38px 18px;
    }

    .learning-loop-showcase-container {
        gap: 34px;
    }

    .learning-loop-showcase-copy {
        padding-left: 0;
    }

    .learning-loop-showcase-heading {
        margin-bottom: 40px;
        padding-left: 37px;
    }

    .learning-loop-showcase-heading::before {
        width: 3px;
        top: 16px;
        height: calc(100% - 16px);
    }

    .learning-loop-showcase-eyebrow {
        margin-bottom: 26px;
        max-width: 100%;
        flex-wrap: wrap;
        row-gap: 0.04em;
        font-size: 46px;
        line-height: 1.4;
        white-space: normal;
    }

    .learning-loop-showcase-title {
        font-size: 18px;
        line-height: 1.4;
    }

    .learning-loop-showcase-lead,
    .learning-loop-showcase-body {
        font-size: 17px;
        font-weight: 500;
        line-height: 1.8;
    }

    .hero-chatgpt-integration {
        padding: 14px 18px;
        margin-top: 0;
    }

    .hero-chatgpt-integration-img {
        width: min(300px, 82vw);
        filter: none;
    }

    .learning-loop-showcase-visual {
        margin-inline: 0;
        padding: 0;
        border-radius: 0;
        height: 238px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        aspect-ratio: auto;
    }

    .learning-loop-showcase-visual::-webkit-scrollbar {
        display: none;
    }

    .learning-loop-showcase-img {
        width: 632px;
        max-width: none;
    }
}

.ai-mode-transition-section {
    position: relative;
    overflow: hidden;
    padding-block: 0 clamp(96px, 9vw, 144px);
    background: linear-gradient(180deg, #16766b 0%, #0f5f56 100%);
    color: #ffffff;
}

.ai-mode-transition-container {
    display: flex;
    flex-direction: column;
    gap: clamp(30px, 4.2vw, 52px);
    align-items: stretch;
    max-width: 1200px;
}

.ai-mode-transition-bridge {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: -2px;
    padding: 0;
    background: transparent;
    color: #ffffff;
    text-align: center;
}

.ai-mode-transition-bridge::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -4px;
    z-index: 2;
    height: 8px;
    background: #f8fbfa;
    pointer-events: none;
}

.ai-mode-transition-chevron {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: calc(clamp(104px, 12vw, 164px) + 2px);
    background: #f8fbfa;
    clip-path: polygon(0 0, 100% 0, 100% 51%, 50% 100%, 0 51%);
    filter: none;
}

.ai-mode-transition-copy {
    position: relative;
    width: 100%;
    max-width: 1120px;
    margin-inline: auto;
    padding-left: 0;
    text-align: left;
}

.ai-mode-transition-copy::before {
    display: none;
}

.ai-mode-transition-heading-block {
    position: relative;
    max-width: 1040px;
    margin-top: 0;
    margin-bottom: 60px;
    padding-left: 37px;
}

.ai-mode-transition-heading-block::before {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    width: 4px;
    height: calc(100% - 16px);
    background: rgba(255, 255, 255, 0.92);
}

.ai-mode-transition-kicker {
    display: block;
    box-sizing: border-box;
    max-width: 1040px;
    padding-left: 0;
    margin-bottom: 13px;
    color: #ffffff;
    font-size: 54px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.1rem;
    white-space: nowrap;
}

.ai-mode-transition-title {
    display: block;
    box-sizing: border-box;
    max-width: 1040px;
    padding-left: 0;
    margin: 0;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0;
}

.ai-mode-transition-body {
    margin: 0;
    max-width: 920px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.8;
}

.ai-mode-transition-visual {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}

.ai-mode-transition-img {
    width: 100%;
    height: auto;
    margin-inline: auto;
}

@media (max-width: 600px) {
    .ai-mode-transition-section {
        padding-block: 0 68px;
    }

    .ai-mode-transition-container {
        gap: 26px;
    }

    .ai-mode-transition-bridge {
        align-items: center;
        justify-content: center;
    }

    .ai-mode-transition-chevron {
        height: 68px;
        clip-path: polygon(0 0, 100% 0, 100% 52%, 50% 100%, 0 52%);
    }

    .ai-mode-transition-copy {
        padding-left: 0;
    }

    .ai-mode-transition-copy::before {
        display: none;
    }

    .ai-mode-transition-heading-block {
        margin-bottom: 40px;
        padding-left: 37px;
    }

    .ai-mode-transition-heading-block::before {
        width: 3px;
        top: 16px;
        height: calc(100% - 16px);
    }

    .ai-mode-transition-kicker {
        padding-left: 0;
        margin-bottom: 26px;
        font-size: 46px;
        line-height: 1.4;
    }

    .ai-mode-transition-title {
        padding-left: 0;
        font-size: 18px;
        line-height: 1.4;
    }

    .ai-mode-transition-body {
        margin-top: 0;
        font-size: 17px;
        font-weight: 500;
        line-height: 1.8;
    }

    .ai-mode-transition-visual {
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .ai-mode-transition-visual::-webkit-scrollbar {
        display: none;
    }

    .ai-mode-transition-img {
        width: 720px;
        max-width: none;
    }
}

@media (max-width: 600px) {
    .learning-loop-showcase-title,
    .learning-loop-showcase-note,
    .ai-mode-transition-title,
    .accuracy-title,
    .features-detail-title,
    .service-mode-title,
    .hybrid-headline,
    .notify-headline,
    .steps-headline,
    .responsive-headline {
        text-wrap: balance;
    }

    .learning-loop-showcase-body,
    .ai-mode-transition-body,
    .features-detail-lead,
    .feature-card-desc,
    .service-mode-card-description,
    .hybrid-lead,
    .notify-lead,
    .steps-desc,
    .responsive-desc {
        text-wrap: pretty;
        line-break: strict;
    }

    .features-detail-lead {
        font-size: 17px;
        font-weight: 500;
        line-height: 1.8;
    }

    .feature-card-desc {
        font-size: 14.5px;
        line-height: 1.78;
        text-wrap: pretty;
    }

    .steps-desc,
    .security-section .responsive-desc,
    .faq-section .responsive-desc,
    .hybrid-lead {
        text-wrap: balance;
    }

    .steps-desc br {
        display: none;
    }

    .hybrid-lead br {
        display: none;
    }
}

@media (max-width: 600px) {
    :root {
        --mobile-section-space: 72px;
        --mobile-section-space-tight: 56px;
        --mobile-intro-gap: 36px;
        --mobile-title-desc-gap: 18px;
        --mobile-heading-size: clamp(2rem, 8vw, 2.25rem);
        --mobile-editorial-size: clamp(2rem, 8.4vw, 2.4rem);
        --mobile-subheading-size: clamp(1.34rem, 5.7vw, 1.56rem);
        --mobile-body-size: 15px;
        --mobile-body-line: 1.76;
    }

    .section-spacing,
    .achievement-section,
    .integration-section,
    .features-detail-section,
    .service-mode-section.section-spacing,
    .hybrid-section,
    .notification-section,
    .steps-section,
    .security-section,
    .pricing-section,
    .faq-section {
        padding-block: var(--mobile-section-space);
    }

    .hero-chatgpt-integration {
        padding-block: 16px;
    }

    .learning-loop-showcase {
        padding-block: var(--mobile-section-space) var(--mobile-section-space-tight);
    }

    .ai-mode-transition-section {
        padding-block: 0 var(--mobile-section-space);
    }

    .section-intro,
    .section-header,
    .features-detail-header,
    .service-mode-lead,
    .hybrid-header,
    .notify-header,
    .steps-header,
    .integ-header {
        margin-bottom: var(--mobile-intro-gap);
    }

    .pricing-section .section-intro,
    .faq-section .section-intro,
    .security-section .section-intro {
        margin-bottom: var(--mobile-intro-gap);
    }

    .responsive-headline,
    .security-section .responsive-headline,
    .pricing-section .responsive-headline,
    .faq-section .responsive-headline,
    .steps-headline,
    .service-mode-title,
    .hybrid-headline,
    .notify-headline,
    .ui-headline,
    .integ-title {
        font-size: var(--mobile-heading-size);
        line-height: 1.16;
        letter-spacing: 0;
        margin: 0 0 var(--mobile-title-desc-gap);
    }

    .learning-loop-showcase-eyebrow,
    .features-detail-kicker,
    .ai-mode-transition-kicker,
    .learning-loop-showcase-eyebrow.accuracy-eyebrow {
        letter-spacing: 0.1rem;
        margin-bottom: 26px;
    }

    .learning-loop-showcase-eyebrow {
        max-width: 100%;
        flex-wrap: wrap;
        row-gap: 0.04em;
        font-size: 46px;
        line-height: 1.4;
        white-space: normal;
    }

    .ai-mode-transition-kicker,
    .learning-loop-showcase-eyebrow.accuracy-eyebrow {
        font-size: 46px;
        line-height: 1.4;
    }

    .learning-loop-showcase-title,
    .features-detail-title,
    .ai-mode-transition-title,
    .accuracy-title {
        font-size: 18px;
        line-height: 1.4;
        letter-spacing: 0;
    }

    .responsive-desc,
    .security-section .responsive-desc,
    .pricing-section .responsive-desc,
    .faq-section .responsive-desc,
    .steps-desc,
    .service-mode-subtitle,
    .hybrid-lead,
    .notify-lead,
    .ui-desc,
    .integ-desc,
    .learning-loop-showcase-body,
    .learning-loop-showcase-note,
    .features-detail-lead,
    .ai-mode-transition-body,
    .accuracy-body {
        font-size: 17px;
        line-height: 1.8;
        font-weight: 500;
        letter-spacing: 0;
    }

    .learning-loop-showcase-note {
        font-size: 15px;
        font-weight: 400;
        line-height: 1.8;
    }

    .features-detail-lead,
    .ai-mode-transition-body {
        margin-top: 0;
    }

    .steps-headline,
    .notify-headline,
    .hybrid-headline,
    .service-mode-title {
        margin-bottom: var(--mobile-title-desc-gap);
    }

    .steps-desc,
    .notify-lead,
    .hybrid-lead,
    .service-mode-subtitle,
    .ui-desc,
    .integ-desc,
    .responsive-desc,
    .security-section .responsive-desc,
    .pricing-section .responsive-desc,
    .faq-section .responsive-desc {
        margin: 0;
    }

    .steps-timeline {
        gap: 72px;
    }

    .hybrid-section .ui-contact-selector-flat {
        width: 92%;
        padding: 18px 16px;
        border-radius: 20px;
    }

    .hybrid-section .ui-contact-selector-flat .ui-chat-row {
        margin-bottom: 14px;
    }

    .hybrid-section .ui-contact-selector-flat .ui-chat-row.left {
        gap: 10px;
    }

    .hybrid-section .ui-contact-selector-flat .ui-avatar.p-avatar {
        width: 36px;
        height: 36px;
    }

    .hybrid-section .ui-contact-selector-flat .ui-bubble.bot-white-large {
        width: min(100%, 264px);
        padding: 18px 16px;
        gap: 14px;
        border-radius: 20px;
    }

    .hybrid-section .ui-contact-selector-flat .bot-text-large {
        font-size: 14px;
        line-height: 1.58;
        text-wrap: balance;
    }

    .hybrid-section .ui-contact-selector-flat .bot-buttons-list {
        gap: 10px;
    }

    .hybrid-section .ui-contact-selector-flat .bot-btn-green {
        min-height: 48px;
        padding: 11px 18px;
        border-radius: 14px;
        font-size: 14px;
        line-height: 1.45;
        text-align: center;
        text-wrap: balance;
        word-break: keep-all;
    }

    .hybrid-section .ui-browser-mockup.fallback-mode.compact {
        width: min(92%, 320px);
        height: 196px;
        padding: 18px 14px;
        justify-content: center;
    }

    .hybrid-section .ui-browser-mockup.fallback-mode.compact .ui-chat-row {
        margin-bottom: 12px;
    }

    .hybrid-section .ui-browser-mockup.fallback-mode.compact .ui-chat-row.left {
        gap: 10px;
    }

    .hybrid-section .ui-browser-mockup.fallback-mode.compact .ui-avatar.p-avatar {
        width: 34px;
        height: 34px;
    }

    .hybrid-section .ui-browser-mockup.fallback-mode.compact .ui-bubble {
        max-width: 82%;
    }

    .hybrid-section .ui-browser-mockup.fallback-mode.compact .ui-bubble.user-green {
        padding: 10px 18px;
        font-size: 14px;
        line-height: 1.35;
        max-width: 76%;
    }

    .hybrid-section .ui-browser-mockup.fallback-mode.compact .ui-bubble.bot-white {
        padding: 12px 16px;
        font-size: 13px;
        line-height: 1.5;
        border-radius: 18px;
    }

    .hybrid-section .ui-browser-mockup.fallback-mode.compact .ui-chat-col {
        width: min(100%, 218px);
        gap: 8px;
    }

    .hybrid-section .ui-browser-mockup.fallback-mode.compact .ui-fallback-btn-green {
        width: fit-content;
        max-width: 100%;
        padding: 10px 16px;
        border-radius: 999px;
        font-size: 12px;
        line-height: 1.45;
        justify-content: center;
        gap: 6px;
        text-align: center;
        word-break: keep-all;
        box-sizing: border-box;
    }

    .hybrid-section .ui-browser-mockup.fallback-mode.compact .hand-icon {
        font-size: 13px;
        flex: 0 0 auto;
    }

    .hybrid-section .ui-browser-mockup.fallback-mode.compact .ui-cursor-click-web {
        left: 58%;
        bottom: 36px;
        width: 20px;
        height: 20px;
    }
}

.floating-line-banner {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 1000;
    width: min(300px, calc(100vw - 32px));
}

.floating-line-banner.is-hidden {
    display: none;
}

.floating-line-banner-link {
    display: block;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-line-banner-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.28);
}

.floating-line-banner-link img {
    display: block;
    width: 100%;
    height: auto;
}

.floating-line-banner-close {
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.88);
    color: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.22);
}

.floating-line-banner-close:hover {
    background: rgba(17, 24, 39, 1);
}

@media (max-width: 767px) {
    .floating-line-banner {
        display: none;
    }
}

.lp-unified-heading {
    width: 100%;
    display: block;
    max-width: 1040px;
    margin: 0 0 60px;
    padding-left: 0;
    text-align: left;
    align-items: initial;
    gap: 0;
}

.section-intro.lp-unified-heading,
.features-detail-heading-block.lp-unified-heading,
.service-mode-lead.lp-unified-heading,
.hybrid-header.lp-unified-heading,
.achievement-header.lp-unified-heading,
.integ-header.lp-unified-heading,
.notify-header.lp-unified-heading,
.steps-header.lp-unified-heading {
    max-width: 1040px;
    margin: 0 0 60px;
    padding-left: 0;
    text-align: left;
    align-items: initial;
    gap: 0;
}

.lp-unified-head {
    position: relative;
    margin-bottom: 60px;
    padding-left: 37px;
}

.lp-unified-head::before {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    width: 4px;
    height: calc(100% - 16px);
    background: #222;
}

.lp-unified-kicker,
.hybrid-eyebrow.lp-unified-kicker,
.notify-eyebrow.lp-unified-kicker,
.steps-eyebrow.lp-unified-kicker,
.section-eyebrow.lp-unified-kicker {
    display: block;
    margin: 0 0 13px;
    color: #222;
    font-size: 54px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.1rem;
    text-transform: none;
}

.lp-unified-title,
.service-mode-title.lp-unified-title,
.hybrid-headline.lp-unified-title,
.ui-headline.lp-unified-title,
.integ-title.lp-unified-title,
.notify-headline.lp-unified-title,
.steps-headline.lp-unified-title,
.responsive-headline.lp-unified-title {
    display: block;
    margin: 0;
    padding: 0;
    color: #222;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: currentColor;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0;
}

.lp-unified-desc,
.service-mode-subtitle.lp-unified-desc,
.hybrid-lead.lp-unified-desc,
.ui-desc.lp-unified-desc,
.integ-desc.lp-unified-desc,
.notify-lead.lp-unified-desc,
.steps-desc.lp-unified-desc,
.responsive-desc.lp-unified-desc {
    max-width: 920px;
    margin: 0;
    color: #222;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0;
}

.mobile-heading-line {
    display: inline;
}

@media (max-width: 600px) {
    .lp-unified-heading {
        margin-bottom: 34px;
    }

    .section-intro.lp-unified-heading,
    .features-detail-heading-block.lp-unified-heading,
    .service-mode-lead.lp-unified-heading,
    .hybrid-header.lp-unified-heading,
    .achievement-header.lp-unified-heading,
    .integ-header.lp-unified-heading,
    .notify-header.lp-unified-heading,
    .steps-header.lp-unified-heading {
        margin: 0 0 34px;
        padding-left: 0;
    }

    .lp-unified-head {
        margin-bottom: 30px;
        padding-left: 24px;
    }

    .lp-unified-head::before {
        top: 4px;
        width: 2px;
        height: calc(100% - 4px);
    }

    .lp-unified-kicker,
    .hybrid-eyebrow.lp-unified-kicker,
    .notify-eyebrow.lp-unified-kicker,
    .steps-eyebrow.lp-unified-kicker,
    .section-eyebrow.lp-unified-kicker {
        margin-bottom: 14px;
        font-size: clamp(35px, 9.8vw, 40px);
        line-height: 1.18;
        letter-spacing: 0.04em;
    }

    .service-mode-lead .lp-unified-kicker {
        letter-spacing: 0;
        white-space: nowrap;
    }

    .faq-section .lp-unified-kicker {
        letter-spacing: 0;
        white-space: nowrap;
    }

    .lp-unified-title,
    .service-mode-title.lp-unified-title,
    .hybrid-headline.lp-unified-title,
    .ui-headline.lp-unified-title,
    .integ-title.lp-unified-title,
    .notify-headline.lp-unified-title,
    .steps-headline.lp-unified-title,
    .responsive-headline.lp-unified-title {
        margin-bottom: 0;
        font-size: 18px;
        line-height: 1.48;
        line-break: strict;
        overflow-wrap: normal;
        text-wrap: balance;
        word-break: keep-all;
    }

    .lp-unified-desc,
    .service-mode-subtitle.lp-unified-desc,
    .hybrid-lead.lp-unified-desc,
    .ui-desc.lp-unified-desc,
    .integ-desc.lp-unified-desc,
    .notify-lead.lp-unified-desc,
    .steps-desc.lp-unified-desc,
    .responsive-desc.lp-unified-desc {
        font-size: 16px;
        font-weight: 500;
        line-height: 1.85;
    }
}

@media (max-width: 600px) {
    .mobile-heading-line {
        display: block;
    }

    .learning-loop-showcase-heading,
    .ai-mode-transition-heading-block {
        margin-bottom: 30px;
        padding-left: 24px;
    }

    .learning-loop-showcase-heading::before,
    .ai-mode-transition-heading-block::before {
        top: 4px;
        width: 2px;
        height: calc(100% - 4px);
    }

    .learning-loop-showcase-eyebrow,
    .ai-mode-transition-kicker,
    .learning-loop-showcase-eyebrow.accuracy-eyebrow {
        margin-bottom: 14px;
        font-size: clamp(35px, 9.8vw, 40px);
        line-height: 1.18;
        letter-spacing: 0.04em;
    }

    .learning-loop-showcase-suffix {
        font-size: 0.66em;
    }

    .learning-loop-showcase-brand-text,
    .learning-loop-showcase-suffix {
        letter-spacing: 0;
    }

    .learning-loop-showcase-title,
    .ai-mode-transition-title,
    .accuracy-title {
        font-size: 18px;
        line-height: 1.48;
        line-break: strict;
        overflow-wrap: normal;
        text-wrap: balance;
        word-break: keep-all;
    }

    .learning-loop-showcase-body,
    .ai-mode-transition-body,
    .accuracy-body {
        font-size: 16px;
        font-weight: 500;
        line-height: 1.85;
    }
}

@media (max-width: 768px) {
    html,
    body {
        overflow-x: clip;
    }

    img,
    svg,
    video {
        max-width: 100%;
        height: auto;
    }

    .learning-loop-showcase-img,
    .ai-mode-transition-img {
        max-width: none;
    }

    .feature-card-title {
        white-space: normal;
        word-break: keep-all;
        overflow-wrap: anywhere;
        font-size: clamp(1.15rem, 5.2vw, 1.4rem);
        line-height: 1.35;
    }

    .kpi-card {
        min-height: 0;
        padding: 24px 22px 26px;
    }

    .kpi-visual-area {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }

    .kpi-label {
        margin-bottom: 10px;
    }

    .kpi-number {
        font-size: 44px;
    }

    .kpi-unit {
        font-size: 20px;
    }

    .kpi-desc {
        margin-top: 10px;
    }

    .feature-card-visual {
        height: auto;
        min-height: 0;
        max-height: 220px;
    }

    .feature-card-visual--ui {
        max-height: none;
        padding-top: 26px;
        padding-bottom: 26px;
    }

    .feature-card-visual--ui .feature-permission-ui,
    .feature-card-visual--ui .feature-prompt-ui {
        width: min(92%, 238px);
    }

    .hybrid-section .card-visual {
        height: auto;
        min-height: 200px;
        max-height: 260px;
    }

    .bento-card.large .bento-visual {
        min-height: 0;
        max-height: 280px;
    }

    .ai-mode-transition-section,
    .ai-mode-transition-container {
        overflow-x: clip;
        contain: paint;
    }

    .ai-mode-transition-bridge {
        width: calc(100% + (var(--gutter-mobile) * 2));
        height: clamp(56px, 11vw, 72px);
        margin-right: calc(-1 * var(--gutter-mobile));
        margin-left: calc(-1 * var(--gutter-mobile));
        overflow: hidden;
        flex: 0 0 auto;
    }

    .ai-mode-transition-bridge::before {
        top: 0;
        height: 1px;
    }

    .ai-mode-transition-chevron {
        width: 100%;
        height: 100%;
        clip-path: polygon(0 0, 100% 0, 100% 64%, 50% 100%, 0 64%);
    }
}

@media (max-width: 600px) {
    .service-mode-card-title {
        white-space: normal;
        word-break: keep-all;
        overflow-wrap: anywhere;
    }

    .service-mode-card-badge {
        display: block;
        margin-bottom: 2px;
    }

    .ui-headline {
        font-size: clamp(20px, 6.2vw, 32px);
    }

    .service-mode-lead .lp-unified-kicker,
    .faq-section .lp-unified-kicker,
    .features-detail-kicker {
        white-space: normal;
    }

    .lp-unified-kicker,
    .hybrid-eyebrow.lp-unified-kicker,
    .notify-eyebrow.lp-unified-kicker,
    .steps-eyebrow.lp-unified-kicker,
    .section-eyebrow.lp-unified-kicker,
    .learning-loop-showcase-eyebrow,
    .ai-mode-transition-kicker,
    .features-detail-kicker,
    .learning-loop-showcase-eyebrow.accuracy-eyebrow {
        font-size: clamp(26px, 8.6vw, 38px);
        letter-spacing: 0.03em;
        line-height: 1.18;
        overflow-wrap: anywhere;
    }

    .lp-unified-title,
    .service-mode-title.lp-unified-title,
    .hybrid-headline.lp-unified-title,
    .ui-headline.lp-unified-title,
    .integ-title.lp-unified-title,
    .notify-headline.lp-unified-title,
    .steps-headline.lp-unified-title,
    .responsive-headline.lp-unified-title,
    .learning-loop-showcase-title,
    .ai-mode-transition-title,
    .accuracy-title,
    .features-detail-title {
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .learning-loop-showcase-title span {
        white-space: normal;
        word-break: normal;
    }

    .service-mode-card-header {
        margin-bottom: 20px;
    }

    .feature-card-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 16px;
    }

    .permission-input {
        font-size: 11px;
        line-height: 1.25;
        white-space: normal;
        word-break: break-all;
        overflow-wrap: anywhere;
    }

    .hybrid-section .switcher-btn {
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .hybrid-section .rm-btn,
    .hybrid-section .ui-line-escalation {
        box-sizing: border-box;
        overflow: clip;
        contain: paint;
    }

    .hybrid-section .rm-btn {
        border-width: 0;
    }

    .hybrid-section .ui-line-escalation {
        border-width: 0;
    }

    .hybrid-section .tap-hand {
        right: 0;
        bottom: -10px;
        width: 22px;
    }

    .hybrid-section .le-notification {
        right: 0;
    }

    .prompt-toolbar strong {
        min-width: 0;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .steps-timeline,
    .step-block,
    .step-image,
    .step-code-frame {
        box-sizing: border-box;
        max-width: 100%;
    }

    .line-badge-float {
        right: 0;
        max-width: 100%;
        padding: 10px 14px;
        font-size: 12px;
    }

    .file-icons-cluster {
        width: 100%;
        max-width: 100%;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        padding: 12px;
        gap: 6px;
        overflow: clip;
    }

    .file-icon-item {
        width: 100%;
    }

    .launch-visual {
        width: min(100%, 240px);
        height: 260px;
        overflow: clip;
        contain: paint;
    }

    .time-display-container {
        width: min(100%, 170px);
        height: 170px;
        overflow: clip;
        contain: paint;
    }

    .time-ring-bg {
        transform: none;
    }

    .time-unit {
        margin-left: 1px;
        font-size: 16px;
    }

    .time-text {
        font-size: 48px;
        letter-spacing: 0;
    }

    .full-coverage {
        max-width: 100%;
        font-size: 9px;
        letter-spacing: 0.02em;
        text-align: center;
    }

    .active-badge-fixed {
        top: 18px;
        right: 12px;
        padding: 5px 10px;
    }

    .hybrid-tag-box {
        max-width: 100%;
        padding: 7px 12px;
        font-size: 11px;
        text-align: center;
        white-space: normal;
    }

    .pdca-visual {
        width: min(100%, 240px);
        height: 260px;
        overflow: clip;
        contain: paint;
    }

    .pdca-circle {
        box-sizing: border-box;
        width: 180px;
        height: 180px;
        border: 0;
        outline: 2px dashed rgba(42, 157, 143, 0.2);
        overflow: clip;
        contain: paint;
    }

    .pdca-arrow {
        animation: none;
        transform: none;
    }

    .trend-line-box {
        right: 14px;
        bottom: 24px;
        padding: 10px 14px;
    }

    .security-section .graphic-element {
        box-sizing: border-box;
        width: min(100%, 192px);
        max-width: 100%;
        overflow-x: clip;
        contain: paint;
    }

    .security-section .graphic-element .flex-1,
    .security-section .graphic-element .relative {
        min-width: 0;
        max-width: 100%;
    }

    .security-section .graphic-element .w-48 {
        box-sizing: border-box;
        max-width: 100%;
    }

    .security-section .mb-8 {
        overflow-x: clip;
        contain: paint;
    }

    .security-section [class~="-left-24"] {
        left: 0;
    }

    .security-section [class~="-right-24"] {
        right: 0;
    }

    .security-section [class~="-rotate-6"] {
        transform: none;
    }

    .security-section [class~="-left-4"],
    .security-section [class~="-right-6"],
    .security-section [class~="-right-2"] {
        right: 0;
        left: auto;
    }

    .security-section .w-56 {
        width: 9rem;
    }

    .pricing-inner,
    .pricing-inner > .grid,
    .faq-section .faq-support-card,
    .faq-section .faq-support-card-content {
        box-sizing: border-box;
        max-width: 100%;
        overflow-x: clip;
    }

    .pricing-section [class~="scale-[1.02]"] {
        transform: none;
    }

    .faq-section .faq-card-visual {
        right: 0;
    }
}

@media (max-width: 380px) {
    .ui-headline-line {
        white-space: normal;
        word-break: keep-all;
    }

    .faq-section .faq-card-action {
        font-size: 12px;
        padding: 0 8px;
        letter-spacing: 0;
    }

    .hero-btn {
        font-size: 13px;
        padding: 12px 14px;
    }
}

.security-section,
.pricing-section,
.faq-section {
    width: 100%;
    background: #ffffff;
}

.security-section .lp-unified-title,
.pricing-section .lp-unified-title,
.faq-section .lp-unified-title {
    font-weight: 700;
    letter-spacing: 0;
}

.security-section .lp-unified-desc,
.pricing-section .lp-unified-desc,
.faq-section .lp-unified-desc {
    max-width: 42rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.desktop-line-break {
    display: none;
}

@media (min-width: 640px) {
    .desktop-line-break {
        display: block;
    }
}

.security-card-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .security-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.security-card {
    position: relative;
    overflow: hidden;
    padding: 2rem;
    border-radius: 32px;
    background: var(--color-surface-alt);
    transition: background 0.5s ease, box-shadow 0.5s ease;
}

.security-card:hover {
    background: #f0f0f4;
    box-shadow: 0 16px 50px rgba(29, 29, 31, 0.08);
}

@media (min-width: 640px) {
    .security-card {
        padding: 2.5rem;
    }
}

.security-card-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 8rem;
    margin-bottom: 2rem;
}

.security-card-title {
    margin: 0 0 0.75rem;
    color: var(--color-text);
    font-family: var(--font-family-base);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0;
}

.security-card-description {
    margin: 0;
    color: var(--color-text-secondary);
    font-family: var(--font-family-base);
    line-height: 1.625;
}

@media (max-width: 767px) {
    .security-section .security-visual-mfa,
    .security-section .security-visual-recaptcha {
        overflow: visible;
        contain: none;
    }

    .security-section .security-visual-mfa {
        width: 178px;
        height: 104px;
    }

    .security-visual-mfa [class~="-left-4"] {
        left: 0;
        right: auto;
        transform: rotate(-6deg);
    }

    .security-visual-mfa [class~="-right-6"] {
        top: 8px;
        right: 2px;
        left: auto;
    }

    .security-section .security-visual-recaptcha {
        width: 224px;
        max-width: calc(100vw - 96px);
    }

    .security-visual-recaptcha > .w-48 {
        width: 100%;
    }

    .security-visual-recaptcha [class~="-right-2"] {
        right: -6px;
        left: auto;
    }
}

.pricing-plan-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
    gap: 1rem;
    margin-bottom: 6rem;
}

@media (min-width: 768px) {
    .pricing-plan-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .pricing-plan-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.pricing-plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    border: 1px solid transparent;
    border-radius: 32px;
    background: var(--color-surface-alt);
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.pricing-plan-card:hover {
    border-color: var(--color-border);
    background: var(--color-surface);
    box-shadow: var(--shadow-card);
}

.pricing-plan-card--featured {
    z-index: 10;
    border: 2px solid var(--color-accent);
    background: var(--color-surface);
    box-shadow: 0 0 40px rgba(42, 157, 143, 0.2);
    transform: scale(1.02);
}

@media (max-width: 767px) {
    .pricing-plan-card--featured {
        transform: none;
    }
}

.pricing-plan-head {
    margin-bottom: 1.5rem;
}

.pricing-plan-head--featured {
    padding-top: 0.5rem;
}

.pricing-plan-name {
    margin: 0 0 0.5rem;
    color: var(--color-text);
    font-size: 1.125rem;
    font-weight: 700;
}

.pricing-plan-name--featured {
    color: var(--color-accent);
}

.pricing-plan-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.pricing-plan-price {
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
}

.pricing-plan-price--quote {
    font-size: 1.5rem;
}

.pricing-plan-unit {
    color: var(--color-text-secondary);
    font-size: 0.75rem;
    font-weight: 500;
}

.pricing-plan-description {
    margin: 0 0 2rem;
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    line-height: 1.625;
}

.pricing-plan-description--featured {
    color: var(--color-text);
    font-weight: 700;
}

.pricing-plan-footer {
    display: grid;
    gap: 1rem;
    margin-top: auto;
}

.pricing-plan-action {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d2d2d7;
    border-radius: 1rem;
    background: #ffffff;
    color: var(--color-text);
    font-size: 0.875rem;
    font-weight: 700;
    text-align: center;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.pricing-plan-action--primary {
    padding-block: 0.875rem;
    border-color: var(--color-accent);
    background: var(--color-accent);
    color: #ffffff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.pricing-plan-action--primary:hover {
    transform: scale(1.02);
}

.pricing-plan-action--primary:active {
    transform: scale(0.98);
}

.pricing-plan-caption {
    margin: 0;
    color: var(--color-text-secondary);
    font-size: 10px;
    font-weight: 500;
    text-align: center;
}

.pricing-plan-caption--featured {
    color: var(--color-accent);
    font-weight: 700;
}

.pricing-table-shell {
    border-radius: 32px;
    background: #ffffff;
    box-shadow: none;
}

.pricing-table-scroll {
    overflow-x: auto;
    scrollbar-width: none;
}

.pricing-table-scroll::-webkit-scrollbar {
    display: none;
}

.pricing-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    text-align: left;
}

@media (min-width: 768px) {
    .pricing-table {
        min-width: 900px;
    }
}

.pricing-table-row {
    border-bottom: 1px solid var(--color-border);
}

.pricing-table-heading {
    width: 16.666%;
    padding: 1.5rem;
    color: var(--color-text);
    font-size: 0.875rem;
    font-weight: 700;
    text-align: center;
}

.pricing-table-heading--feature {
    left: 0;
    z-index: 20;
    width: 33.333%;
    color: var(--color-text-secondary);
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-align: left;
    text-transform: uppercase;
}

.pricing-table-heading--accent {
    color: var(--color-accent);
}

.pricing-table-body {
    color: var(--color-text);
    font-size: 0.875rem;
}

.feature-row {
    border-bottom: 0;
}

.feature-row--last {
    border-bottom: 0;
}

.feature-row-label {
    position: sticky;
    left: 0;
    z-index: 10;
    padding: 1.25rem 1.25rem 1.25rem 1.5rem;
    background: #ffffff;
    color: var(--color-text);
    font-weight: 700;
    transition: background 0.2s ease;
}

.feature-row:hover .feature-row-label {
    background: #fbfbfd;
}

.feature-cell {
    padding: 1.25rem;
    text-align: center;
}

.feature-cell--highlight {
    background: rgba(42, 157, 143, 0.05);
}

.feature-cell--text {
    color: var(--color-text);
    font-size: 0.75rem;
    font-weight: 700;
}

.feature-cell--accent-text {
    color: var(--color-accent);
}

.feature-cell--muted {
    color: var(--color-border);
}

.feature-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin: 0 auto;
}

.feature-icon--accent {
    color: var(--color-accent);
}

.feature-icon--muted {
    color: var(--color-text);
    opacity: 0.5;
}

.feature-icon--warning {
    color: var(--color-text);
    opacity: 0.6;
}

.feature-cell-note,
.feature-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.feature-note,
.feature-option-note {
    color: var(--color-text-secondary);
    font-size: 10px;
    font-weight: 500;
    line-height: 1.35;
    text-align: center;
}

.feature-option {
    color: var(--color-text);
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.35;
}

.feature-option--accent {
    color: var(--color-accent);
}

.faq-layout {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .faq-layout {
        flex-direction: row;
    }
}

.faq-support-column {
    width: 100%;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .faq-support-column {
        width: 400px;
    }

    .faq-support-sticky {
        position: sticky;
        top: 6rem;
    }
}

.faq-support-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 520px;
    border-radius: 32px;
    color: #ffffff;
    box-shadow: 0 20px 40px -10px rgba(42, 157, 143, 0.3);
    transition: transform 0.7s ease;
}

.faq-support-card:hover {
    transform: scale(1.01);
}

.faq-support-gradient {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(to bottom right, #2a9d8f, #134e4a);
}

.faq-support-texture {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    mix-blend-mode: overlay;
}

.faq-support-card-content {
    position: relative;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    padding: 4rem 2.5rem 2.5rem;
}

.faq-support-title {
    position: relative;
    z-index: 30;
    margin: 1rem 0 0;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 8px 18px rgba(15, 23, 42, 0.22);
}

.faq-card-actions {
    position: relative;
    z-index: 30;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.faq-card-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.faq-card-visual {
    position: absolute;
    right: -40px;
    bottom: 0;
    z-index: 10;
    width: 320px;
    height: 320px;
    pointer-events: none;
}

.faq-card-mascot {
    width: 100%;
    height: 100%;
}

.faq-list-panel {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 520px;
}

.faq-list-panel:has(.faq-accordion-item[aria-expanded="true"]) {
    height: auto;
    min-height: 0;
}

.faq-list-panel:has(.faq-accordion-item[aria-expanded="true"]) .faq-list-frame,
.faq-list-panel:has(.faq-accordion-item[aria-expanded="true"]) .faq-list-center {
    flex: 0 0 auto;
}

@media (min-width: 1024px) {
    .faq-list-panel {
        flex: 1 1 0;
    }
}

.faq-list-rule {
    width: 100%;
    height: 1px;
    background: #e5e7eb;
}

.faq-list-frame,
.faq-list-center {
    display: flex;
    flex: 1 1 0;
    flex-direction: column;
}

.faq-list-center {
    justify-content: center;
}

.faq-list-items {
    width: 100%;
}

.faq-accordion-item {
    border-bottom: 1px solid #e5e7eb;
    cursor: pointer;
    user-select: none;
}

.faq-accordion-item--last {
    border-bottom: 0;
}

.faq-accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.25rem 0;
}

.faq-accordion-title {
    margin: 0;
    color: #1d1d1f;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0;
    text-align: left;
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .faq-accordion-title {
        font-size: 18px;
    }
}

.faq-accordion-item:hover .faq-accordion-title {
    color: var(--color-accent);
}

.faq-accordion-icon {
    flex-shrink: 0;
    color: #9ca3af;
    transition: color 0.3s ease;
}

.faq-accordion-item:hover .faq-accordion-icon {
    color: var(--color-accent);
}

.faq-accordion-item[aria-expanded="true"] .icon-chevron {
    transform: rotate(180deg);
}

.accordion-inner {
    padding-right: 2rem;
    color: #86868b;
    font-size: 15px;
    font-weight: 500;
    line-height: 2;
    text-align: left;
}

@media (min-width: 768px) {
    .accordion-inner {
        font-size: 16px;
    }
}

@media (min-width: 1024px) {
    .faq-layout {
        gap: 3rem;
    }

    .faq-support-column {
        width: 360px;
    }

    .faq-support-card {
        height: 390px;
    }

    .faq-support-card-content {
        padding: 2.35rem 1.85rem 1.5rem;
    }

    .faq-support-title {
        font-size: 20px;
        line-height: 1.34;
    }

    .faq-card-actions {
        gap: 0.65rem;
        margin-top: 1.25rem;
    }

    .faq-card-action {
        padding: 0.6rem 1rem;
        font-size: 13px;
    }

    .faq-card-visual {
        right: -26px;
        width: 238px;
        height: 238px;
    }

    .faq-list-panel {
        height: 390px;
        min-height: 390px;
    }

    .faq-list-center {
        justify-content: flex-start;
    }

    .faq-list-frame {
        min-height: 0;
    }

    .faq-list-items {
        display: grid;
        grid-template-rows: repeat(6, minmax(0, 1fr));
        height: 100%;
        min-height: 0;
    }

    .faq-list-items:has(.faq-accordion-item[aria-expanded="true"]) {
        display: block;
        height: auto;
    }

    .faq-accordion-item {
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .faq-accordion-trigger {
        flex: 1 1 auto;
        min-height: 0;
        padding: 0;
    }

    .faq-list-items:has(.faq-accordion-item[aria-expanded="true"]) .faq-accordion-trigger {
        padding: 0.85rem 0;
    }

    .faq-accordion-title {
        font-size: 16.5px;
        line-height: 1.3;
    }

    .accordion-inner {
        padding-right: 1.5rem;
        font-size: 14.5px;
        line-height: 1.7;
    }

    .accordion-content.open .accordion-inner {
        padding-bottom: 0.75rem;
    }
}

.site-footer {
    padding-top: 4rem;
    padding-bottom: 2rem;
    background: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 3rem;
    margin-bottom: 5rem;
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(12, minmax(0, 1fr));
        gap: 2rem;
    }

    .footer-brand {
        grid-column: span 5 / span 5;
    }

    .footer-spacer {
        display: block;
        grid-column: span 1 / span 1;
    }

    .footer-section {
        grid-column: span 3 / span 3;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-spacer {
    display: none;
}

.footer-logo-link {
    display: block;
    transition: opacity 0.3s ease;
}

.footer-logo-link:hover {
    opacity: 0.8;
}

.footer-brand-copy {
    max-width: 20rem;
    color: var(--color-text-secondary);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.625;
}

.footer-heading {
    margin: 0 0 1.5rem;
    color: var(--color-text);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-link-list {
    display: grid;
    gap: 1rem;
}

.footer-contact-list {
    display: grid;
    gap: 1.25rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact-icon {
    color: var(--color-accent);
}

.footer-contact-icon--offset {
    margin-top: 0.125rem;
}

.footer-contact-icon svg {
    width: 1rem;
    height: 1rem;
}

.footer-link,
.footer-contact-text,
.footer-copyright {
    color: var(--color-text-secondary);
    font-size: 13px;
}

.footer-link {
    display: inline-block;
}

.footer-contact-link {
    transition: color 0.2s ease;
}

.footer-contact-link:hover {
    color: var(--color-accent);
}

.footer-contact-text {
    line-height: 1.625;
}

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright {
    margin: 0;
    font-size: 11px;
}
