:root {
  --primary: #0066ff;
  --primary-strong: #0054d1;
  --primary-heavy: #003e9c;
  --primary-soft: #eaf2fe;
  --primary-pale: #f7fbff;
  --label-normal: #171719;
  --label-strong: #292a2d;
  --label-neutral: #46474c;
  --label-alternative: #70737c;
  --label-assistive: #989ba2;
  --line-normal: #e1e2e4;
  --line-neutral: #eaebec;
  --line-alternative: #f4f4f5;
  --background: #ffffff;
  --background-alt: #f7f7f8;
  --fill-normal: rgba(112, 115, 124, 0.08);
  --fill-strong: rgba(112, 115, 124, 0.16);
  --cyan: #00b8d9;
  --violet: #7c5cff;
  --pink: #f04495;
  --red: #f04452;
  --green: #00bf40;
  --orange: #ff9200;
  --shadow-small: 0 2px 4px -2px rgba(23, 23, 25, 0.06), 0 4px 6px -1px rgba(23, 23, 25, 0.06);
  --shadow-medium: 0 4px 6px -2px rgba(23, 23, 25, 0.07), 0 10px 15px -3px rgba(23, 23, 25, 0.07);
  --shadow-large: 0 6px 10px -4px rgba(23, 23, 25, 0.08), 0 16px 24px -6px rgba(23, 23, 25, 0.08);
  --radius-small: 8px;
  --radius-medium: 12px;
  --radius-large: 20px;
  --radius-xlarge: 28px;
  --header-height: 72px;
  --container: 1100px;
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@property --border-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@view-transition {
  navigation: auto;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  color: var(--label-normal);
  background: var(--background);
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.0057em;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

::view-transition-old(root) {
  animation: page-view-out 180ms ease both;
}

::view-transition-new(root) {
  animation: page-view-in 440ms var(--motion-ease) both;
}

@keyframes page-view-out {
  to {
    opacity: 0;
    transform: translateY(-4px);
  }
}

@keyframes page-view-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.page-transition-fallback body > main {
  animation: page-view-in 440ms var(--motion-ease) both;
}

.page-transition-fallback body > main,
.page-transition-fallback body > footer {
  transition: opacity 150ms ease, transform 150ms ease;
}

.page-transition-fallback body.page-leaving > main,
.page-transition-fallback body.page-leaving > footer {
  opacity: 0;
  transform: translateY(-4px);
}

body.dialog-open {
  overflow: hidden;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

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

button {
  border: 0;
  cursor: pointer;
}

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 16px;
  color: #fff;
  background: var(--primary);
  border-radius: var(--radius-small);
  transform: translateY(-150%);
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.planning-notice {
  color: #fff;
  background: #171719;
}

.planning-notice-inner {
  display: flex;
  width: min(calc(100% - 40px), var(--container));
  min-height: 44px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.planning-notice p {
  display: flex;
  margin: 0;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
}

.planning-notice strong {
  display: inline-flex;
  min-height: 24px;
  padding: 0 9px;
  color: #fff;
  background: var(--primary);
  border-radius: 6px;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.planning-notice a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.planning-notice a:hover {
  color: #9ec5ff;
}

.planning-notice svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(225, 226, 228, 0.8);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-small);
}

.header-inner {
  display: flex;
  width: min(calc(100% - 40px), var(--container));
  height: 100%;
  margin: 0 auto;
  align-items: center;
}

.brand {
  position: relative;
  display: inline-flex;
  min-width: 142px;
  flex-direction: column;
  color: var(--label-normal);
  line-height: 1;
}

.brand-main {
  position: relative;
  width: max-content;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-ai {
  position: absolute;
  top: -4px;
  right: -25px;
  color: var(--primary);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-by {
  margin-top: 4px;
  color: var(--label-assistive);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.desktop-nav {
  display: flex;
  margin: 0 auto;
  gap: 32px;
  align-items: center;
}

.desktop-nav a {
  position: relative;
  padding: 25px 0;
  color: var(--label-neutral);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.0145em;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--label-normal);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.0096em;
  transition:
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

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

.button:focus-visible,
.menu-button:focus-visible,
.view-switch button:focus-visible,
.problem-tab:focus-visible,
.accordion button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(0, 102, 255, 0.22);
  outline-offset: 2px;
}

.button svg {
  width: 18px;
  height: 18px;
}

.button-primary {
  color: #fff;
  background: var(--primary);
}

.button-primary:hover {
  background: var(--primary-strong);
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.2);
}

.button-outline {
  color: var(--label-strong);
  background: #fff;
  border-color: var(--line-normal);
}

.button-outline:hover {
  background: var(--background-alt);
  border-color: var(--label-assistive);
}

.button-danger {
  color: #fff;
  background: var(--red);
}

.button-danger-ghost {
  color: var(--red);
  background: #fff;
  border-color: rgba(240, 68, 82, 0.3);
}

.button-white {
  color: var(--primary);
  background: #fff;
}

.button-white:hover {
  box-shadow: var(--shadow-large);
}

.button-large {
  min-height: 56px;
  padding: 0 24px;
  border-radius: var(--radius-medium);
  font-size: 16px;
}

.button-small {
  min-height: 38px;
  padding: 0 14px;
  border-radius: var(--radius-small);
  font-size: 13px;
}

.button-full {
  width: 100%;
}

.header-cta {
  min-height: 44px;
  padding: 0 17px;
  font-size: 14px;
}

.header-cta svg {
  width: 17px;
  height: 17px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  background: transparent;
  border-radius: var(--radius-small);
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  background: var(--label-normal);
  border-radius: 1px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  position: absolute;
  top: var(--header-height);
  right: 0;
  left: 0;
  padding: 12px 20px 24px;
  background: #fff;
  border-bottom: 1px solid var(--line-normal);
  box-shadow: var(--shadow-medium);
}

.planning-banner {
  padding: 38px 0;
}

.article-page .planning-banner,
.price-page-section .planning-banner {
  margin: 64px 0 0;
}

.portfolio-list-section .planning-banner {
  padding: 30px 0 42px;
}

.article-page .planning-banner .container,
.price-page-section .planning-banner .container,
.portfolio-list-section .planning-banner .container {
  width: 100%;
}

.planning-banner-card {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 184px;
  padding: 38px 42px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 20%, rgba(99, 157, 255, 0.42), transparent 32%),
    linear-gradient(120deg, #002b6d, #0055d4 58%, #1672ff);
  border-radius: 24px;
  box-shadow: 0 20px 46px rgba(0, 76, 190, 0.2);
  grid-template-columns: 72px minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
}

.planning-banner-card::after {
  position: absolute;
  top: -80px;
  right: 16%;
  width: 210px;
  height: 210px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.planning-banner-icon {
  display: flex;
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.planning-banner-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.planning-banner-copy > span {
  color: #bcd6ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.planning-banner-copy h2 {
  margin: 8px 0 9px;
  font-size: 25px;
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.planning-banner-copy p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.7;
}

.planning-download-button {
  display: inline-flex;
  position: relative;
  z-index: 1;
  min-width: 218px;
  min-height: 64px;
  padding: 0 20px;
  color: var(--primary);
  background: #fff;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0, 35, 88, 0.2);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.planning-download-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 35, 88, 0.28);
}

.planning-download-button svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.planning-download-button span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.planning-download-button small {
  color: var(--label-assistive);
  font-size: 10px;
  font-weight: 600;
}

@keyframes border-orbit {
  to {
    --border-angle: 360deg;
  }
}

@keyframes portfolio-card-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.992);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes content-refresh {
  from {
    opacity: 0;
    transform: translateY(7px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

:is(
  .feature-card,
  .service-link-card,
  .search-card,
  .price-main-card,
  .option-card,
  .article-lead,
  .answer-box,
  .problem-panel,
  .check-card-list > div
) {
  position: relative;
  isolation: isolate;
  --border-color-one: #0066ff;
  --border-color-two: #7c5cff;
}

:is(
  .feature-card,
  .service-link-card,
  .search-card,
  .price-main-card,
  .option-card,
  .article-lead,
  .answer-box,
  .problem-panel,
  .check-card-list > div
)::before,
.portfolio-thumbnail::before {
  position: absolute;
  inset: -1px;
  z-index: 3;
  padding: 2px;
  content: "";
  opacity: 0;
  background: conic-gradient(
    from var(--border-angle),
    transparent 0deg 195deg,
    var(--border-color-one, #0066ff) 225deg,
    var(--border-color-two, #7c5cff) 270deg,
    #00b8d9 305deg,
    transparent 340deg 360deg
  );
  border-radius: inherit;
  pointer-events: none;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: border-orbit 2.8s linear infinite paused;
  transition: opacity 280ms ease;
}

.option-card {
  --border-color-one: #69a5ff;
  --border-color-two: #00b8d9;
}

.price-main-card::before,
.search-card.featured::before {
  inset: -2px;
}

.price-badge,
.recommend-badge {
  z-index: 4;
}

@media (hover: hover) and (pointer: fine) {
  :is(
    .feature-card,
    .service-link-card,
    .search-card,
    .price-main-card,
    .option-card,
    .article-lead,
    .answer-box,
    .problem-panel,
    .check-card-list > div
  ):hover::before,
  :is(
    .feature-card,
    .service-link-card,
    .search-card,
    .price-main-card,
    .option-card,
    .article-lead,
    .answer-box,
    .problem-panel,
    .check-card-list > div
  ):focus-within::before,
  .portfolio-card:hover .portfolio-thumbnail::before,
  .portfolio-thumbnail:focus-within::before {
    opacity: 1;
    animation-play-state: running;
  }
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 680ms var(--motion-ease) var(--reveal-delay, 0ms),
    transform 680ms var(--motion-ease) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

.mobile-nav a {
  display: block;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line-alternative);
  font-size: 15px;
  font-weight: 600;
}

.mobile-nav a:last-child {
  margin-top: 12px;
  color: #fff;
  text-align: center;
  background: var(--primary);
  border: 0;
  border-radius: var(--radius-small);
}

.hero {
  position: relative;
  min-height: 780px;
  padding: 112px 0 40px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fff 0%, #f8fbff 74%, #fff 100%);
}

.hero::before {
  position: absolute;
  top: 32px;
  right: calc(50% - 650px);
  width: 620px;
  height: 620px;
  content: "";
  opacity: 0.75;
  background-image:
    linear-gradient(rgba(0, 102, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 102, 255, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle, #000 20%, transparent 70%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.hero-glow-one {
  top: -140px;
  right: -70px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.13), transparent 70%);
}

.hero-glow-two {
  bottom: -160px;
  left: -130px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.08), transparent 70%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  gap: 58px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  padding: 8px 13px;
  color: var(--primary-strong);
  background: var(--primary-soft);
  border-radius: 999px;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
}

.status-dot {
  position: relative;
  width: 7px;
  height: 7px;
  background: var(--primary);
  border-radius: 50%;
}

.status-dot::after {
  position: absolute;
  inset: -3px;
  content: "";
  border: 1px solid rgba(0, 102, 255, 0.3);
  border-radius: 50%;
}

.hero h1 {
  margin: 24px 0;
  font-size: clamp(42px, 4.3vw, 60px);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.036em;
}

.hero h1 span {
  position: relative;
  color: var(--primary);
}

.hero h1 span::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 8px;
  content: "";
  opacity: 0.35;
  background: #9ec5ff;
  border-radius: 4px;
  z-index: -1;
}

.hero-description {
  max-width: 580px;
  margin: 0;
  color: var(--label-neutral);
  font-size: 18px;
  line-height: 1.65;
  letter-spacing: -0.002em;
}

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

.hero-trust {
  display: flex;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
  gap: 22px;
}

.hero-trust li {
  display: flex;
  color: var(--label-alternative);
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
}

.hero-trust span {
  display: inline-flex;
  width: 18px;
  height: 18px;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}

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

.browser-frame {
  position: absolute;
  top: 20px;
  right: -40px;
  width: 490px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(225, 226, 228, 0.85);
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(0, 52, 132, 0.16);
  transform: perspective(1000px) rotateY(-3deg) rotateX(1deg);
}

.browser-toolbar {
  display: flex;
  height: 42px;
  padding: 0 14px;
  background: var(--background-alt);
  border-bottom: 1px solid var(--line-neutral);
  align-items: center;
  gap: 24px;
}

.browser-dots {
  display: flex;
  gap: 5px;
}

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

.browser-dots i:first-child {
  background: #ff6b6b;
}

.browser-dots i:nth-child(2) {
  background: #ffd43b;
}

.browser-dots i:last-child {
  background: #51cf66;
}

.browser-address {
  width: 220px;
  padding: 5px 12px;
  color: var(--label-assistive);
  background: #fff;
  border: 1px solid var(--line-neutral);
  border-radius: 6px;
  font-size: 9px;
  text-align: center;
}

.browser-content {
  height: 420px;
  padding: 20px;
  background:
    radial-gradient(circle at 84% 18%, rgba(0, 102, 255, 0.2), transparent 24%),
    linear-gradient(145deg, #f7fbff, #fff 65%);
}

.mini-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mini-logo {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.mini-logo small {
  color: var(--primary);
  font-size: 6px;
  vertical-align: super;
}

.mini-links {
  display: flex;
  gap: 12px;
}

.mini-links i {
  width: 34px;
  height: 4px;
  background: #dfe8f5;
  border-radius: 2px;
}

.mini-hero {
  padding: 76px 24px 54px;
  text-align: center;
}

.mini-hero span {
  color: var(--primary);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.mini-hero strong {
  display: block;
  margin: 10px 0;
  font-size: 28px;
  line-height: 1.24;
  letter-spacing: -0.04em;
}

.mini-hero p {
  width: 160px;
  height: 6px;
  margin: 0 auto 20px;
  background: #dfe6ef;
  border-radius: 3px;
  box-shadow: 0 10px 0 #e9eef4;
}

.mini-hero button {
  height: 32px;
  padding: 0 18px;
  margin-top: 12px;
  color: #fff;
  background: var(--primary);
  border-radius: 6px;
  font-size: 8px;
  font-weight: 700;
}

.mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.mini-cards i {
  height: 78px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #ebf0f7;
  border-radius: 10px;
  box-shadow: var(--shadow-small);
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  padding: 14px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(225, 226, 228, 0.8);
  border-radius: 14px;
  box-shadow: var(--shadow-large);
  align-items: center;
  backdrop-filter: blur(12px);
}

.score-card {
  top: 0;
  right: -66px;
  gap: 11px;
}

.score-ring {
  display: flex;
  width: 54px;
  height: 54px;
  border: 5px solid var(--primary);
  border-left-color: #c9defe;
  border-radius: 50%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(-20deg);
}

.score-ring strong,
.score-ring span {
  transform: rotate(20deg);
}

.score-ring strong {
  font-size: 14px;
  line-height: 1;
}

.score-ring span {
  color: var(--label-assistive);
  font-size: 7px;
}

.floating-card b,
.floating-card small {
  display: block;
}

.floating-card b {
  font-size: 12px;
}

.floating-card small {
  margin-top: 3px;
  color: var(--label-assistive);
  font-size: 8px;
}

.keyword-card {
  bottom: 34px;
  left: -44px;
  min-width: 220px;
  gap: 10px;
}

.keyword-card svg {
  width: 34px;
  height: 34px;
  padding: 8px;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 9px;
}

.keyword-card div {
  flex: 1;
}

.keyword-card span {
  padding: 4px 7px;
  color: var(--green);
  background: rgba(0, 191, 64, 0.09);
  border-radius: 999px;
  font-size: 8px;
  font-weight: 800;
}

.keyword-strip {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 62px;
  padding: 0 34px;
  margin-top: 68px;
  background: #fff;
  border: 1px solid var(--line-neutral);
  border-radius: 16px;
  box-shadow: var(--shadow-small);
  align-items: center;
  justify-content: space-between;
}

.keyword-strip span {
  color: var(--label-alternative);
  font-size: 13px;
  font-weight: 700;
}

.keyword-strip i {
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
}

.section {
  padding: 120px 0;
}

.section-heading {
  max-width: 660px;
  margin-bottom: 56px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-kicker {
  display: block;
  margin-bottom: 13px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.section-heading h2,
.preview-heading h2 {
  margin: 0;
  font-size: clamp(32px, 3.5vw, 44px);
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: -0.032em;
}

.section-heading > p {
  margin: 20px 0 0;
  color: var(--label-alternative);
  font-size: 17px;
  line-height: 1.7;
}

.section-onepage {
  background: #fff;
}

.onepage-layout {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.story-line {
  position: absolute;
  top: 36px;
  right: 11.5%;
  left: 11.5%;
  z-index: 0;
  display: flex;
  align-items: center;
}

.story-line i {
  height: 1px;
  flex: 1;
  background: var(--line-normal);
}

.story-dot {
  display: inline-flex;
  width: 22px;
  height: 22px;
  color: var(--label-assistive);
  background: #fff;
  border: 1px solid var(--line-normal);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
}

.story-dot.active {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}

.feature-card {
  position: relative;
  z-index: 1;
  padding: 24px;
  margin-top: 78px;
  background: #fff;
  border: 1px solid var(--line-neutral);
  border-radius: var(--radius-large);
  transition:
    transform 360ms var(--motion-ease),
    box-shadow 360ms var(--motion-ease),
    border-color 260ms ease,
    opacity 680ms var(--motion-ease) var(--reveal-delay, 0ms);
}

.feature-card:hover {
  border-color: #c9defe;
  box-shadow: var(--shadow-medium);
  transform: translateY(-5px);
}

.feature-icon {
  display: flex;
  width: 52px;
  height: 52px;
  margin-bottom: 26px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
}

.feature-icon.blue {
  color: var(--primary);
  background: var(--primary-soft);
}

.feature-icon.cyan {
  color: #008aa3;
  background: #e7fafd;
}

.feature-icon.violet {
  color: var(--violet);
  background: #f0edff;
}

.feature-icon.pink {
  color: var(--pink);
  background: #fff0f7;
}

.feature-card > span {
  color: var(--label-assistive);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.feature-card h3 {
  margin: 8px 0 10px;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.012em;
}

.feature-card p {
  margin: 0;
  color: var(--label-alternative);
  font-size: 14px;
  line-height: 1.65;
}

.answer-box {
  display: grid;
  grid-template-columns: 240px 1fr;
  padding: 30px 36px;
  margin-top: 32px;
  background: var(--background-alt);
  border-radius: var(--radius-large);
  align-items: center;
  gap: 30px;
}

.answer-label {
  display: inline-block;
  padding: 5px 9px;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.answer-box h3 {
  margin: 7px 0 0;
  font-size: 20px;
}

.answer-box p {
  padding-left: 30px;
  margin: 0;
  color: var(--label-neutral);
  border-left: 1px solid var(--line-normal);
  font-size: 15px;
  line-height: 1.7;
}

.search-section {
  background: var(--background-alt);
}

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

.search-card {
  position: relative;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line-neutral);
  border-radius: var(--radius-large);
  transition:
    transform 360ms var(--motion-ease),
    box-shadow 360ms var(--motion-ease),
    border-color 260ms ease,
    opacity 680ms var(--motion-ease) var(--reveal-delay, 0ms);
}

.search-card:hover {
  border-color: #c9defe;
  box-shadow: var(--shadow-medium);
  transform: translateY(-5px);
}

.search-card.featured {
  border: 2px solid var(--primary);
  box-shadow: 0 16px 40px rgba(0, 102, 255, 0.1);
}

.recommend-badge {
  position: absolute;
  top: -15px;
  left: 24px;
  padding: 6px 12px;
  color: #fff;
  background: var(--primary);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.search-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.search-abbr {
  color: var(--primary);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.search-icon {
  display: flex;
  width: 46px;
  height: 46px;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 13px;
  align-items: center;
  justify-content: center;
}

.search-icon svg {
  width: 23px;
  height: 23px;
}

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

.search-card > p {
  min-height: 69px;
  margin: 0;
  color: var(--label-alternative);
  font-size: 14px;
  line-height: 1.65;
}

.search-card ul {
  padding: 20px 0 0;
  margin: 24px 0 0;
  list-style: none;
  border-top: 1px solid var(--line-neutral);
}

.search-card li {
  position: relative;
  padding: 7px 0 7px 20px;
  color: var(--label-neutral);
  font-size: 13px;
  font-weight: 600;
}

.search-card li::before {
  position: absolute;
  top: 12px;
  left: 2px;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--primary);
  border-radius: 50%;
}

.problem-panel {
  margin-top: 40px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line-neutral);
  border-radius: var(--radius-large);
}

.problem-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--background-alt);
  border-bottom: 1px solid var(--line-neutral);
}

.problem-tab {
  position: relative;
  min-height: 58px;
  padding: 12px 18px;
  color: var(--label-alternative);
  background: transparent;
  font-size: 14px;
  font-weight: 700;
}

.problem-tab.active {
  color: var(--primary);
  background: #fff;
}

.problem-tab.active::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--primary);
}

.problem-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 34px;
  gap: 40px;
}

.problem-content.is-refreshed {
  animation: content-refresh 360ms var(--motion-ease) both;
}

.problem-column span {
  display: block;
  margin-bottom: 10px;
  color: var(--label-assistive);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.problem-column h3 {
  margin: 0 0 15px;
  font-size: 20px;
}

.problem-column p {
  margin: 0;
  color: var(--label-alternative);
  font-size: 14px;
  line-height: 1.7;
}

.problem-column.solution {
  padding-left: 40px;
  border-left: 1px solid var(--line-neutral);
}

.problem-column.solution span {
  color: var(--primary);
}

.problem-column ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.problem-column li {
  display: flex;
  padding: 6px 0;
  color: var(--label-neutral);
  gap: 9px;
  font-size: 14px;
}

.problem-column li::before {
  color: var(--primary);
  content: "✓";
  font-weight: 800;
}

.process-section {
  background: #fff;
}

.process-list {
  position: relative;
  display: grid;
  padding: 0;
  margin: 0;
  list-style: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.process-list::before {
  position: absolute;
  top: 46px;
  right: 10%;
  left: 10%;
  height: 1px;
  content: "";
  background: var(--line-normal);
}

.process-list li {
  position: relative;
  text-align: center;
}

.process-list li > span {
  position: absolute;
  top: 3px;
  right: calc(50% - 49px);
  z-index: 2;
  display: inline-flex;
  width: 25px;
  height: 25px;
  color: #fff;
  background: var(--primary);
  border: 3px solid #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 800;
}

.process-icon {
  position: relative;
  z-index: 1;
  display: flex;
  width: 92px;
  height: 92px;
  margin: 0 auto 24px;
  color: var(--primary);
  background: var(--primary-pale);
  border: 1px solid #dceaff;
  border-radius: 26px;
  align-items: center;
  justify-content: center;
}

.process-icon svg {
  width: 34px;
  height: 34px;
}

.process-list h3 {
  margin: 0 0 9px;
  font-size: 18px;
}

.process-list p {
  margin: 0;
  color: var(--label-alternative);
  font-size: 13px;
  line-height: 1.65;
}

.price-section {
  background: linear-gradient(180deg, #f7fbff, #f7f7f8);
}

.price-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(330px, 0.7fr);
  gap: 24px;
  align-items: stretch;
}

.price-main-card {
  position: relative;
  padding: 42px;
  background: #fff;
  border: 2px solid var(--primary);
  border-radius: var(--radius-xlarge);
  box-shadow: 0 24px 50px rgba(0, 102, 255, 0.1);
  transition:
    transform 420ms var(--motion-ease),
    box-shadow 420ms var(--motion-ease),
    opacity 680ms var(--motion-ease) var(--reveal-delay, 0ms);
}

.price-main-card:hover {
  box-shadow: 0 30px 64px rgba(0, 102, 255, 0.17);
  transform: translateY(-5px);
}

.price-badge {
  position: absolute;
  top: -16px;
  left: 40px;
  padding: 7px 14px;
  color: #fff;
  background: var(--primary);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.price-card-head {
  display: flex;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line-neutral);
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.price-card-head h3 {
  margin: 0 0 8px;
  font-size: 26px;
  letter-spacing: -0.023em;
}

.price-card-head p {
  margin: 0;
  color: var(--label-alternative);
  font-size: 14px;
}

.price-number {
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  column-gap: 4px;
}

.price-number strong {
  color: var(--primary);
  font-size: 58px;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.price-number span {
  font-size: 19px;
  font-weight: 800;
}

.price-number small {
  grid-column: 1 / -1;
  margin-top: 8px;
  color: var(--label-assistive);
  font-size: 10px;
  text-align: right;
}

.included-list {
  display: grid;
  padding: 30px 0;
  margin: 0;
  list-style: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 26px;
}

.included-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  align-items: center;
}

.included-list li > span {
  display: inline-flex;
  width: 22px;
  height: 22px;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 50%;
  grid-row: 1 / 3;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

.included-list b {
  font-size: 14px;
}

.included-list small {
  color: var(--label-assistive);
  font-size: 11px;
}

.hosting-note {
  display: flex;
  margin: 15px 0 0;
  color: var(--label-alternative);
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
}

.hosting-note svg {
  width: 14px;
  height: 14px;
}

.option-card {
  padding: 38px 32px;
  color: #fff;
  background: var(--label-normal);
  border-radius: var(--radius-xlarge);
  transition:
    transform 420ms var(--motion-ease),
    box-shadow 420ms var(--motion-ease),
    opacity 680ms var(--motion-ease) var(--reveal-delay, 0ms);
}

.option-card:hover {
  box-shadow: 0 26px 54px rgba(23, 23, 25, 0.2);
  transform: translateY(-5px);
}

.option-head span {
  color: #69a5ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.option-head h3 {
  margin: 8px 0 26px;
  font-size: 24px;
}

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

.option-list li {
  display: flex;
  padding: 19px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.option-list b,
.option-list small {
  display: block;
}

.option-list b {
  font-size: 14px;
}

.option-list small {
  margin-top: 4px;
  color: #989ba2;
  font-size: 10px;
}

.option-list strong {
  color: #69a5ff;
  font-size: 13px;
  white-space: nowrap;
}

.option-card > p {
  margin: 20px 0 0;
  color: #878a93;
  font-size: 10px;
  line-height: 1.6;
}

.portfolio-preview {
  background: #fff;
}

.preview-heading {
  display: flex;
  margin-bottom: 42px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.text-link {
  display: inline-flex;
  padding-bottom: 4px;
  color: var(--primary);
  border-bottom: 1px solid rgba(0, 102, 255, 0.35);
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 700;
}

.text-link svg {
  width: 16px;
  height: 16px;
}

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

.portfolio-card {
  position: relative;
  min-width: 0;
  animation: portfolio-card-in 480ms var(--motion-ease) both;
  transition: transform 360ms var(--motion-ease);
}

.portfolio-card:nth-child(2n) {
  animation-delay: 35ms;
}

.portfolio-card:nth-child(3n) {
  animation-delay: 70ms;
}

.portfolio-card:nth-child(4n) {
  animation-delay: 105ms;
}

.portfolio-card:hover {
  transform: translateY(-5px);
}

.portfolio-thumbnail {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background: var(--background-alt);
  border-radius: 16px;
  isolation: isolate;
  --border-color-one: #0066ff;
  --border-color-two: #7c5cff;
  transition: box-shadow 360ms var(--motion-ease);
}

.portfolio-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 620ms var(--motion-ease);
}

.portfolio-card:hover .portfolio-thumbnail img {
  transform: scale(1.045);
}

.portfolio-card:hover .portfolio-thumbnail {
  box-shadow: 0 16px 34px rgba(23, 23, 25, 0.12);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  opacity: 0;
  color: #fff;
  background: rgba(15, 15, 16, 0.5);
  align-items: center;
  justify-content: center;
  transition: opacity 280ms ease, backdrop-filter 280ms ease;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay span {
  display: inline-flex;
  min-height: 42px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 9px;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.portfolio-card-content {
  padding: 16px 2px 0;
}

.portfolio-category {
  display: inline-block;
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
}

.portfolio-category:hover {
  text-decoration: underline;
}

.portfolio-card h3 {
  margin: 6px 0 0;
  overflow: hidden;
  font-size: 17px;
  line-height: 1.45;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.faq-section {
  background: var(--background-alt);
}

.faq-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 100px;
}

.faq-layout .section-heading {
  margin-bottom: 0;
}

.faq-layout .section-heading .button {
  margin-top: 26px;
}

.accordion-item {
  border-bottom: 1px solid var(--line-normal);
}

.accordion-item:first-child {
  border-top: 1px solid var(--line-normal);
}

.accordion-item > button {
  display: flex;
  width: 100%;
  min-height: 76px;
  padding: 20px 4px;
  color: var(--label-normal);
  background: transparent;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
}

.accordion-item i {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.accordion-item i::before,
.accordion-item i::after {
  position: absolute;
  top: 8px;
  left: 2px;
  width: 14px;
  height: 2px;
  content: "";
  background: var(--label-alternative);
  transition: transform 320ms var(--motion-ease);
}

.accordion-item i::after {
  transform: rotate(90deg);
}

.accordion-item.open i::after {
  transform: rotate(0);
}

.accordion-panel {
  display: grid;
  overflow: hidden;
  grid-template-rows: 0fr;
  transition: grid-template-rows 340ms var(--motion-ease), padding 340ms var(--motion-ease);
}

.accordion-panel > p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--label-alternative);
  font-size: 14px;
  line-height: 1.7;
}

.accordion-item.open .accordion-panel {
  padding-bottom: 24px;
  grid-template-rows: 1fr;
}

.final-cta {
  padding: 84px 0;
  color: #fff;
  background:
    radial-gradient(circle at 75% 40%, rgba(105, 165, 255, 0.5), transparent 30%),
    linear-gradient(135deg, #003e9c, #0066ff 60%, #3385ff);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.final-cta span {
  color: #c9defe;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.final-cta h2 {
  margin: 12px 0;
  font-size: 40px;
  line-height: 1.3;
  letter-spacing: -0.0282em;
}

.final-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
}

.site-footer {
  color: #fff;
  background: #0f0f10;
}

.footer-top {
  display: grid;
  padding-top: 70px;
  padding-bottom: 56px;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}

.brand-light {
  color: #fff;
}

.footer-brand > p {
  margin: 22px 0 0;
  color: #878a93;
  font-size: 14px;
  line-height: 1.7;
}

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

.footer-nav div {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-nav strong {
  margin-bottom: 8px;
  color: #70737c;
  font-size: 10px;
  letter-spacing: 0.16em;
}

.footer-nav a {
  width: fit-content;
  color: #c2c4c8;
  font-size: 13px;
}

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

.footer-nav .admin-link {
  color: #70737c;
  font-size: 11px;
}

.footer-bottom {
  display: flex;
  min-height: 68px;
  color: #5a5c63;
  border-top: 1px solid #292a2d;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
}

.footer-bottom a:hover {
  color: #c2c4c8;
}

.app-page {
  min-height: 70vh;
}

.service-overview {
  background: #fff;
}

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

.service-link-card {
  display: flex;
  min-height: 310px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line-neutral);
  border-radius: var(--radius-large);
  flex-direction: column;
  transition:
    transform 360ms var(--motion-ease),
    box-shadow 360ms var(--motion-ease),
    border-color 260ms ease,
    opacity 680ms var(--motion-ease) var(--reveal-delay, 0ms);
}

.service-link-card:hover {
  border-color: #c9defe;
  box-shadow: var(--shadow-medium);
  transform: translateY(-5px);
}

.service-link-card > span {
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-link-card h3 {
  margin: 26px 0 12px;
  font-size: 24px;
  letter-spacing: -0.02em;
}

.service-link-card p {
  margin: 0;
  color: var(--label-alternative);
  font-size: 14px;
  line-height: 1.75;
}

.service-link-card b {
  margin-top: auto;
  padding-top: 28px;
  color: var(--primary);
  font-size: 13px;
}

.article-page {
  padding-top: 88px;
}

.article-lead {
  max-width: 900px;
  padding: 42px;
  margin: 0 auto 72px;
  background: var(--primary-pale);
  border: 1px solid #dceaff;
  border-radius: var(--radius-xlarge);
}

.article-lead.compact {
  margin-bottom: 0;
}

.article-lead > span {
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.article-lead h2 {
  margin: 10px 0 16px;
  font-size: 32px;
  letter-spacing: -0.0282em;
}

.article-lead p {
  margin: 0;
  color: var(--label-neutral);
  font-size: 16px;
  line-height: 1.85;
}

.article-page .onepage-layout .feature-card {
  margin-top: 0;
}

.content-section {
  padding: 88px 0;
  border-bottom: 1px solid var(--line-neutral);
}

.content-section:last-child {
  border-bottom: 0;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr);
  gap: 84px;
  align-items: start;
}

.content-grid h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.35;
  letter-spacing: -0.0282em;
}

.check-card-list {
  display: grid;
  gap: 12px;
}

.check-card-list > div {
  padding: 24px;
  background: var(--background-alt);
  border-radius: var(--radius-medium);
}

.check-card-list b {
  font-size: 16px;
}

.check-card-list p {
  margin: 8px 0 0;
  color: var(--label-alternative);
  font-size: 13px;
  line-height: 1.7;
}

.article-copy h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

.article-copy h3:not(:first-child) {
  margin-top: 34px;
}

.article-copy > p {
  margin: 0;
  color: var(--label-neutral);
  font-size: 16px;
  line-height: 1.85;
}

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

.check-list li {
  position: relative;
  padding: 10px 0 10px 30px;
  color: var(--label-neutral);
  border-bottom: 1px solid var(--line-neutral);
  font-size: 15px;
  line-height: 1.65;
}

.check-list li::before {
  position: absolute;
  top: 12px;
  left: 2px;
  display: inline-flex;
  width: 20px;
  height: 20px;
  color: var(--primary);
  content: "✓";
  background: var(--primary-soft);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}

.number-content-list {
  max-width: 900px;
  padding: 0;
  margin: 0 auto;
  list-style: none;
  border-top: 1px solid var(--line-normal);
}

.number-content-list li {
  display: grid;
  padding: 28px 6px;
  border-bottom: 1px solid var(--line-normal);
  grid-template-columns: 72px 1fr;
  gap: 18px;
}

.number-content-list li > span {
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.number-content-list h3 {
  margin: 0 0 8px;
  font-size: 19px;
}

.number-content-list p {
  margin: 0;
  color: var(--label-alternative);
  font-size: 14px;
  line-height: 1.75;
}

.faq-inline {
  padding-bottom: 0;
}

.faq-inline .accordion {
  max-width: 850px;
  margin: 0 auto;
}

.answer-box.vertical {
  grid-template-columns: 1fr;
  margin-top: 30px;
}

.answer-box.vertical p {
  padding: 20px 0 0;
  border-top: 1px solid var(--line-normal);
  border-left: 0;
}

.search-card h2 {
  margin: 28px 0 10px;
  font-size: 20px;
}

.option-head h2 {
  margin: 8px 0 26px;
  font-size: 24px;
}

.price-page-section {
  padding-top: 88px;
}

.page-hero {
  padding: 104px 0 80px;
  background:
    radial-gradient(circle at 82% 28%, rgba(0, 102, 255, 0.12), transparent 27%),
    var(--background-alt);
}

.page-hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(42px, 5vw, 60px);
  line-height: 1.2;
  letter-spacing: -0.036em;
}

.page-hero p {
  margin: 22px 0 0;
  color: var(--label-alternative);
  font-size: 17px;
}

.portfolio-list-section {
  padding: 72px 0 120px;
}

.portfolio-toolbar {
  display: flex;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-normal);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.portfolio-toolbar h2 {
  margin: 0;
  font-size: 24px;
}

.portfolio-toolbar h2 span {
  color: var(--primary);
}

.toolbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.toolbar-actions select {
  height: 42px;
  padding: 0 34px 0 13px;
  color: var(--label-neutral);
  background: #fff;
  border: 1px solid var(--line-normal);
  border-radius: var(--radius-small);
  font-size: 13px;
}

.view-switch {
  display: flex;
  padding: 3px;
  background: var(--background-alt);
  border-radius: 9px;
}

.view-switch button {
  display: flex;
  width: 36px;
  height: 36px;
  color: var(--label-assistive);
  background: transparent;
  border-radius: 7px;
  align-items: center;
  justify-content: center;
  transition:
    color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    transform 220ms var(--motion-ease);
}

.view-switch button:hover {
  color: var(--primary);
  transform: translateY(-1px);
}

.view-switch button.active {
  color: var(--label-normal);
  background: #fff;
  box-shadow: var(--shadow-small);
}

.view-switch svg {
  width: 18px;
  height: 18px;
}

.portfolio-layout {
  display: grid;
  padding-top: 32px;
  grid-template-columns: 170px 1fr;
  gap: 44px;
}

.category-filter {
  align-self: start;
}

.filter-title {
  display: flex;
  margin-bottom: 18px;
  align-items: center;
  justify-content: space-between;
}

.filter-title h3 {
  margin: 0;
  font-size: 15px;
}

.filter-title button {
  padding: 3px;
  color: var(--label-assistive);
  background: transparent;
  font-size: 11px;
}

.filter-title button:hover {
  color: var(--primary);
}

#category-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.category-checkbox {
  display: flex;
  min-height: 40px;
  padding: 0 8px;
  border-radius: var(--radius-small);
  align-items: center;
  gap: 9px;
  cursor: pointer;
  transition:
    color 220ms ease,
    background 220ms ease,
    transform 220ms var(--motion-ease);
}

.category-checkbox:hover {
  background: var(--background-alt);
  transform: translateX(3px);
}

.category-checkbox:has(input:checked) {
  color: var(--primary);
  background: var(--primary-pale);
}

.category-checkbox:has(input:checked) span {
  color: var(--primary);
  font-weight: 700;
}

.category-checkbox input {
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: var(--primary);
}

.category-checkbox span {
  color: var(--label-neutral);
  font-size: 13px;
}

.category-checkbox small {
  margin-left: auto;
  color: var(--label-assistive);
  font-size: 10px;
}

.portfolio-results {
  min-width: 0;
  opacity: 1;
  transform: none;
  transition:
    opacity 220ms ease,
    transform 320ms var(--motion-ease),
    filter 220ms ease;
}

.portfolio-results.is-updating {
  opacity: 0;
  filter: blur(2px);
  transform: translateY(8px);
}

.portfolio-results.is-entering {
  opacity: 0;
  filter: blur(2px);
  transform: translateY(8px);
  transition: none;
}

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

.portfolio-grid.list-mode {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.portfolio-grid.list-mode .portfolio-card {
  display: grid;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-neutral);
  grid-template-columns: 72px 1fr 120px;
  align-items: center;
  gap: 20px;
}

.portfolio-grid.list-mode .portfolio-card:hover {
  transform: translateX(4px);
}

.portfolio-grid.list-mode .portfolio-thumbnail {
  width: 72px;
  border-radius: var(--radius-small);
}

.portfolio-grid.list-mode .portfolio-overlay {
  display: none;
}

.portfolio-grid.list-mode .portfolio-card-content {
  padding: 0;
}

.portfolio-grid.list-mode .portfolio-card h3 {
  white-space: normal;
}

.portfolio-grid.list-mode .portfolio-list-link {
  display: inline-flex;
}

.portfolio-list-link {
  display: none;
  min-height: 38px;
  padding: 0 14px;
  color: var(--primary);
  border: 1px solid #c9defe;
  border-radius: var(--radius-small);
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.admin-select {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 5;
  display: none;
  width: 22px;
  height: 22px;
  margin: 0;
  accent-color: var(--primary);
}

.admin-mode .admin-select {
  display: block;
}

.empty-state {
  padding: 100px 20px;
  text-align: center;
}

.empty-icon {
  display: flex;
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  color: var(--label-assistive);
  background: var(--background-alt);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}

.empty-icon svg {
  width: 28px;
  height: 28px;
}

.empty-state h3 {
  margin: 0;
  font-size: 18px;
}

.empty-state p {
  margin: 8px 0 0;
  color: var(--label-assistive);
  font-size: 13px;
}

.pagination {
  display: flex;
  margin-top: 56px;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.pagination button {
  display: flex;
  width: 38px;
  height: 38px;
  color: var(--label-alternative);
  background: transparent;
  border-radius: var(--radius-small);
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  transition:
    color 220ms ease,
    background 220ms ease,
    transform 220ms var(--motion-ease);
}

.pagination button:hover {
  background: var(--background-alt);
  transform: translateY(-2px);
}

.pagination button.active {
  color: #fff;
  background: var(--primary);
}

.pagination button:disabled {
  opacity: 0.35;
  cursor: default;
}

.admin-bulk-bar {
  position: sticky;
  bottom: 20px;
  z-index: 20;
  display: flex;
  min-height: 70px;
  padding: 12px 18px;
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line-normal);
  border-radius: 16px;
  box-shadow: var(--shadow-large);
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(12px);
}

.admin-bulk-bar > span {
  font-size: 14px;
}

.admin-bulk-bar > span b {
  color: var(--primary);
}

.admin-bulk-bar > div {
  display: flex;
  gap: 7px;
}

.detail-section {
  padding: 76px 0 120px;
}

.detail-layout {
  display: grid;
  grid-template-columns: 190px minmax(0, 900px);
  gap: 60px;
  justify-content: center;
}

.detail-side {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  align-self: start;
}

.detail-side-head {
  margin-bottom: 20px;
}

.detail-side-head span {
  color: var(--primary);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.detail-side-head h2 {
  margin: 4px 0 0;
  font-size: 18px;
}

.related-item {
  display: grid;
  padding: 11px 0;
  border-bottom: 1px solid var(--line-neutral);
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 10px;
}

.related-item img {
  width: 48px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 5px;
}

.related-item span,
.related-item b {
  display: block;
}

.related-item span {
  color: var(--primary);
  font-size: 8px;
}

.related-item b {
  display: -webkit-box;
  margin-top: 3px;
  overflow: hidden;
  font-size: 10px;
  font-weight: 600;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.detail-side .button {
  min-height: 42px;
  margin-top: 18px;
  padding: 0 10px;
  font-size: 11px;
}

.detail-main {
  min-width: 0;
}

.detail-meta {
  display: flex;
  margin-bottom: 18px;
  color: var(--label-assistive);
  align-items: center;
  gap: 10px;
  font-size: 12px;
}

.detail-meta a {
  color: var(--primary);
  font-weight: 700;
}

.detail-main h1 {
  max-width: 760px;
  margin: 0 0 34px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.28;
  letter-spacing: -0.032em;
}

.detail-cover {
  width: min(100%, 640px);
  margin: 0 auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: var(--radius-large);
}

.detail-body {
  padding: 48px 0 20px;
}

.detail-body p {
  margin: 0;
  color: var(--label-neutral);
  font-size: 16px;
  line-height: 1.85;
  white-space: pre-line;
}

.detail-tags {
  display: flex;
  margin: 32px 0;
  flex-wrap: wrap;
  gap: 8px;
}

.detail-tags span {
  padding: 7px 11px;
  color: var(--label-alternative);
  background: var(--background-alt);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}

.mobile-related {
  display: none;
}

.admin-section {
  padding: 80px 0 120px;
  background: var(--background-alt);
}

.admin-header {
  display: flex;
  margin-bottom: 38px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.admin-header h1 {
  margin: 0;
  font-size: 40px;
  letter-spacing: -0.0282em;
}

.admin-header p {
  margin: 10px 0 0;
  color: var(--label-alternative);
}

.admin-header-actions {
  display: flex;
  gap: 9px;
}

.admin-login-card {
  display: grid;
  max-width: 720px;
  padding: 36px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line-normal);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-small);
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}

.admin-login-card h2 {
  margin: 0;
  font-size: 28px;
}

.admin-login-card > div > p {
  margin: 12px 0 0;
  color: var(--label-alternative);
  font-size: 13px;
  line-height: 1.7;
}

.admin-login-card form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.admin-login-card label {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.admin-login-card label span {
  font-size: 12px;
  font-weight: 700;
}

.admin-login-card input {
  width: 100%;
  height: 48px;
  padding: 0 13px;
  border: 1px solid var(--line-normal);
  border-radius: var(--radius-small);
}

.admin-server-message {
  padding: 12px 14px;
  margin: 0;
  color: #d92d3a;
  background: #fff0f1;
  border-radius: var(--radius-small);
  grid-column: 1 / -1;
  font-size: 12px;
}

.admin-dashboard {
  display: grid;
  overflow: hidden;
  min-height: 620px;
  background: #fff;
  border: 1px solid var(--line-normal);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-small);
  grid-template-columns: 200px 1fr;
}

.admin-sidebar {
  display: flex;
  padding: 20px 14px;
  background: #f4f4f5;
  border-right: 1px solid var(--line-normal);
  flex-direction: column;
  gap: 5px;
}

.admin-sidebar button,
.admin-sidebar a {
  min-height: 44px;
  padding: 0 14px;
  color: var(--label-alternative);
  background: transparent;
  border-radius: var(--radius-small);
  font-size: 13px;
  font-weight: 600;
  text-align: left;
}

.admin-sidebar button.active,
.admin-sidebar button:hover,
.admin-sidebar a:hover {
  color: var(--label-normal);
  background: #fff;
  box-shadow: var(--shadow-small);
}

.admin-content {
  min-width: 0;
  padding: 34px;
}

.admin-panel {
  display: none;
}

.admin-panel.active {
  display: block;
}

.admin-panel-head {
  display: flex;
  min-height: 46px;
  margin-bottom: 24px;
  align-items: center;
  justify-content: space-between;
}

.admin-panel-head h2 {
  margin: 0;
  font-size: 24px;
}

.admin-panel-head p {
  margin: 6px 0 0;
  color: var(--label-assistive);
  font-size: 12px;
}

.admin-panel-head > span {
  color: var(--label-assistive);
  font-size: 12px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.admin-table th,
.admin-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line-neutral);
  font-size: 12px;
  text-align: left;
}

.admin-table th {
  color: var(--label-assistive);
  background: var(--background-alt);
  font-size: 10px;
}

.admin-table th:first-child {
  width: 44%;
}

.admin-project-cell {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.admin-project-cell img {
  width: 44px;
  height: 56px;
  object-fit: cover;
  border-radius: 5px;
}

.admin-project-cell b {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-table-actions {
  display: flex;
  gap: 5px;
}

.admin-table-actions button {
  padding: 5px 8px;
  color: var(--label-alternative);
  background: var(--background-alt);
  border-radius: 5px;
  font-size: 10px;
}

.admin-table-actions button:hover {
  color: var(--primary);
}

.admin-table-actions button.delete:hover {
  color: var(--red);
}

.category-add-form {
  display: flex;
  max-width: 500px;
  margin-bottom: 28px;
  gap: 8px;
}

.category-add-form input {
  min-width: 0;
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line-normal);
  border-radius: var(--radius-small);
  flex: 1;
}

.category-admin-list {
  max-width: 620px;
  border-top: 1px solid var(--line-normal);
}

.category-admin-item {
  display: flex;
  min-height: 62px;
  padding: 10px 4px;
  border-bottom: 1px solid var(--line-neutral);
  align-items: center;
  gap: 10px;
}

.category-admin-item input {
  height: 38px;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: 6px;
  flex: 1;
}

.category-admin-item input:not([readonly]) {
  border-color: var(--primary);
}

.category-admin-item span {
  color: var(--label-assistive);
  font-size: 11px;
}

.category-admin-item button {
  padding: 7px 10px;
  color: var(--label-alternative);
  background: var(--background-alt);
  border-radius: 6px;
  font-size: 11px;
}

.category-admin-item button.delete {
  color: var(--red);
}

.project-dialog {
  width: min(calc(100% - 32px), 720px);
  max-height: calc(100vh - 40px);
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: var(--radius-large);
  box-shadow: 0 28px 90px rgba(15, 15, 16, 0.25);
}

.project-dialog::backdrop {
  background: rgba(15, 15, 16, 0.52);
  backdrop-filter: blur(4px);
}

.project-dialog form {
  padding: 30px;
}

.dialog-head {
  display: flex;
  padding-bottom: 22px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line-neutral);
  align-items: flex-start;
  justify-content: space-between;
}

.dialog-head span {
  color: var(--primary);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.dialog-head h2 {
  margin: 5px 0 0;
  font-size: 26px;
}

.dialog-close {
  width: 40px;
  height: 40px;
  color: var(--label-alternative);
  background: var(--background-alt);
  border-radius: 50%;
  font-size: 25px;
  line-height: 1;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-grid label {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
}

.form-grid label > span {
  font-size: 12px;
  font-weight: 700;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--label-normal);
  background: #fff;
  border: 1px solid var(--line-normal);
  border-radius: var(--radius-small);
  font-size: 13px;
}

.form-grid textarea {
  resize: vertical;
}

.form-grid small {
  color: var(--label-assistive);
  font-size: 10px;
}

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

.dialog-actions {
  display: flex;
  padding-top: 26px;
  justify-content: flex-end;
  gap: 8px;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 300;
  max-width: 360px;
  padding: 14px 18px;
  opacity: 0;
  color: #fff;
  background: var(--label-normal);
  border-radius: 10px;
  box-shadow: var(--shadow-large);
  font-size: 13px;
  font-weight: 600;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1199px) {
  .desktop-nav {
    gap: 20px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 28px;
  }

  .browser-frame {
    right: 0;
    width: 430px;
  }

  .score-card {
    right: -12px;
  }

  .keyword-card {
    left: -10px;
  }

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

@media (max-width: 991px) {
  :root {
    --header-height: 64px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .header-inner {
    justify-content: space-between;
  }

  .menu-button {
    display: block;
  }

  .planning-banner-card {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .planning-banner-icon {
    width: 64px;
    height: 64px;
  }

  .planning-download-button {
    width: max-content;
    margin-left: 90px;
    grid-column: 1 / -1;
  }

  .hero {
    padding-top: 80px;
  }

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

  .hero-copy {
    max-width: 700px;
    text-align: center;
    justify-self: center;
  }

  .hero-description {
    margin: 0 auto;
  }

  .hero-actions,
  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    width: min(100%, 600px);
    margin: 10px auto 0;
  }

  .browser-frame {
    right: 50%;
    width: 500px;
    transform: translateX(50%);
  }

  .score-card {
    right: 0;
  }

  .keyword-card {
    left: 0;
  }

  .onepage-layout,
  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-line,
  .process-list::before {
    display: none;
  }

  .feature-card {
    margin-top: 0;
  }

  .search-cards {
    grid-template-columns: 1fr;
  }

  .search-card > p {
    min-height: 0;
  }

  .problem-tabs {
    overflow-x: auto;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
  }

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

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

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-layout .section-heading {
    max-width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .portfolio-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .category-filter {
    position: static;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line-neutral);
  }

  #category-checkboxes {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .category-checkbox {
    min-height: 36px;
    padding: 0 10px;
    border: 1px solid var(--line-normal);
  }

  .category-checkbox small {
    margin-left: 2px;
  }

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

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

  .detail-side {
    display: none;
  }

  .mobile-related {
    display: block;
    padding-top: 58px;
    margin-top: 58px;
    border-top: 1px solid var(--line-normal);
  }

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

  .mobile-related .related-item {
    display: block;
    padding: 0;
    border: 0;
  }

  .mobile-related .related-item img {
    width: 100%;
  }

  .admin-dashboard {
    grid-template-columns: 160px 1fr;
  }

  .service-link-grid {
    grid-template-columns: 1fr;
  }

  .service-link-card {
    min-height: 240px;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 88px 0;
  }

  .planning-notice-inner {
    width: min(calc(100% - 32px), var(--container));
    min-height: 0;
    padding: 10px 0;
    align-items: flex-start;
    gap: 10px;
  }

  .planning-notice p {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    font-size: 11px;
    line-height: 1.45;
  }

  .planning-notice strong {
    min-height: 20px;
    padding: 0 7px;
    font-size: 9px;
  }

  .planning-notice a {
    padding-top: 3px;
    font-size: 0;
    text-decoration: none;
  }

  .planning-notice a::before {
    content: none;
  }

  .planning-banner {
    padding: 28px 0;
  }

  .article-page .planning-banner,
  .price-page-section .planning-banner {
    margin: 48px 0 0;
  }

  .planning-banner-card {
    min-height: 0;
    padding: 28px 24px;
    border-radius: 20px;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
  }

  .planning-banner-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
  }

  .planning-banner-icon svg {
    width: 27px;
    height: 27px;
  }

  .planning-banner-copy h2 {
    font-size: 21px;
  }

  .planning-banner-copy p {
    font-size: 13px;
  }

  .planning-download-button {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    margin: 4px 0 0;
  }

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

  .section-heading h2,
  .preview-heading h2 {
    font-size: 32px;
  }

  .section-heading > p {
    font-size: 15px;
  }

  .hero {
    min-height: auto;
    padding: 64px 0 32px;
  }

  .hero h1 {
    margin: 20px 0;
    font-size: 40px;
  }

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

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-trust {
    gap: 12px;
  }

  .hero-visual {
    min-height: 440px;
    margin-top: 20px;
  }

  .browser-frame {
    top: 24px;
    width: min(100%, 440px);
  }

  .browser-content {
    height: 350px;
  }

  .mini-hero {
    padding: 52px 18px 36px;
  }

  .score-card {
    top: 4px;
    right: -5px;
  }

  .keyword-card {
    bottom: 0;
    left: -5px;
  }

  .keyword-strip {
    display: grid;
    min-height: auto;
    padding: 20px;
    margin-top: 36px;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .keyword-strip i {
    display: none;
  }

  .keyword-strip span {
    padding: 8px;
    text-align: center;
    background: var(--background-alt);
    border-radius: 7px;
    font-size: 11px;
  }

  .onepage-layout {
    gap: 12px;
  }

  .feature-card {
    padding: 20px;
  }

  .feature-icon {
    margin-bottom: 20px;
  }

  .feature-card h3 {
    font-size: 17px;
  }

  .answer-box {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 16px;
  }

  .answer-box p {
    padding: 16px 0 0;
    border-top: 1px solid var(--line-normal);
    border-left: 0;
  }

  .search-card {
    padding: 26px 22px;
  }

  .problem-content {
    grid-template-columns: 1fr;
    padding: 26px 22px;
    gap: 24px;
  }

  .problem-column.solution {
    padding: 24px 0 0;
    border-top: 1px solid var(--line-neutral);
    border-left: 0;
  }

  .process-list {
    gap: 42px 18px;
  }

  .process-icon {
    width: 78px;
    height: 78px;
    border-radius: 22px;
  }

  .process-list li > span {
    right: calc(50% - 43px);
  }

  .price-main-card {
    padding: 32px 24px;
  }

  .price-card-head {
    flex-direction: column;
  }

  .price-number strong {
    font-size: 52px;
  }

  .included-list {
    grid-template-columns: 1fr;
  }

  .option-card {
    padding: 32px 24px;
  }

  .preview-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-cta {
    padding: 68px 0;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-cta h2 {
    font-size: 34px;
  }

  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 20px;
  }

  .footer-bottom {
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }

  .page-hero {
    padding: 72px 0 58px;
  }

  .page-hero h1 {
    font-size: 40px;
  }

  .portfolio-list-section {
    padding: 50px 0 90px;
  }

  .portfolio-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .toolbar-actions {
    width: 100%;
    justify-content: space-between;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 14px;
  }

  .portfolio-grid.list-mode .portfolio-card {
    grid-template-columns: 64px 1fr;
  }

  .portfolio-grid.list-mode .portfolio-list-link {
    display: none;
  }

  .admin-bulk-bar {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .admin-bulk-bar > div {
    width: 100%;
    overflow-x: auto;
  }

  .detail-section {
    padding: 50px 0 90px;
  }

  .detail-main h1 {
    margin-bottom: 26px;
    font-size: 34px;
  }

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

  .mobile-related-list .related-item:nth-child(n + 6) {
    display: none;
  }

  .mobile-related-list.expanded .related-item {
    display: block;
  }

  .mobile-related-more {
    width: 100%;
    min-height: 42px;
    margin-top: 18px;
    color: var(--label-neutral);
    background: var(--background-alt);
    border-radius: var(--radius-small);
    font-size: 12px;
    font-weight: 700;
  }

  .admin-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-header h1 {
    font-size: 34px;
  }

  .admin-header-actions {
    width: 100%;
  }

  .admin-header-actions .button {
    flex: 1;
  }

  .admin-dashboard {
    grid-template-columns: 1fr;
  }

  .admin-login-card {
    padding: 28px 22px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .article-page {
    padding-top: 64px;
  }

  .article-lead {
    padding: 28px 22px;
    margin-bottom: 54px;
  }

  .article-lead h2,
  .content-grid h2 {
    font-size: 27px;
  }

  .content-section {
    padding: 64px 0;
  }

  .number-content-list li {
    grid-template-columns: 48px 1fr;
  }

  .admin-sidebar {
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-normal);
    flex-direction: row;
  }

  .admin-sidebar button,
  .admin-sidebar a {
    padding: 0 12px;
    white-space: nowrap;
  }

  .admin-content {
    padding: 24px 18px;
  }

  .admin-table {
    min-width: 640px;
  }

  .admin-table-wrap {
    overflow-x: auto;
  }

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

  .form-full {
    grid-column: auto;
  }
}

@media (max-width: 479px) {
  .brand-main {
    font-size: 20px;
  }

  .planning-banner-card {
    grid-template-columns: 1fr;
  }

  .planning-banner-icon {
    display: none;
  }

  .hero h1 {
    font-size: 35px;
  }

  .hero-trust {
    align-items: center;
    flex-direction: column;
    gap: 7px;
  }

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

  .browser-toolbar {
    gap: 12px;
  }

  .browser-address {
    width: 160px;
  }

  .browser-content {
    height: 305px;
  }

  .mini-hero {
    padding: 40px 10px 28px;
  }

  .mini-hero strong {
    font-size: 23px;
  }

  .floating-card {
    padding: 10px;
  }

  .score-card {
    display: none;
  }

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

  .search-abbr {
    font-size: 32px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .preview-grid {
    gap: 12px;
  }

  .portfolio-card h3 {
    font-size: 15px;
  }

  .portfolio-category {
    font-size: 10px;
  }

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

  .page-hero h1 {
    font-size: 35px;
  }

  .portfolio-grid {
    gap: 26px 10px;
  }

  .portfolio-card-content {
    padding-top: 12px;
  }

  .dialog-actions .button {
    flex: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation: none !important;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* veryEasy v6 */
:root {
  --container: 1200px;
}

.brand {
  min-width: 150px;
}

.brand-main {
  letter-spacing: -0.055em;
}

.brand-by {
  letter-spacing: 0.12em;
}

.hero {
  background:
    radial-gradient(circle at 78% 24%, rgba(0, 102, 255, 0.18), transparent 25%),
    radial-gradient(circle at 92% 65%, rgba(124, 92, 255, 0.12), transparent 25%),
    linear-gradient(145deg, #fff 0%, #eef6ff 48%, #fff 100%);
}

.hero::after,
.page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.3;
  background-image: radial-gradient(rgba(0, 102, 255, 0.22) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(90deg, transparent, #000 58%, transparent);
  pointer-events: none;
}

.hero > .container,
.page-hero > .container {
  position: relative;
  z-index: 1;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 24%, rgba(0, 102, 255, 0.23), transparent 26%),
    radial-gradient(circle at 12% 110%, rgba(124, 92, 255, 0.12), transparent 32%),
    linear-gradient(130deg, #f8fbff 0%, #eaf3ff 52%, #f8f6ff 100%);
}

.page-hero::before {
  position: absolute;
  top: -160px;
  right: 5%;
  width: 420px;
  height: 420px;
  content: "";
  border: 1px solid rgba(0, 102, 255, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 54px rgba(0, 102, 255, 0.035), 0 0 0 108px rgba(124, 92, 255, 0.025);
}

@keyframes process-shine {
  0% {
    opacity: 0;
    transform: translateX(-80%);
  }
  8% {
    opacity: 1;
    transform: translateX(-55%);
  }
  28% {
    opacity: 1;
    transform: translateX(45%);
  }
  48% {
    opacity: 1;
    transform: translateX(145%);
  }
  68% {
    opacity: 1;
    transform: translateX(245%);
  }
  78% {
    opacity: 1;
    transform: translateX(300%);
  }
  90%,
  100% {
    opacity: 0;
    transform: translateX(350%);
  }
}

@keyframes process-step-one {
  0%, 2%, 18%, 100% { transform: translateY(0); }
  8%, 12% { transform: translateY(-6px); }
}

@keyframes process-step-two {
  0%, 22%, 38%, 100% { transform: translateY(0); }
  28%, 32% { transform: translateY(-6px); }
}

@keyframes process-step-three {
  0%, 42%, 58%, 100% { transform: translateY(0); }
  48%, 52% { transform: translateY(-6px); }
}

@keyframes process-step-four {
  0%, 62%, 78%, 100% { transform: translateY(0); }
  68%, 72% { transform: translateY(-6px); }
}

.process-list {
  overflow: hidden;
  padding: 18px 0 22px;
  isolation: isolate;
}

.process-list::before {
  z-index: 0;
  height: 3px;
  overflow: hidden;
  background: #dceaff;
  border-radius: 999px;
}

.process-list::after {
  position: absolute;
  top: 64px;
  left: 10%;
  z-index: 1;
  width: 25%;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, transparent 0%, rgba(0, 102, 255, 0.25) 18%, #0066ff 58%, #b7d3ff 78%, transparent 100%);
  border-radius: 999px;
  filter: drop-shadow(0 0 7px rgba(0, 102, 255, 0.8));
  will-change: transform, opacity;
  animation: process-shine 10s linear infinite;
}

.process-list li {
  z-index: 2;
  padding: 12px;
  border-radius: 24px;
  will-change: transform;
  animation-duration: 10s;
  animation-timing-function: cubic-bezier(0.45, 0, 0.2, 1);
  animation-iteration-count: infinite;
}

.process-list li:nth-child(1) { animation-name: process-step-one; }
.process-list li:nth-child(2) { animation-name: process-step-two; }
.process-list li:nth-child(3) { animation-name: process-step-three; }
.process-list li:nth-child(4) { animation-name: process-step-four; }

.process-list li > span {
  z-index: 4;
}

.process-icon {
  z-index: 3;
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.05);
  transition: box-shadow 560ms var(--motion-ease), background 560ms var(--motion-ease);
}

.process-list li:hover .process-icon {
  background: #fff;
  box-shadow: 0 18px 36px rgba(0, 102, 255, 0.18);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 108px 0;
  background:
    radial-gradient(circle at 76% 35%, rgba(105, 165, 255, 0.65), transparent 26%),
    radial-gradient(circle at 15% 120%, rgba(124, 92, 255, 0.45), transparent 35%),
    linear-gradient(130deg, #001b46, #0047b7 48%, #0066ff);
}

.final-cta::before {
  position: absolute;
  top: -190px;
  right: -90px;
  width: 520px;
  height: 520px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.035), 0 0 0 140px rgba(255, 255, 255, 0.02);
}

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

.final-cta-copy ul {
  display: flex;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
  gap: 18px;
}

.final-cta-copy li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  font-weight: 700;
}

.final-cta-copy li::before {
  content: "✓";
  color: #9ec5ff;
}

.final-cta-actions {
  display: flex;
  min-width: 250px;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.final-consult-link {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.top-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: flex;
  width: 52px;
  height: 52px;
  opacity: 0;
  visibility: hidden;
  color: #fff;
  background: #171719;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(23, 23, 25, 0.22);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(12px);
  transition: opacity 200ms ease, visibility 200ms ease, transform 200ms ease, background 200ms ease;
}

.top-button.show {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.top-button:hover {
  background: var(--primary);
}

.top-button svg {
  width: 17px;
  height: 17px;
}

.top-button span {
  margin-top: -2px;
  font-size: 8px;
  font-weight: 800;
}

.portfolio-search {
  display: flex;
  width: 220px;
  height: 42px;
  padding: 0 12px;
  background: #fff;
  border: 1px solid var(--line-normal);
  border-radius: var(--radius-small);
  align-items: center;
  gap: 8px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.portfolio-search:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.portfolio-search svg {
  width: 17px;
  height: 17px;
  color: var(--label-assistive);
  flex: 0 0 auto;
}

.portfolio-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  font-size: 13px;
}

#detail-related .related-item:nth-child(n+6),
.mobile-related-list .related-item:nth-child(n+6) {
  display: none;
}

#detail-related.expanded .related-item:nth-child(n+6),
.mobile-related-list.expanded .related-item:nth-child(n+6) {
  display: grid;
}

.related-more-button,
.mobile-related-more {
  width: 100%;
  min-height: 40px;
  margin: 12px 0;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 9px;
  font-size: 12px;
  font-weight: 800;
}

/* Request */
.request-section {
  padding: 88px 0 130px;
  background: #f7f9fc;
}

.request-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  align-items: start;
  gap: 34px;
}

.request-guide {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  padding: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 8%, rgba(105, 165, 255, 0.35), transparent 28%),
    #111827;
  border-radius: 24px;
  box-shadow: var(--shadow-large);
}

.request-guide,
.request-form-card {
  min-width: 0;
}

.request-guide > span,
.request-form-head > span {
  color: #69a5ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.request-guide h2 {
  margin: 12px 0;
  font-size: 26px;
  line-height: 1.35;
}

.request-guide > p {
  margin: 0 0 24px;
  color: #b5b8c0;
  font-size: 14px;
  line-height: 1.75;
}

.request-guide-list {
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.request-guide-list b {
  font-size: 13px;
}

.request-guide-list ol {
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
  counter-reset: request-step;
}

.request-guide-list li {
  display: flex;
  padding: 8px 0;
  color: #989ba2;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  counter-increment: request-step;
}

.request-guide-list li::before {
  display: inline-flex;
  width: 22px;
  height: 22px;
  color: #fff;
  content: counter(request-step);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
}

.request-form-card {
  padding: 46px;
  background: #fff;
  border: 1px solid var(--line-neutral);
  border-radius: 26px;
  box-shadow: 0 22px 54px rgba(23, 23, 25, 0.07);
}

.request-form-head {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--line-neutral);
}

.request-form-head h2 {
  margin: 9px 0 7px;
  font-size: 32px;
}

.request-form-head p {
  margin: 0;
  color: var(--label-assistive);
  font-size: 12px;
}

.request-form-head b,
.request-form-grid label > span b,
.privacy-consent label b {
  color: var(--red);
}

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

.request-form-grid label,
.admin-login-card label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.request-form-grid label > span,
.admin-login-card label > span {
  font-size: 13px;
  font-weight: 700;
}

.request-form-grid input:not([type="file"]),
.request-form-grid textarea,
.admin-login-card input {
  width: 100%;
  padding: 0 14px;
  color: var(--label-normal);
  background: #fff;
  border: 1px solid #d9dadd;
  border-radius: 9px;
}

.request-form-grid input:not([type="file"]),
.admin-login-card input {
  height: 50px;
}

.request-form-grid textarea {
  padding-top: 13px;
  resize: vertical;
}

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

.file-field {
  padding: 18px;
  background: var(--background-alt);
  border: 1px dashed #c8cbd1;
  border-radius: 12px;
}

.file-field input[type="file"] {
  width: 100%;
  max-width: 100%;
}

.file-field small {
  color: var(--label-assistive);
  font-size: 11px;
}

.privacy-consent {
  display: flex;
  padding: 22px;
  margin-top: 30px;
  background: var(--primary-pale);
  border: 1px solid #dceaff;
  border-radius: 14px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.privacy-consent strong {
  font-size: 14px;
}

.privacy-consent p {
  margin: 6px 0;
  color: var(--label-alternative);
  font-size: 11px;
}

.privacy-consent a {
  color: var(--primary);
  font-size: 11px;
  text-decoration: underline;
}

.privacy-consent label {
  display: flex;
  min-width: 120px;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
}

.request-submit {
  margin-top: 20px;
}

.form-status {
  min-height: 20px;
  margin: 12px 0 0;
  color: var(--green);
  font-size: 12px;
  text-align: center;
}

.form-status.error {
  color: var(--red);
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
}

.success-dialog {
  width: min(calc(100% - 40px), 460px);
  padding: 42px;
  border: 0;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(23, 23, 25, 0.22);
}

.success-dialog::backdrop,
.project-dialog::backdrop {
  background: rgba(12, 18, 28, 0.55);
  backdrop-filter: blur(5px);
}

.success-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  color: #fff;
  background: var(--primary);
  border-radius: 50%;
  place-items: center;
  font-size: 28px;
}

.success-dialog > span {
  color: var(--primary);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.success-dialog h2 {
  margin: 10px 0;
  font-size: 25px;
}

.success-dialog p {
  margin: 0 0 24px;
  color: var(--label-alternative);
  font-size: 14px;
  line-height: 1.7;
}

/* Policy and notice */
.policy-page,
.notice-section,
.notice-view-section {
  padding: 88px 0 120px;
}

.policy-content {
  max-width: 900px;
}

.policy-intro {
  padding: 28px;
  margin: 0 0 55px;
  color: var(--label-neutral);
  background: var(--primary-pale);
  border-radius: 16px;
  line-height: 1.8;
}

.policy-content section {
  padding: 30px 0;
  border-bottom: 1px solid var(--line-neutral);
}

.policy-content h2 {
  margin: 0 0 12px;
  font-size: 20px;
}

.policy-content section p {
  margin: 0;
  color: var(--label-neutral);
  line-height: 1.9;
}

.policy-content section a {
  color: var(--primary);
  text-decoration: underline;
}

.notice-list-head {
  display: flex;
  padding-bottom: 22px;
  border-bottom: 2px solid var(--label-normal);
  justify-content: space-between;
  font-size: 13px;
}

.notice-list-head span {
  color: var(--label-assistive);
}

.notice-list > a {
  display: grid;
  min-height: 82px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line-normal);
  grid-template-columns: 70px 1fr 120px;
  align-items: center;
  gap: 20px;
  transition: background 180ms ease, padding 180ms ease;
}

.notice-list > a:hover {
  padding-right: 26px;
  padding-left: 26px;
  background: var(--primary-pale);
}

.notice-list > a > span,
.notice-list time {
  color: var(--label-assistive);
  font-size: 12px;
}

.notice-list time {
  text-align: right;
}

.notice-view {
  max-width: 900px;
}

.notice-view header {
  padding-bottom: 34px;
  border-bottom: 2px solid var(--label-normal);
}

.notice-view header > a {
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.notice-view h1 {
  margin: 12px 0;
  font-size: 38px;
}

.notice-view time {
  color: var(--label-assistive);
  font-size: 12px;
}

.notice-body {
  min-height: 280px;
  padding: 48px 4px;
  color: var(--label-neutral);
  line-height: 1.9;
}

.notice-attachments {
  display: flex;
  padding: 18px 20px;
  margin-bottom: 28px;
  background: var(--background-alt);
  border-radius: 10px;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-size: 12px;
}

.notice-attachments a {
  color: var(--primary);
  text-decoration: underline;
}

/* Admin dashboard */
.admin-page {
  min-height: 100vh;
  background: #f3f5f8;
}

.admin-login-shell {
  display: grid;
  min-height: 100vh;
  padding: 24px;
  background:
    radial-gradient(circle at 80% 20%, rgba(0, 102, 255, 0.22), transparent 28%),
    linear-gradient(135deg, #eef5ff, #f7f7f8 52%, #f0edff);
  place-items: center;
}

.admin-login-card {
  display: block;
  width: min(100%, 440px);
  padding: 42px;
  background: #fff;
  border: 1px solid rgba(225, 226, 228, 0.8);
  border-radius: 26px;
  box-shadow: 0 28px 70px rgba(0, 58, 145, 0.14);
}

.admin-login-brand {
  display: inline-flex;
  margin-bottom: 42px;
  flex-direction: column;
  line-height: 1;
}

.admin-login-brand strong {
  font-size: 24px;
  letter-spacing: -0.055em;
}

.admin-login-brand small {
  margin-top: 5px;
  color: var(--label-assistive);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.admin-login-card > div > span {
  color: var(--primary);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.admin-login-card h1 {
  margin: 9px 0;
  font-size: 30px;
}

.admin-login-card > div > p {
  margin: 0 0 28px;
  color: var(--label-alternative);
  font-size: 13px;
}

.admin-login-card form {
  display: grid;
  width: 100%;
  max-width: none;
  gap: 16px;
}

.admin-back-link {
  display: block;
  margin-top: 22px;
  color: var(--label-assistive);
  font-size: 12px;
  text-align: center;
}

.admin-app {
  display: grid;
  min-height: 100vh;
  grid-template-columns: 260px minmax(0, 1fr);
}

.admin-page .admin-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 10;
  display: flex;
  width: 260px;
  padding: 30px 20px 22px;
  color: #fff;
  background: #111318;
  flex-direction: column;
}

.admin-sidebar-brand {
  display: flex;
  padding: 0 12px 32px;
  flex-direction: column;
  line-height: 1;
}

.admin-sidebar-brand strong {
  font-size: 23px;
  letter-spacing: -0.055em;
}

.admin-sidebar-brand small {
  margin-top: 5px;
  color: #70737c;
  font-size: 8px;
  letter-spacing: 0.12em;
}

.admin-page .admin-sidebar nav {
  display: grid;
  gap: 6px;
}

.admin-page .admin-sidebar nav button,
.admin-sidebar-bottom > a,
.admin-sidebar-bottom > button {
  display: flex;
  min-height: 46px;
  padding: 0 13px;
  color: #989ba2;
  background: transparent;
  border-radius: 9px;
  align-items: center;
  gap: 11px;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
}

.admin-page .admin-sidebar nav button > span,
.admin-sidebar-bottom > * > span {
  width: 18px;
  color: #70737c;
  text-align: center;
}

.admin-page .admin-sidebar nav button:hover,
.admin-page .admin-sidebar nav button.active,
.admin-sidebar-bottom > a:hover,
.admin-sidebar-bottom > button:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.admin-page .admin-sidebar nav button.active > span {
  color: #69a5ff;
}

.admin-page .admin-sidebar nav i {
  display: inline-grid;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  margin-left: auto;
  color: #fff;
  background: var(--red);
  border-radius: 999px;
  place-items: center;
  font-size: 9px;
  font-style: normal;
}

.admin-sidebar-bottom {
  display: grid;
  margin-top: auto;
  gap: 5px;
}

.admin-sidebar-bottom > button b {
  font-size: 12px;
}

.admin-current-user {
  display: flex;
  padding: 18px 12px 12px;
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  align-items: center;
  gap: 10px;
}

.admin-current-user > i {
  width: 9px;
  height: 9px;
  background: var(--green);
  border: 2px solid rgba(0, 191, 64, 0.25);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(0, 191, 64, 0.1);
}

.admin-current-user small,
.admin-current-user strong {
  display: block;
}

.admin-current-user small {
  color: #70737c;
  font-size: 9px;
}

.admin-current-user strong {
  margin-top: 2px;
  font-size: 12px;
}

.admin-logout-button {
  color: #f58a93 !important;
}

.admin-main {
  min-width: 0;
  margin-left: 0;
  grid-column: 2;
}

.admin-topbar {
  display: flex;
  min-height: 104px;
  padding: 0 40px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line-normal);
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(12px);
}

.admin-topbar span {
  color: var(--primary);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.admin-topbar h1 {
  margin: 4px 0 0;
  font-size: 25px;
}

.admin-page .admin-content {
  padding: 36px 40px 70px;
}

.admin-page .admin-panel {
  display: none;
}

.admin-page .admin-panel.active {
  display: block;
}

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

.admin-stat-grid article {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line-neutral);
  border-radius: 18px;
  box-shadow: var(--shadow-small);
}

.admin-stat-grid article.accent {
  color: #fff;
  background: linear-gradient(135deg, #0054d1, #0066ff);
  border-color: transparent;
}

.admin-stat-grid span {
  color: var(--label-assistive);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.admin-stat-grid .accent span,
.admin-stat-grid .accent p {
  color: rgba(255, 255, 255, 0.7);
}

.admin-stat-grid strong {
  display: block;
  margin: 12px 0 3px;
  font-size: 38px;
  line-height: 1;
}

.admin-stat-grid p {
  margin: 0;
  color: var(--label-assistive);
  font-size: 11px;
}

.admin-welcome {
  display: flex;
  min-height: 230px;
  padding: 42px;
  margin-top: 22px;
  background:
    radial-gradient(circle at 85% 30%, rgba(0, 102, 255, 0.22), transparent 26%),
    #fff;
  border: 1px solid var(--line-neutral);
  border-radius: 22px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.admin-welcome span {
  color: var(--primary);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.admin-welcome h2 {
  margin: 10px 0;
  font-size: 28px;
}

.admin-welcome p {
  margin: 0;
  color: var(--label-alternative);
  font-size: 13px;
}

.admin-page .admin-panel:not(#admin-overview-panel) {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line-neutral);
  border-radius: 20px;
  box-shadow: var(--shadow-small);
}

.admin-page .admin-panel-head {
  margin-bottom: 24px;
}

.admin-page .admin-panel-head h2 {
  margin: 0 0 5px;
}

.admin-page .admin-panel-head p {
  margin: 0;
  color: var(--label-assistive);
  font-size: 12px;
}

.admin-page .admin-table tbody tr {
  transition: background 180ms ease;
}

.admin-page .admin-table tbody tr.is-unread {
  background: #fff6f7;
}

.request-title-button {
  display: flex;
  padding: 0;
  background: transparent;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.request-title-button span,
.admin-table td > b,
.table-sub {
  display: block;
}

.request-title-button small,
.table-sub {
  margin-top: 4px;
  color: var(--label-assistive);
  font-size: 10px;
}

.unread-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(240, 68, 82, 0.12);
  animation: unread-pulse 1.4s ease infinite;
}

@keyframes unread-pulse {
  50% { box-shadow: 0 0 0 7px rgba(240, 68, 82, 0); }
}

.mail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.mail-badge,
.publish-badge {
  display: inline-flex;
  min-height: 23px;
  padding: 0 8px;
  color: #b4232f;
  background: #fff0f1;
  border-radius: 999px;
  align-items: center;
  font-size: 9px;
  font-weight: 800;
  white-space: nowrap;
}

.mail-badge.sent,
.publish-badge.published {
  color: #008a2e;
  background: #e9f9ee;
}

.table-more-button {
  padding: 7px 11px;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 7px;
  font-size: 11px;
  font-weight: 800;
}

.empty-admin-list {
  padding: 70px 20px;
  color: var(--label-assistive);
  text-align: center;
}

.request-detail-dialog {
  width: min(calc(100% - 40px), 760px);
}

.request-detail-grid {
  display: grid;
  margin: 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-normal);
  border: 1px solid var(--line-normal);
  border-radius: 12px;
  overflow: hidden;
}

.request-detail-grid > div {
  padding: 16px;
  background: #fff;
}

.request-detail-grid > div.wide {
  grid-column: 1 / -1;
}

.request-detail-grid dt {
  margin-bottom: 7px;
  color: var(--label-assistive);
  font-size: 10px;
  font-weight: 800;
}

.request-detail-grid dd {
  margin: 0;
  color: var(--label-neutral);
  font-size: 13px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.request-detail-grid a {
  color: var(--primary);
}

.notice-existing-files {
  display: grid;
  gap: 7px;
}

.notice-existing-files label,
.publish-check {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.admin-dark {
  --label-normal: #f4f4f5;
  --label-strong: #e1e2e4;
  --label-neutral: #c2c4c8;
  --label-alternative: #989ba2;
  --line-normal: #33363d;
  --line-neutral: #292c32;
  --background-alt: #1b1e24;
  background: #17191e;
}

.admin-dark .admin-topbar,
.admin-dark .admin-stat-grid article,
.admin-dark .admin-welcome,
.admin-dark .admin-panel:not(#admin-overview-panel),
.admin-dark .admin-table td,
.admin-dark .admin-table th,
.admin-dark .request-detail-grid > div,
.admin-dark .project-dialog {
  color: var(--label-normal);
  background-color: #202329;
  border-color: #30333a;
}

.admin-dark .admin-topbar,
.admin-dark .admin-page .admin-content {
  background: #17191e;
}

.admin-dark .admin-stat-grid article.accent {
  background: linear-gradient(135deg, #0054d1, #0066ff);
}

.admin-dark .admin-table tbody tr.is-unread {
  background: rgba(240, 68, 82, 0.1);
}

@media (max-width: 1050px) {
  .request-layout {
    grid-template-columns: 1fr;
  }

  .request-guide {
    position: static;
  }

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

@media (max-width: 900px) {
  .admin-app {
    display: block;
  }

  .admin-page .admin-sidebar {
    position: static;
    width: 100%;
    min-height: auto;
  }

  .admin-page .admin-sidebar nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-sidebar-bottom {
    margin-top: 22px;
  }

  .admin-main {
    margin-left: 0;
  }

  .admin-topbar,
  .admin-page .admin-content {
    padding-right: 22px;
    padding-left: 22px;
  }
}

@media (max-width: 767px) {
  .planning-notice-inner {
    padding: 8px 0;
  }

  .planning-notice p span {
    display: none;
  }

  .planning-notice a {
    font-size: 11px;
  }

  .toolbar-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .portfolio-search {
    width: 100%;
  }

  .final-cta-copy ul {
    flex-wrap: wrap;
  }

  .final-cta-actions {
    width: 100%;
  }

  .request-section,
  .policy-page,
  .notice-section,
  .notice-view-section {
    padding: 58px 0 90px;
  }

  .request-form-card {
    padding: 28px 20px;
  }

  .request-form-grid {
    grid-template-columns: 1fr;
  }

  .request-form-grid label {
    grid-column: 1;
  }

  .privacy-consent {
    align-items: flex-start;
    flex-direction: column;
  }

  .notice-list > a {
    min-height: 92px;
    padding: 16px 6px;
    grid-template-columns: 42px 1fr;
    gap: 8px;
  }

  .notice-list time {
    grid-column: 2;
    text-align: left;
  }

  .notice-view h1 {
    font-size: 30px;
  }

  .admin-stat-grid {
    grid-template-columns: 1fr;
  }

  .admin-welcome {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-topbar {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .admin-page .admin-panel:not(#admin-overview-panel) {
    padding: 20px 14px;
  }

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

  .request-detail-grid > div.wide {
    grid-column: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-list::after,
  .process-list li,
  .process-icon,
  .unread-dot {
    animation: none !important;
  }
}

/* veryEasy v9 refinements */
.process-list::before,
.process-list::after {
  top: 76px;
}

.portfolio-image-link {
  display: block;
  width: 100%;
  height: 100%;
}

.portfolio-overlay {
  pointer-events: none;
}

.portfolio-external-link {
  display: inline-flex;
  min-height: 42px;
  padding: 0 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 9px;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(8px);
  pointer-events: auto;
}

.detail-cover {
  width: 100%;
  height: auto;
  margin: 0;
  aspect-ratio: auto;
  object-fit: initial;
}

.detail-body .button svg {
  width: 19px;
  height: 19px;
}

.price-main-card {
  display: flex;
  flex-direction: column;
}

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

@media (max-width: 991px) {
  .process-list::after {
    display: none;
  }
}

/* veryEasy v11 hero keywords */
@keyframes hero-keyword-focus {
  0%, 14%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.78;
    text-shadow: 0 0 0 rgba(0, 102, 255, 0);
  }
  5%, 9% {
    transform: translateY(-4px) scale(1.02);
    opacity: 1;
    text-shadow: 0 6px 18px rgba(0, 102, 255, 0.16);
  }
}

@keyframes hero-keyword-glow {
  0% {
    opacity: 0;
    transform: translateX(-130%);
  }
  12%, 72% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(430%);
  }
}

.keyword-strip {
  overflow: hidden;
  min-height: 78px;
  padding: 12px 16px;
  margin-top: 60px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.94));
  border-color: rgba(0, 102, 255, 0.18);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(0, 70, 180, 0.1);
  gap: 10px;
}

.keyword-strip::before {
  position: absolute;
  top: -70%;
  left: 0;
  z-index: 0;
  width: 26%;
  height: 240%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.1), transparent);
  filter: blur(8px);
  pointer-events: none;
  animation: hero-keyword-glow 7.2s linear infinite;
}

.keyword-strip span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 48px;
  padding: 0 12px;
  color: var(--primary-heavy);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  align-items: center;
  justify-content: center;
  gap: 9px;
  flex: 1;
  font-size: 14px;
  font-weight: 800;
  animation: hero-keyword-focus 7.2s var(--motion-ease) infinite;
}

.keyword-strip span::before {
  width: 8px;
  height: 8px;
  content: "";
  background: currentColor;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(0, 102, 255, 0.09);
}

.keyword-strip span:nth-of-type(2) {
  color: #007d93;
  animation-delay: 1.4s;
}

.keyword-strip span:nth-of-type(2)::before {
  box-shadow: 0 0 0 5px rgba(0, 184, 217, 0.1);
}

.keyword-strip span:nth-of-type(3) {
  color: #5d42d6;
  animation-delay: 2.8s;
}

.keyword-strip span:nth-of-type(3)::before {
  box-shadow: 0 0 0 5px rgba(124, 92, 255, 0.1);
}

.keyword-strip span:nth-of-type(4) {
  color: #c92f79;
  animation-delay: 4.2s;
}

.keyword-strip span:nth-of-type(4)::before {
  box-shadow: 0 0 0 5px rgba(240, 68, 149, 0.09);
}

.keyword-strip i {
  position: relative;
  z-index: 1;
  flex: 0 0 4px;
  box-shadow: 0 0 0 5px rgba(0, 102, 255, 0.06);
}

@media (max-width: 767px) {
  .keyword-strip {
    padding: 14px;
    margin-top: 36px;
    border-radius: 18px;
    gap: 10px;
  }

  .keyword-strip span {
    min-height: 52px;
    padding: 8px 10px;
    background: transparent;
    border-radius: 0;
    font-size: 12px;
  }

  .keyword-strip span::before {
    width: 7px;
    height: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .keyword-strip::before,
  .keyword-strip span {
    animation: none !important;
  }
}

/* veryEasy v14 branding and admin refinements */
@keyframes hero-title-gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes page-hero-orbit {
  0%, 100% {
    opacity: 0.48;
    transform: translate3d(0, 0, 0) scale(0.96);
    box-shadow: 0 0 0 54px rgba(0, 102, 255, 0.025), 0 0 0 108px rgba(124, 92, 255, 0.018);
  }
  50% {
    opacity: 1;
    transform: translate3d(-10px, 8px, 0) scale(1.04);
    box-shadow: 0 0 0 62px rgba(0, 102, 255, 0.05), 0 0 0 122px rgba(124, 92, 255, 0.035);
  }
}

.brand {
  min-width: 172px;
}

.brand-main,
.admin-login-brand strong,
.admin-sidebar-brand strong {
  font-family: "Trebuchet MS", "Avenir Next", Arial, sans-serif;
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.07em;
}

.brand-very {
  color: currentColor;
}

.brand-easy {
  position: relative;
  margin-left: 1px;
  color: var(--primary);
}

.brand-easy::after {
  position: absolute;
  right: 1px;
  bottom: -2px;
  left: 3px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, currentColor 30%, currentColor 82%, transparent);
  border-radius: 999px;
  transform: rotate(-3deg);
}

.brand-by {
  margin-top: 5px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.brand-light .brand-very {
  color: #fff;
}

.brand-light .brand-easy,
.admin-sidebar-brand .brand-easy {
  color: #69a5ff;
}

@media (min-width: 992px) {
  .desktop-nav a {
    font-size: 16px;
  }
}

.header-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-color: transparent;
}

.header-cta::before {
  position: absolute;
  inset: -1px;
  z-index: 1;
  padding: 2px;
  content: "";
  opacity: 0;
  background: conic-gradient(
    from var(--border-angle),
    transparent 0deg 195deg,
    #0066ff 225deg,
    #7c5cff 270deg,
    #00b8d9 305deg,
    transparent 340deg 360deg
  );
  border-radius: inherit;
  pointer-events: none;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: border-orbit 2.8s linear infinite;
  transition: opacity 240ms ease;
}

.header-cta:hover {
  color: var(--label-normal);
  background: #fff;
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(0, 70, 180, 0.13);
}

.header-cta:hover::before {
  opacity: 1;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(105deg, #003e9c 0%, #0066ff 28%, #54a0ff 48%, #0054d1 68%, #003e9c 100%);
  background-size: 240% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  animation: hero-title-gradient 5.8s ease-in-out infinite;
}

.page-hero::before {
  will-change: transform, opacity, box-shadow;
  animation: page-hero-orbit 8s ease-in-out infinite;
}

.request-guide {
  isolation: isolate;
}

.request-guide::before {
  position: absolute;
  inset: -2px;
  z-index: 0;
  padding: 2px;
  content: "";
  background: conic-gradient(
    from var(--border-angle),
    transparent 0deg 160deg,
    #69a5ff 205deg,
    #7c5cff 258deg,
    #00b8d9 305deg,
    transparent 350deg
  );
  border-radius: inherit;
  pointer-events: none;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: border-orbit 3.6s linear infinite;
}

.request-guide > * {
  position: relative;
  z-index: 1;
}

.admin-panel-head-actions {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.request-bulk-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.request-bulk-actions > span {
  color: var(--label-assistive);
  font-size: 11px;
}

.request-bulk-actions > span b {
  color: var(--primary);
}

.request-table th:first-child,
.request-table td:first-child {
  width: 46px;
  padding-right: 4px;
  text-align: center;
}

.request-table th:nth-child(2) {
  width: 34%;
}

.request-select-head input,
.request-select-cell input,
.publish-check input {
  width: 18px !important;
  height: 18px;
  padding: 0 !important;
  margin: 0;
  flex: 0 0 18px;
  accent-color: var(--primary);
}

.publish-check {
  width: max-content;
  padding: 12px 14px;
  background: var(--primary-pale);
  border: 1px solid #dceaff;
  border-radius: 9px;
  justify-self: start;
}

.publish-check span {
  line-height: 1;
}

.visitor-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.visitor-stat-grid article {
  min-width: 0;
  padding: 24px;
  background: var(--background);
  border: 1px solid var(--line-neutral);
  border-radius: 16px;
  box-shadow: var(--shadow-small);
}

.visitor-stat-grid article.accent {
  color: #fff;
  background: linear-gradient(135deg, #003e9c, #0066ff);
  border-color: transparent;
}

.visitor-stat-grid article > span {
  color: var(--label-assistive);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.visitor-stat-grid article.accent > span,
.visitor-stat-grid article.accent > p {
  color: rgba(255, 255, 255, 0.72);
}

.visitor-stat-grid strong {
  display: block;
  margin: 13px 0 4px;
  font-size: 34px;
  line-height: 1;
}

.visitor-stat-grid p {
  margin: 0;
  color: var(--label-assistive);
  font-size: 11px;
}

.visit-trend {
  display: block;
  margin-top: 10px;
  color: var(--label-assistive);
  font-size: 10px;
  font-weight: 700;
}

.visit-trend.up {
  color: var(--green);
}

.visit-trend.down {
  color: var(--red);
}

.visitor-stat-grid .accent .visit-trend {
  color: rgba(255, 255, 255, 0.86);
}

.visitor-log-card {
  margin-top: 22px;
  border: 1px solid var(--line-neutral);
  border-radius: 16px;
  overflow: hidden;
}

.visitor-log-head {
  display: flex;
  min-height: 64px;
  padding: 0 20px;
  background: var(--background-alt);
  align-items: center;
  justify-content: space-between;
}

.visitor-log-head h3 {
  margin: 0;
  font-size: 16px;
}

.visitor-log-head span {
  color: var(--label-assistive);
  font-size: 10px;
}

.visitor-table th:first-child {
  width: 34%;
}

.visit-activity-link b,
.visit-activity-link small {
  display: block;
}

.visit-activity-link small {
  margin-top: 4px;
  color: var(--label-assistive);
  font-size: 10px;
}

.visit-country {
  display: flex;
  align-items: center;
  gap: 6px;
}

.visit-country b {
  font-size: 11px;
}

.admin-dark .visitor-stat-grid article,
.admin-dark .visitor-log-card {
  background: #17191d;
  border-color: #303239;
}

.admin-dark .visitor-stat-grid article.accent {
  background: linear-gradient(135deg, #003e9c, #0066ff);
}

.admin-dark .visitor-log-head {
  background: #202228;
}

@media (max-width: 1100px) {
  .visitor-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-panel-head-actions {
    flex-direction: column;
  }

  .request-bulk-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .visitor-stat-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero h1 span,
  .page-hero::before,
  .request-guide::before,
  .header-cta::before {
    animation: none !important;
  }
}
