:root {
  --ink: #101820;
  --muted: #5f6b76;
  --line: #d8e0df;
  --paper: #ffffff;
  --soft: #f6f8f3;
  --brand: #071f57;
  --brand-2: #12366f;
  --accent: #dfff12;
  --accent-soft: #f1ff9c;
  --accent-deep: #9fb300;
  --charcoal: #202326;
  --shadow: 0 14px 40px rgba(16, 24, 32, 0.10);
  --radius: 8px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.75;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcf6 100%);
}

img,
iframe {
  max-width: 100%;
}

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

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(7, 31, 87, 0.12);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 230px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--accent);
  box-shadow: 0 8px 18px rgba(7, 31, 87, 0.12);
  overflow: hidden;
}

.brand-mark img {
  width: auto;
  height: 42px;
  max-width: none;
  display: block;
  object-fit: contain;
  transform: scale(1.28);
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-name {
  color: var(--brand);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0;
}

.brand-tagline {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.16em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  color: var(--charcoal);
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.24s ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--brand);
}

.nav a:hover {
  transform: translateY(-1px);
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  font-size: 22px;
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: var(--brand);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 78% 24%, rgba(223, 255, 18, 0.18), rgba(223, 255, 18, 0) 28%),
    linear-gradient(90deg, rgba(5, 18, 48, 0.94), rgba(7, 31, 87, 0.78) 55%, rgba(7, 31, 87, 0.36));
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  background: var(--hero-image) center / cover no-repeat;
  transition: opacity 0.8s ease, transform 6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 730px;
  padding: 72px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-copy {
  white-space: nowrap;
}

.hero-copy span {
  display: inline;
}

.hero p {
  max-width: 640px;
  margin: 22px 0 0;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
}

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

.hero-dots {
  display: flex;
  gap: 10px;
  margin-top: 34px;
}

.hero-dots button {
  width: 34px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
}

.hero-dots button.is-active {
  background: var(--accent);
}

.trial-banner {
  position: relative;
  z-index: 3;
  margin-top: -24px;
}

.trial-banner-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) auto;
  gap: 16px;
  align-items: center;
  padding: 12px 16px;
  border: 2px solid rgba(223, 255, 18, 0.68);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 12%, rgba(223, 255, 18, 0.50), rgba(223, 255, 18, 0) 34%),
    linear-gradient(145deg, #ffffff, #fbffe8 72%);
  box-shadow: 0 14px 34px rgba(7, 31, 87, 0.12);
  color: var(--brand);
  overflow: hidden;
  animation: banner-rise 0.7s ease both;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.trial-banner-inner::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -35%;
  width: 28%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(223, 255, 18, 0.30), rgba(255, 255, 255, 0));
  transform: rotate(14deg);
  animation: banner-shine 4.8s ease-in-out infinite;
  pointer-events: none;
}

.trial-banner-inner:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(7, 31, 87, 0.16);
}

.trial-banner-copy h2 {
  margin: 0;
  color: var(--brand);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.25;
}

.trial-banner-copy {
  position: relative;
  z-index: 1;
}

.trial-banner-copy p {
  max-width: 720px;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.trial-banner-badge {
  display: inline-flex;
  margin: 0 0 5px !important;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--brand) !important;
  font-size: 11px;
  font-weight: 900;
  animation: badge-glow 2.8s ease-in-out infinite;
}

.trial-banner-panel {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(7, 31, 87, 0.10);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  transition: transform 0.25s ease, background 0.25s ease;
}

.trial-banner-inner:hover .trial-banner-panel {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.88);
}

.trial-banner-price {
  margin: 0;
  color: var(--brand);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 900;
  line-height: 1;
}

.trial-banner-price span {
  margin-left: 5px;
  color: var(--muted);
  font-size: 12px;
}

.trial-banner-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 0;
}

.trial-banner-specs span {
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(223, 255, 18, 0.42);
  color: var(--brand);
  font-size: 11px;
  font-weight: 800;
}

.trial-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 0;
}

.trial-banner-actions .button {
  min-height: 38px;
  padding: 8px 12px;
  font-size: 13px;
}

