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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  color: #1c1c1c;
  background-color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: 0;
}

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

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

.l-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  transition: all 200ms ease-out;
  background: transparent;
  backdrop-filter: none;
}
.l-header__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .l-header__inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.l-header__logo {
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity 200ms ease-out;
}
.l-header__logo:hover {
  opacity: 0.8;
}
.l-header__logo-text {
  font-weight: 700;
  font-size: 20px;
  color: #1c1c1c;
  letter-spacing: 0;
}
.l-header__nav {
  display: none;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
}
@media (min-width: 768px) {
  .l-header__nav {
    display: flex;
  }
}
.l-header__nav-link {
  transition: color 200ms ease-out;
}
.l-header__nav-link:hover {
  color: #1c1c1c;
}
.l-header__nav-link.is-active {
  color: #1c1c1c;
  font-weight: 600;
}
.l-header__actions {
  display: none;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}
@media (min-width: 768px) {
  .l-header__actions {
    display: flex;
  }
}
.l-header__menu-toggle {
  display: block;
  padding: 8px;
  color: #1c1c1c;
}
@media (min-width: 768px) {
  .l-header__menu-toggle {
    display: none;
  }
}
.l-header__menu-toggle i {
  font-size: 24px;
}

.l-mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(248, 247, 245, 0.95);
  backdrop-filter: blur(20px);
  z-index: 60;
  transform: translateX(100%);
  transition: transform 300ms ease-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 96px 32px 48px;
}
.l-mobile-menu.is-open {
  transform: translateX(0);
}
.l-mobile-menu__close {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 8px;
  color: #1c1c1c;
  transition: color 200ms ease-out;
}
.l-mobile-menu__close:hover {
  color: #51565a;
}
.l-mobile-menu__close i {
  font-size: 30px;
}
.l-mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.l-mobile-menu__link {
  font-size: 20px;
  font-weight: 500;
  color: #1c1c1c;
  transition: color 200ms ease-out;
}
.l-mobile-menu__link:hover {
  color: #51565a;
}
.l-mobile-menu__cta {
  margin-top: auto;
}