.trial-banner-actions .button.secondary {
  background: #fff;
  border-color: rgba(7, 31, 87, 0.18);
  color: var(--brand);
  box-shadow: 0 8px 18px rgba(7, 31, 87, 0.08);
}

@keyframes banner-rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes banner-shine {
  0%,
  52% {
    transform: translateX(0) rotate(14deg);
    opacity: 0;
  }
  62% {
    opacity: 1;
  }
  100% {
    transform: translateX(620%) rotate(14deg);
    opacity: 0;
  }
}

@keyframes badge-glow {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(223, 255, 18, 0);
  }
  50% {
    box-shadow: 0 0 18px rgba(223, 255, 18, 0.34);
  }
}

@media (prefers-reduced-motion: reduce) {
  .trial-banner-inner,
  .trial-banner-inner::after,
  .trial-banner-badge {
    animation: none;
  }

  .trial-banner-inner,
  .trial-banner-panel {
    transition: none;
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(7, 31, 87, 0.18);
}

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

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(223, 255, 18, 0.62);
  color: #fff;
}

.button.secondary.dark {
  background: #fff;
  border-color: rgba(7, 31, 87, 0.24);
  color: var(--brand);
}

.button.light {
  background: var(--accent);
  color: var(--brand);
}

.section {
  padding: 82px 0;
}

.section.soft {
  background: var(--soft);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-head h2,
.page-section h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.25;
}

.section-head h2::after,
.page-section h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 5px;
  margin-top: 14px;
  border-radius: 999px;
  background: var(--accent);
}

.section-head p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 2px 0 rgba(16, 24, 32, 0.04);
  overflow: hidden;
}

.card:hover {
  border-color: rgba(7, 31, 87, 0.24);
}

.card-body {
  padding: 24px;
}

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

.card p {
  margin: 0;
  color: var(--muted);
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0b1c2b;
  overflow: hidden;
}

.video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.youtube-thumb {
  appearance: none;
  width: 100%;
  height: 100%;
  display: block;
  padding: 0;
  border: 0;
  background: #0b1c2b;
  cursor: pointer;
  text-align: left;
}

.youtube-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.youtube-thumb:hover img {
  transform: scale(1.03);
  opacity: 0.88;
}

.sample-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  background: #0b1c2b;
  overflow: hidden;
}

.sample-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 31, 87, 0), rgba(7, 31, 87, 0.34)),
    radial-gradient(circle at 88% 12%, rgba(223, 255, 18, 0.24), rgba(223, 255, 18, 0) 32%);
  pointer-events: none;
}

.sample-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.sample-thumb:hover img {
  transform: scale(1.03);
  opacity: 0.88;
}

.thumb-label {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.sample-thumb .play-mark {
  z-index: 2;
}

.work-card .youtube-thumb,
.work-card .sample-thumb {
  cursor: pointer;
}

.work-card .card-body::after {
  content: "詳しく見る";
  display: inline-flex;
  margin-top: 16px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(223, 255, 18, 0.38);
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
}

.work-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  gap: 28px;
  align-items: start;
}

.work-detail-player {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  background: #101820;
  box-shadow: 0 18px 44px rgba(7, 31, 87, 0.16);
}

.work-detail-player img,
.work-detail-player iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  object-fit: cover;
}

.work-detail-player .thumb-label {
  left: 18px;
  top: 18px;
}

.work-detail-info {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(16, 24, 32, 0.06);
}

.work-detail-info h2 {
  margin: 0 0 18px;
  color: var(--brand);
  font-size: 24px;
}

.work-modal-points {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.work-modal-points li {
  position: relative;
  padding-left: 22px;
  color: var(--brand);
  font-weight: 800;
}

.work-modal-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(223, 255, 18, 0.24);
}

.work-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.work-detail-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.play-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 62px;
  height: 62px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(223, 255, 18, 0.94);
  box-shadow: var(--shadow);
}

.play-mark::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 19px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--brand);
}

.channel-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
  padding: 26px;
  border: 1px solid rgba(7, 31, 87, 0.14);
  border-left: 6px solid var(--accent);
  border-radius: var(--radius);
  background: #fff;
}

.channel-box p {
  margin: 6px 0 0;
  color: var(--muted);
}

.service-card {
  padding: 28px;
}

.service-card .number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--brand);
  font-weight: 800;
}

.visual-service {
  position: relative;
  padding: 28px;
  overflow: hidden;
}

.service-photo {
  position: relative;
  margin: -28px -28px 22px;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  overflow: hidden;
  background: #101820;
}

.service-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.service-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 31, 87, 0), rgba(7, 31, 87, 0.38)),
    radial-gradient(circle at 86% 14%, rgba(223, 255, 18, 0.34), rgba(223, 255, 18, 0) 30%);
}

.visual-service:hover .service-photo img {
  transform: scale(1.04);
}

.service-photo .number {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 1;
  margin: 0;
  background: var(--accent);
  box-shadow: 0 8px 20px rgba(16, 24, 32, 0.10);
}

.service-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(223, 255, 18, 0.36);
  color: var(--brand) !important;
  font-size: 13px;
  font-weight: 800;
}

.service-points {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  color: var(--brand);
  font-size: 14px;
  font-weight: 800;
}

.service-points li {
  position: relative;
  padding-left: 20px;
}

.service-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(223, 255, 18, 0.22);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 40px;
  overflow: hidden;
  border-radius: var(--radius);
}

.stat {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.stat strong {
  display: block;
  font-size: 24px;
  color: var(--brand);
}

.stat span {
  color: var(--muted);
  font-size: 14px;
}

.visual-stat {
  display: grid;
  gap: 14px;
  box-shadow: 0 12px 30px rgba(16, 24, 32, 0.06);
}

.visual-stat img {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  border-radius: var(--radius);
}

.visual-stat h3 {
  margin: 4px 0 8px;
  color: var(--brand);
  font-size: 18px;
}

.visual-stat p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.price-card {
  position: relative;
  padding: 28px;
}

.price-grid {
  margin-top: 20px;
}

.card-photo {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  background: #101820;
  margin: -28px -28px 22px;
}

.card-photo img,
.plan-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.card-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 31, 87, 0), rgba(7, 31, 87, 0.10));
}

.trial-group {
  position: relative;
  margin-bottom: 34px;
  padding: 26px;
  border: 2px solid rgba(223, 255, 18, 0.72);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 12%, rgba(223, 255, 18, 0.36), rgba(223, 255, 18, 0) 34%),
    linear-gradient(180deg, #ffffff, #fbfff0);
  box-shadow: 0 18px 44px rgba(7, 31, 87, 0.10);
}

.trial-group[id],
.price-card[id] {
  scroll-margin-top: 96px;
}

.trial-group.trial-compact {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(340px, 1.1fr);
  align-items: stretch;
  gap: 24px;
  padding: 30px;
  border-width: 2px;
  background:
    radial-gradient(circle at 90% 10%, rgba(223, 255, 18, 0.46), rgba(223, 255, 18, 0) 34%),
    linear-gradient(145deg, #ffffff, #f9ffe8 66%);
  box-shadow: 0 22px 48px rgba(7, 31, 87, 0.14);
}

.trial-group::before {
  content: "FIRST TRIAL";
  position: absolute;
  right: 20px;
  top: -14px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.standard-group {
  margin-top: 34px;
  padding: 30px;
  border: 1px solid rgba(223, 255, 18, 0.28);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 8%, rgba(223, 255, 18, 0.16), rgba(223, 255, 18, 0) 28%),
    linear-gradient(145deg, #071f57, #101820 72%);
  box-shadow: 0 22px 48px rgba(7, 31, 87, 0.22);
}

.standard-intro {
  margin-bottom: 20px;
}

.standard-intro h3 {
  margin: 0 0 8px;
  font-size: clamp(22px, 3vw, 30px);
  color: #fff;
}

.standard-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.trial-intro {
  margin-bottom: 0;
  padding-right: 130px;
}

.trial-compact .trial-intro {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  padding-right: 0;
}

.trial-intro h3 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 32px);
}