.l-section {
  padding: 96px 0;
}
@media (min-width: 768px) {
  .l-section {
    padding: 128px 0;
  }
}
.l-section--white {
  background-color: #ffffff;
}
.l-section--light-bg {
  background-color: #f2f0ed;
}
.l-section--lighter-bg {
  background-color: #f7f6f5;
}
.l-section--dark {
  background-color: #1c1c1c;
  position: relative;
  overflow: hidden;
}
.l-section__container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.l-section__container--lg {
  max-width: 1152px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.l-section__container--md {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.l-section__container--sm {
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.l-section__header {
  text-align: center;
  max-width: 768px;
  margin: 0 auto 64px;
}
.l-section__label {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #FF6B00;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.l-section__label::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: rgba(255, 107, 0, 0.15);
  flex-shrink: 0;
}
.l-section__title {
  font-size: 30px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .l-section__title {
    font-size: 56px;
  }
}
.l-section__lead {
  font-size: 16px;
  color: #51565a;
  font-weight: 400;
  line-height: 1.6;
}

.l-footer {
  background-color: #f7f6f5;
  padding: 48px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}
.l-footer__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.l-footer__logo {
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.8;
}
.l-footer__logo-text {
  font-weight: 700;
  font-size: 20px;
  color: #1c1c1c;
  letter-spacing: 0;
}
.l-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  font-size: 14px;
  color: #51565a;
  font-weight: 500;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .l-footer__links {
    gap: 40px;
  }
}
.l-footer__link {
  transition: color 200ms ease-out;
}
.l-footer__link:hover {
  color: #1c1c1c;
}
.l-footer__copyright {
  color: #8a8a8a;
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.1em;
}

.c-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 40px;
  font-weight: 500;
  font-size: 15px;
  padding: 12px 28px;
  transition: background-color 200ms ease-out, transform 200ms ease-out;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  border: none;
}
@media (min-width: 640px) {
  .c-button {
    font-size: 16px;
  }
}
.c-button--primary {
  background-color: #FF6B00;
  color: #ffffff;
}
.c-button--primary:hover {
  background-color: #ec580a;
  transform: translateY(-0.5px);
}
.c-button--secondary {
  background-color: #1c1c1c;
  color: #ffffff;
}
.c-button--secondary:hover {
  transform: translateY(-0.5px);
}
.c-button--ghost {
  background-color: transparent;
  color: #1c1c1c;
  border: 1px solid rgba(0, 0, 0, 0.12);
}
.c-button--ghost:hover {
  background-color: #f9fafb;
  transform: translateY(-0.5px);
}
.c-button--ghost-dark {
  background-color: transparent;
  color: #1c1c1c;
  border: 1px solid #1c1c1c;
}
.c-button--ghost-dark:hover {
  background-color: #f9fafb;
  transform: translateY(-0.5px);
}
.c-button--lg {
  padding: 16px 48px;
  font-size: 16px;
}
@media (min-width: 640px) {
  .c-button--lg {
    padding: 18px 72px;
    font-size: 17px;
  }
}
.c-button--sm {
  padding: 8px 20px;
  font-size: 14px;
}
.c-button--hero {
  padding: 14px 32px;
}
@media (min-width: 640px) {
  .c-button--hero {
    padding: 16px 40px;
  }
}
.c-button--full {
  display: flex;
  width: 100%;
  padding: 12px 28px;
}

.c-card {
  background-color: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0px 0.5px 1.3px rgba(0, 0, 0, 0.01), 0px 1.2px 3.1px rgba(0, 0, 0, 0.01), 0px 2.3px 5.8px rgba(0, 0, 0, 0.01), 0px 4px 10.5px rgba(0, 0, 0, 0.02), 0px 7.5px 19px rgba(0, 0, 0, 0.02), 0px 18px 47px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}
.c-card--padded {
  padding: 32px;
}
.c-card--border-strong {
  border-color: rgba(0, 0, 0, 0.15);
}
.c-card--recommended {
  border: 2px solid #FF6B00;
  box-shadow: 0 0 40px rgba(255, 107, 0, 0.15);
  position: relative;
}
.c-card__image {
  height: 240px;
  background-color: #f7f6f5;
  overflow: hidden;
  position: relative;
}
.c-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-card__body {
  padding: 24px;
}
.c-card__category {
  font-size: 14px;
  font-weight: 500;
  color: #FF6B00;
  margin-bottom: 4px;
}
.c-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 16px;
}
.c-card__text {
  font-size: 14px;
  color: #51565a;
  line-height: 1.5;
}

.c-tag-pill {
  display: inline-block;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 500;
  color: #1c1c1c;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 9999px;
  white-space: nowrap;
  transition: background-color 200ms ease-out, border-color 200ms ease-out, color 200ms ease-out;
}
.c-tag-pill:hover {
  background: rgba(255, 104, 61, 0.08);
  border-color: #FF6B00;
  color: #FF6B00;
}

.c-accordion {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  overflow: hidden;
}
.c-accordion__trigger {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 18px;
  color: #1c1c1c;
}
.c-accordion__q-label {
  color: #FF6B00;
  margin-right: 12px;
  font-size: 24px;
  font-family: "Montserrat", sans-serif;
}
.c-accordion__icon {
  color: #9ca3af;
  font-size: 20px;
  transition: transform 300ms ease-out;
}
.c-accordion__icon.is-open {
  transform: rotate(180deg);
}
.c-accordion__content {
  transition: max-height 300ms ease-in-out, opacity 300ms ease-in-out;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 24px;
  background: #ffffff;
}
.c-accordion__content.is-open {
  max-height: 200px;
  opacity: 1;
}
.c-accordion__answer {
  padding-bottom: 20px;
  color: #51565a;
  font-size: 15px;
  line-height: 1.6;
}