.trial-intro p {
  max-width: 640px;
}

.trial-grid {
  margin-bottom: 0;
}

.trial-single {
  max-width: 640px;
}

.trial-compact .trial-single,
.trial-compact .trial-option {
  max-width: none;
}

.trial-compact .card-photo {
  aspect-ratio: 16 / 8.5;
}

.trial-compact .price-card {
  border-color: rgba(7, 31, 87, 0.24);
  box-shadow: 0 18px 40px rgba(7, 31, 87, 0.13);
}

.trial-option {
  background:
    radial-gradient(circle at 88% 16%, rgba(223, 255, 18, 0.26), rgba(223, 255, 18, 0) 30%),
    #fff;
  border-color: rgba(7, 31, 87, 0.18);
}

.standard-group .price-card {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.standard-group .price-card.featured {
  border-color: rgba(223, 255, 18, 0.55);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.24);
}

.price-card.featured {
  border-color: rgba(7, 31, 87, 0.32);
  box-shadow: 0 16px 42px rgba(7, 31, 87, 0.12);
}

.price-card.compact {
  min-height: 190px;
}

.price-card.wide {
  height: 100%;
}

.price-head {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.price-kicker {
  margin: 0 0 8px;
  color: var(--brand) !important;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.standard-group .standard-intro .price-kicker {
  color: var(--accent) !important;
}

.price-card h3 {
  margin-bottom: 14px;
}

.price {
  margin: 0;
  color: var(--brand) !important;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.1;
}

.price span {
  margin-left: 4px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.plan-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0;
}

.plan-specs span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(7, 31, 87, 0.12);
  border-radius: 999px;
  background: rgba(223, 255, 18, 0.22);
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
}

.price-badge {
  position: absolute;
  right: 18px;
  top: 18px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
}

.price-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.price-list li {
  position: relative;
  padding-left: 22px;
}

.price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(223, 255, 18, 0.24);
}

.price-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.plan-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--brand);
  font-weight: 900;
  box-shadow: inset 0 -0.45em 0 rgba(223, 255, 18, 0.38);
}

.flow-overview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 42px;
}

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

.flow-overview-card {
  display: grid;
  gap: 8px;
  min-height: 170px;
  padding: 24px;
  border: 1px solid rgba(7, 31, 87, 0.14);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(16, 24, 32, 0.07);
}

.flow-overview-card span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.flow-overview-card strong {
  color: var(--brand);
  font-size: 24px;
  line-height: 1.25;
}

.flow-overview-card small {
  color: var(--muted);
  font-size: 14px;
}

.flow-overview-card.trial {
  border-color: rgba(223, 255, 18, 0.86);
  background:
    radial-gradient(circle at 86% 12%, rgba(223, 255, 18, 0.56), rgba(223, 255, 18, 0) 38%),
    linear-gradient(145deg, #ffffff, #fbffe8 74%);
  box-shadow: 0 18px 42px rgba(7, 31, 87, 0.12);
}

.flow-overview-card.standard {
  border-color: rgba(7, 31, 87, 0.12);
  background:
    radial-gradient(circle at 88% 14%, rgba(7, 31, 87, 0.06), rgba(7, 31, 87, 0) 34%),
    #fff;
  box-shadow: 0 10px 28px rgba(16, 24, 32, 0.05);
}

.flow-overview-card.standard span {
  color: var(--brand);
}

.flow-overview-card.standard strong {
  color: var(--brand);
}

.flow-overview-card.standard small {
  color: var(--muted);
}

.flow-overview-card.support {
  border-color: rgba(7, 31, 87, 0.24);
  background:
    radial-gradient(circle at 88% 14%, rgba(7, 31, 87, 0.08), rgba(7, 31, 87, 0) 32%),
    #fff;
}

.flow-group-title {
  margin: 46px 0 20px;
  padding: 26px;
  border-radius: var(--radius);
}

.flow-group-title h2 {
  margin: 0 0 8px;
  font-size: clamp(26px, 4vw, 38px);
}

.flow-group-title p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
}

.trial-title {
  border: 2px solid rgba(223, 255, 18, 0.72);
  background:
    radial-gradient(circle at 92% 18%, rgba(223, 255, 18, 0.50), rgba(223, 255, 18, 0) 34%),
    linear-gradient(145deg, #ffffff, #fbffe8 72%);
  box-shadow: 0 16px 40px rgba(7, 31, 87, 0.10);
}

.trial-title h2 {
  color: var(--brand);
}

.standard-title {
  color: var(--brand);
  border-left: 6px solid rgba(7, 31, 87, 0.16);
  background:
    radial-gradient(circle at 88% 20%, rgba(7, 31, 87, 0.06), rgba(7, 31, 87, 0) 34%),
    #fff;
  box-shadow: 0 10px 28px rgba(16, 24, 32, 0.05);
}

.standard-title .price-kicker,
.standard-title h2 {
  color: var(--brand) !important;
}

.standard-title p {
  color: var(--muted);
}

.support-title {
  color: #fff;
  background:
    radial-gradient(circle at 88% 20%, rgba(223, 255, 18, 0.20), rgba(223, 255, 18, 0) 34%),
    var(--brand);
}

.support-title .price-kicker,
.support-title h2 {
  color: #fff !important;
}

.support-title p {
  color: rgba(255, 255, 255, 0.78);
}

.plan-detail {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr;
  gap: 26px;
  align-items: start;
  margin-bottom: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  scroll-margin-top: 96px;
}

.plan-detail.trial-plan {
  border: 2px solid rgba(223, 255, 18, 0.72);
  background:
    radial-gradient(circle at 90% 10%, rgba(223, 255, 18, 0.44), rgba(223, 255, 18, 0) 34%),
    linear-gradient(180deg, #ffffff, #fbffe8);
  box-shadow: 0 20px 46px rgba(7, 31, 87, 0.12);
}

.plan-detail.standard-plan {
  border-color: rgba(7, 31, 87, 0.12);
  box-shadow: 0 10px 28px rgba(16, 24, 32, 0.05);
}

.plan-detail.support-plan {
  border-color: rgba(7, 31, 87, 0.28);
}

.plan-summary {
  position: sticky;
  top: 96px;
}

.plan-photo {
  aspect-ratio: 16 / 10;
  margin-bottom: 18px;
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(16, 24, 32, 0.10);
}

.plan-summary h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.3;
}

.plan-summary p:last-child {
  color: var(--muted);
}

.plan-steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: plan-step;
}

.plan-steps li {
  position: relative;
  padding: 18px 18px 18px 62px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.plan-steps li::before {
  counter-increment: plan-step;
  content: counter(plan-step);
  position: absolute;
  left: 18px;
  top: 18px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--brand);
  font-weight: 900;
}

.plan-steps strong {
  display: block;
  color: var(--brand);
  font-size: 17px;
}

.plan-steps span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
}

.prepare-box {
  grid-column: 2;
  padding: 20px;
  border-left: 5px solid var(--accent);
  border-radius: var(--radius);
  background: #fdfef7;
}

.prepare-box h3 {
  margin: 0 0 6px;
}

.prepare-box p {
  margin: 0;
  color: var(--muted);
}

.cta {
  color: #fff;
  background:
    radial-gradient(circle at 86% 40%, rgba(223, 255, 18, 0.24), rgba(223, 255, 18, 0) 28%),
    linear-gradient(90deg, var(--brand), #10284f);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 58px 0;
}

.cta h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 4vw, 38px);
}

.cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.page-hero {
  padding: 84px 0;
  color: #fff;
  background:
    radial-gradient(circle at 84% 36%, rgba(223, 255, 18, 0.25), rgba(223, 255, 18, 0) 30%),
    linear-gradient(90deg, var(--brand), #10284f);
}

.page-hero p {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.page-section {
  padding: 72px 0;
}

.about-photo {
  position: relative;
  margin: 0 0 34px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  background: #101820;
  box-shadow: 0 18px 44px rgba(7, 31, 87, 0.14);
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 31, 87, 0), rgba(7, 31, 87, 0.18)),
    radial-gradient(circle at 88% 12%, rgba(223, 255, 18, 0.22), rgba(223, 255, 18, 0) 32%);
  pointer-events: none;
}