.c-tab-switch {
  display: inline-flex;
  background: #f7f6f5;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 9999px;
  padding: 4px;
  position: relative;
}
.c-tab-switch__button {
  position: relative;
  z-index: 10;
  padding: 12px 24px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 9999px;
  transition: all 300ms ease-out;
  white-space: nowrap;
}
@media (min-width: 640px) {
  .c-tab-switch__button {
    padding: 12px 56px;
    font-size: 14px;
  }
}
.c-tab-switch__button.is-active {
  color: #ffffff;
}
.c-tab-switch__button:not(.is-active) {
  color: #6b7280;
}
.c-tab-switch__button:not(.is-active):hover {
  color: #1c1c1c;
}
.c-tab-switch__bg {
  position: absolute;
  top: 4px;
  bottom: 4px;
  background: #1c1c1c;
  border-radius: 9999px;
  transition: all 300ms ease-out;
}

.p-hero {
  position: relative;
  padding-top: 144px;
  padding-bottom: 80px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-hero {
    padding-top: 160px;
    padding-bottom: 112px;
  }
}
.p-hero__inner {
  max-width: 1152px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  z-index: 10;
  text-align: center;
}
.p-hero__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 40px;
  color: #1c1c1c;
}
@media (min-width: 768px) {
  .p-hero__title {
    font-size: 68px;
  }
}
.p-hero__accent {
  color: #FF6B00;
}
.p-hero__lead {
  font-size: 18px;
  color: #51565a;
  font-weight: 400;
  margin-bottom: 48px;
  line-height: 1.6;
  max-width: 672px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .p-hero__lead {
    font-size: 20px;
  }
}
.p-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}
@media (min-width: 640px) {
  .p-hero__actions {
    flex-direction: row;
  }
}
.p-hero__actions .c-button--primary {
  border: 2px solid #FF6B00;
}
.p-hero__chat {
  max-width: 1080px;
  margin: 0 auto 56px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 24px;
  box-shadow: 0px 0.5px 1.3px rgba(0, 0, 0, 0.01), 0px 1.2px 3.1px rgba(0, 0, 0, 0.01), 0px 2.3px 5.8px rgba(0, 0, 0, 0.01), 0px 4px 10.5px rgba(0, 0, 0, 0.02), 0px 7.5px 19px rgba(0, 0, 0, 0.02), 0px 18px 47px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: transform 700ms ease-out;
}
.p-hero__chat:hover {
  transform: translateY(-0.5px);
}
.p-hero__chat-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  background: #f7f6f5;
}
.p-hero__chat-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.p-hero__chat-dot--red {
  background-color: #fca5a5;
}
.p-hero__chat-dot--yellow {
  background-color: #fcd34d;
}
.p-hero__chat-dot--green {
  background-color: #86efac;
}
.p-hero__chat-label {
  margin-left: 12px;
  font-size: 12px;
  color: #8a8a8a;
  font-family: "Montserrat", sans-serif;
}
.p-hero__chat-area {
  padding: 24px;
  text-align: left;
  min-height: 420px;
}
@media (min-width: 768px) {
  .p-hero__chat-area {
    padding: 32px;
    min-height: 450px;
  }
}
.p-hero__bubble-wrapper {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
}
.p-hero__bubble-wrapper.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.p-hero__bubble-wrapper + .p-hero__bubble-wrapper {
  margin-top: 20px;
}
.p-hero__bubble-wrapper--user {
  display: flex;
  justify-content: flex-end;
}
.p-hero__bubble-wrapper--claude {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.p-hero__bubble--user {
  background: #FFF0E5;
  color: #1c1c1c;
  border-radius: 16px;
  border-bottom-right-radius: 6px;
  padding: 14px 20px;
  max-width: 85%;
  font-size: 15px;
  line-height: 1.6;
}
.p-hero__bubble--claude {
  background: #f2f0ed;
  color: #1c1c1c;
  border-radius: 16px;
  border-top-left-radius: 6px;
  padding: 14px 20px;
  max-width: 85%;
  font-size: 15px;
  line-height: 1.6;
  white-space: pre-wrap;
}
.p-hero__bubble-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 107, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.p-hero__bubble-avatar i {
  color: #FF6B00;
  font-size: 14px;
}
.p-hero__typing {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 44px;
  color: #8a8a8a;
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.3s;
}
.p-hero__typing.is-visible {
  opacity: 1;
}
.p-hero__typing-dots {
  display: flex;
  gap: 4px;
}
.p-hero__typing-dot {
  width: 6px;
  height: 6px;
  background: #d1d5db;
  border-radius: 50%;
  animation: bounce 1s infinite;
}
.p-hero__typing-dot:nth-child(2) {
  animation-delay: 150ms;
}
.p-hero__typing-dot:nth-child(3) {
  animation-delay: 300ms;
}
.p-hero__ambient {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.p-hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.p-hero__blob--1 {
  top: -10%;
  left: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.25) 0%, rgba(255, 255, 255, 0) 70%);
  animation: blob 12s ease-in-out infinite alternate;
}
.p-hero__blob--2 {
  top: 40%;
  right: -20%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(255, 200, 168, 0.3) 0%, rgba(255, 255, 255, 0) 60%);
  animation: blobDrift 15s ease-in-out infinite alternate;
}
.p-hero__blob--3 {
  bottom: -20%;
  left: 20%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(255, 230, 212, 0.35) 0%, rgba(255, 255, 255, 0) 60%);
  animation: blob 12s ease-in-out infinite alternate;
}
.p-hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(128, 128, 128, 0.0509803922) 1px, transparent 1px), linear-gradient(to bottom, rgba(128, 128, 128, 0.0509803922) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, #000 70%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, #000 70%, transparent 100%);
}
.p-hero__bg-glow {
  background-image: radial-gradient(circle at 50% 0%, rgba(255, 107, 0, 0.03) 0%, transparent 60%);
}

@keyframes blob {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }
  100% {
    transform: translate(30px, -20px) scale(1.08);
    opacity: 0.6;
  }
}
@keyframes blobDrift {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }
  100% {
    transform: translate(-20px, 25px) scale(1.05);
    opacity: 0.55;
  }
}
@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-hero__blob {
    animation: none !important;
  }
}
.p-about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .p-about__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-about__card-wrapper {
  position: relative;
  padding-top: 24px;
}
.p-about__number {
  position: absolute;
  top: -32px;
  right: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 72px;
  color: #e5e7eb;
  z-index: 0;
  line-height: 1;
  user-select: none;
}
.p-about__card {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0px 0.5px 1.3px rgba(0, 0, 0, 0.01), 0px 1.2px 3.1px rgba(0, 0, 0, 0.01), 0px 2.3px 5.8px rgba(0, 0, 0, 0.01), 0px 4px 10.5px rgba(0, 0, 0, 0.02), 0px 7.5px 19px rgba(0, 0, 0, 0.02), 0px 18px 47px rgba(0, 0, 0, 0.03);
  text-align: center;
  height: 100%;
}
.p-about__icon-box {
  width: 64px;
  height: 64px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF6B00;
  margin: 0 auto 24px;
}
.p-about__icon-box i {
  font-size: 36px;
}
.p-about__badge {
  color: #FF6B00;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}
.p-about__title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1c1c1c;
}
.p-about__text {
  color: #51565a;
  font-size: 15px;
  line-height: 1.6;
  text-align: left;
}