.about-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-grid {
  align-items: start;
}

.list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.flow {
  counter-reset: step;
}

.flow li {
  position: relative;
  padding-left: 56px;
}

.flow li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 12px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--brand);
  font-weight: 800;
}

.contact-box {
  padding: 30px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-result {
  max-width: 760px;
  margin-inline: auto;
}

.form-result h2 {
  margin: 0 0 10px;
  color: var(--brand);
}

.form-result p {
  margin: 0;
  color: var(--muted);
}

.form-result-success {
  border-color: rgba(223, 255, 18, 0.72);
  background:
    radial-gradient(circle at 92% 12%, rgba(223, 255, 18, 0.30), rgba(223, 255, 18, 0) 34%),
    #fff;
}

.form-result-error {
  border-color: rgba(150, 40, 40, 0.22);
}

.field label {
  display: block;
  margin-bottom: 6px;
  font-weight: 800;
}

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

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #cfd9e1;
  border-radius: var(--radius);
  font: inherit;
  background: #fff;
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.voice-input {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.voice-button {
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid var(--brand);
  border-radius: var(--radius);
  background: #fff;
  color: var(--brand);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.voice-button.is-recording {
  background: var(--brand);
  color: #fff;
}

.voice-status {
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.footer-nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-mark img {
    height: 38px;
  }

  .brand-name {
    font-size: 18px;
  }

  .brand-tagline {
    font-size: 9px;
  }

  .hero {
    min-height: 560px;
  }

  .hero-content {
    padding: 58px 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(31px, 9vw, 42px);
  }

  .hero-copy {
    white-space: normal;
  }

  .hero-copy span {
    display: block;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-actions .button,
  .trial-banner-actions .button,
  .section-actions .button,
  .cta .button,
  .work-modal-actions .button,
  .contact-form .button {
    width: 100%;
    min-height: 52px;
  }

  .trial-banner {
    margin-top: -18px;
  }

  .trial-banner-inner {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .trial-banner-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .trial-banner-actions {
    width: 100%;
  }

  .work-detail-layout {
    grid-template-columns: 1fr;
  }

  .work-detail-info {
    padding: 24px;
  }

  .section,
  .page-section {
    padding: 54px 0;
  }

  .card-body,
  .contact-box,
  .price-card {
    padding: 22px;
  }

  .card-photo {
    margin: -22px -22px 18px;
  }

  .trial-group,
  .trial-group.trial-compact,
  .standard-group {
    padding: 22px;
  }

  .plan-specs span {
    border-radius: var(--radius);
  }

  .section-head,
  .cta-inner,
  .footer-inner,
  .channel-box {
    display: block;
  }

  .plan-detail {
    grid-template-columns: 1fr;
  }

  .flow-overview {
    grid-template-columns: 1fr;
  }

  .trial-group.trial-compact {
    grid-template-columns: 1fr;
  }

  .trial-intro {
    padding-right: 0;
  }

  .plan-summary {
    position: static;
  }

  .prepare-box {
    grid-column: auto;
  }

  .section-head p,
  .cta p,
  .channel-box .button {
    margin-top: 12px;
  }


  .grid.three,
  .grid.two,
  .stats {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    flex-wrap: wrap;
    margin-top: 20px;
    gap: 10px 16px;
  }
}

@media (max-width: 520px) {
  .header-inner {
    min-height: 70px;
  }

  .hero {
    min-height: 520px;
  }

  .trial-banner-panel {
    gap: 10px;
  }

  .trial-banner-price {
    font-size: 26px;
  }

  .work-card .card-body::after {
    margin-top: 14px;
  }

  .work-detail-info,
  .contact-box,
  .trial-group,
  .trial-group.trial-compact,
  .standard-group {
    padding: 18px;
  }

  .price-card {
    padding: 20px;
  }

  .card-photo {
    margin: -20px -20px 18px;
  }

  .price {
    font-size: 32px;
  }

  .site-footer {
    padding: 34px 0;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