.p-features__list {
  display: flex;
  flex-direction: column;
  gap: 96px;
}
.p-features__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
@media (min-width: 768px) {
  .p-features__item {
    flex-direction: row;
  }
}
@media (min-width: 1024px) {
  .p-features__item {
    gap: 64px;
  }
}
@media (min-width: 768px) {
  .p-features__item--reverse {
    flex-direction: row-reverse;
  }
}
.p-features__content {
  width: 100%;
}
@media (min-width: 768px) {
  .p-features__content {
    width: 50%;
  }
}
.p-features__number {
  font-family: "Montserrat", sans-serif;
  color: rgba(255, 107, 0, 0.3);
  font-weight: 700;
  font-size: 48px;
  margin-bottom: 8px;
}
.p-features__title {
  font-size: 24px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 24px;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .p-features__title {
    font-size: 36px;
  }
}
.p-features__text {
  color: #292929;
  font-size: 17px;
  line-height: 1.8;
}
.p-features__image {
  width: 100%;
}
@media (min-width: 768px) {
  .p-features__image {
    width: 50%;
  }
}
.p-features__image-inner {
  aspect-ratio: 4/3;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.07);
}
.p-features__image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-usecases__lead {
  font-size: 16px;
  color: #51565a;
  font-weight: 400;
  margin-bottom: 32px;
}
.p-usecases__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  transition: opacity 300ms ease-out;
}
@media (min-width: 768px) {
  .p-usecases__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-usecases__grid.is-hidden {
  display: none;
}
.p-usecases__grid.is-fade-out {
  opacity: 0;
}
.p-usecases__grid.is-fade-in {
  opacity: 1;
}

.p-pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
@media (min-width: 768px) {
  .p-pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .p-pricing__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.p-pricing__card {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.p-pricing__card.c-card--recommended {
  border: 2px solid #FF6B00;
  box-shadow: 0 0 40px rgba(255, 107, 0, 0.15);
  position: relative;
}
.p-pricing__plan-name {
  font-size: 20px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 4px;
  font-family: "Montserrat", sans-serif;
}
.p-pricing__price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
}
.p-pricing__price {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: #1c1c1c;
}
.p-pricing__price-unit {
  color: #51565a;
  font-size: 14px;
}
.p-pricing__description {
  color: #6b7280;
  font-size: 13px;
  margin-bottom: 24px;
  min-height: 40px;
}
.p-pricing__features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.p-pricing__feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: #1c1c1c;
}
.p-pricing__feature i {
  color: #FF6B00;
  margin-top: 2px;
  flex-shrink: 0;
}
.p-pricing__feature--bold {
  font-weight: 700;
}
.p-pricing__cta {
  margin-top: auto;
}
.p-pricing__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #FF6B00;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 9999px;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.p-pricing__note {
  text-align: center;
  color: #51565a;
  font-size: 14px;
  margin-top: 48px;
}
.p-pricing__note a {
  color: #FF6B00;
  text-decoration: underline;
}
.p-pricing__note a:hover {
  color: #ec580a;
}

.p-faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.p-cta__bg-glow {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 50%, rgba(255, 107, 0, 0.05) 0%, transparent 50%);
  opacity: 0.5;
}
.p-cta__bg-dots {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 24px 24px;
}
.p-cta__inner {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  text-align: center;
  position: relative;
  z-index: 10;
}
.p-cta__title {
  font-size: 30px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .p-cta__title {
    font-size: 46px;
  }
}
.p-cta__lead {
  color: #9ca3af;
  font-weight: 500;
  margin-bottom: 40px;
  font-size: 18px;
}

.p-marquee {
  padding: 40px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  background: #f7f6f5;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.p-marquee__row {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.p-marquee__row:hover .p-marquee__track {
  animation-play-state: paused;
}
.p-marquee__track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee-scroll 60s linear infinite;
}
.p-marquee__track--reverse {
  animation-name: marquee-scroll-reverse;
  animation-duration: 55s;
}
.p-marquee__track--slow {
  animation-duration: 70s;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes marquee-scroll-reverse {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-marquee__track {
    animation: none !important;
  }
}
.u-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}
.u-reveal.is-active {
  opacity: 1;
  transform: translateY(0);
}
.u-reveal--delay-1 {
  transition-delay: 100ms;
}
.u-reveal--delay-2 {
  transition-delay: 200ms;
}
.u-reveal--delay-3 {
  transition-delay: 300ms;
}

.u-text-center {
  text-align: center;
}

.u-hidden {
  display: none;
}

.u-block-md {
  display: none;
}
@media (min-width: 768px) {
  .u-block-md {
    display: block;
  }
}

.u-overflow-hidden {
  overflow: hidden;
}

.u-no-scrollbar::-webkit-scrollbar {
  display: none;
}
.u-no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
