:root {
  color-scheme: light;
  --bg: #f7f6f3;
  --bg-header: rgba(247, 246, 243, 0.92);
  --bg-footer: #f0efeb;
  --bg-dark: #0c0e11;
  --bg-dark-elevated: #14171c;
  --text: #2e2c28;
  --text-muted: #6f6b63;
  --text-on-dark: #f5f3ef;
  --text-muted-on-dark: rgba(245, 243, 239, 0.62);
  --accent: #4a667a;
  --accent-soft: #7a9bb3;
  --border: rgba(46, 44, 40, 0.1);
  --border-on-dark: rgba(255, 255, 255, 0.1);
  --max: 960px;
  --max-wide: 1120px;
  --legal-max: 680px;
  --font: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', -apple-system, BlinkMacSystemFont, sans-serif;
  --header-height: 80px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  background: var(--bg-header);
  border-bottom: 1px solid var(--border);
  transition:
    background 0.55s var(--ease-out),
    border-color 0.55s var(--ease-out),
    box-shadow 0.55s var(--ease-out);
}

.page-home .site-header--overlay {
  background: rgba(10, 12, 15, 0.12);
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

.page-home .site-header--overlay.is-scrolled {
  background: rgba(12, 14, 17, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
}

.page-home .site-header--overlay .site-brand,
.page-home .site-header--overlay .site-nav-link,
.page-home .site-header--overlay .site-nav-trigger {
  color: rgba(255, 255, 255, 0.92);
}

.page-home .site-header--overlay .site-brand:hover {
  color: #fff;
}

.page-home .site-header--overlay .site-nav-link:hover,
.page-home .site-header--overlay .site-nav-link.is-active,
.page-home .site-header--overlay .site-nav-dropdown:hover .site-nav-trigger,
.page-home .site-header--overlay .site-nav-dropdown.is-open .site-nav-trigger,
.page-home .site-header--overlay .site-nav-dropdown:focus-within .site-nav-trigger {
  color: #fff;
}

.page-home .site-header--overlay .site-nav-menu {
  background: rgba(20, 23, 28, 0.96);
  border-color: var(--border-on-dark);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

.page-home .site-header--overlay .site-nav-menu-link {
  color: var(--text-on-dark);
}

.page-home .site-header--overlay .site-nav-menu-link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-on-dark);
}

.site-header-inner,
.site-footer-inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
}

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

.site-brand {
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  transition: color 0.35s var(--ease-out), opacity 0.35s var(--ease-out);
}

.site-brand:hover {
  color: var(--text);
  text-decoration: none;
  opacity: 0.85;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
}

.site-nav-link {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.35s var(--ease-out);
}

.site-nav-link:hover,
.site-nav-link.is-active {
  color: var(--text);
  text-decoration: none;
}

.site-nav-dropdown {
  position: relative;
}

.site-nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.35s var(--ease-out);
}

.site-nav-dropdown:hover .site-nav-trigger,
.site-nav-dropdown.is-open .site-nav-trigger,
.site-nav-dropdown:focus-within .site-nav-trigger {
  color: var(--text);
}

.site-nav-chevron {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}

.site-nav-dropdown:hover .site-nav-chevron,
.site-nav-dropdown.is-open .site-nav-chevron,
.site-nav-dropdown:focus-within .site-nav-chevron {
  transform: rotate(-135deg) translateY(-2px);
}

.site-nav-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 168px;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(46, 44, 40, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 30;
}

.site-nav-dropdown:hover .site-nav-menu,
.site-nav-dropdown.is-open .site-nav-menu,
.site-nav-dropdown:focus-within .site-nav-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav-menu-link {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--text);
  font-size: 0.92rem;
  text-decoration: none;
}

.site-nav-menu-link:hover {
  background: var(--bg);
  color: var(--text);
  text-decoration: none;
}

.page-main {
  flex: 1;
}

.page-main.page-home {
  min-height: auto;
  padding-top: 0;
}

.page-main:not(.page-home) {
  min-height: 48vh;
  padding-top: var(--header-height);
}

.site-footer {
  margin-top: auto;
  padding: 32px 0 40px;
  background: var(--bg-footer);
  border-top: 1px solid var(--border);
}

.site-footer-brand {
  margin: 0 0 12px;
  font-weight: 600;
  font-size: 0.95rem;
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.site-footer-links a {
  color: var(--text-muted);
}

.site-footer-links a:hover {
  color: var(--accent);
}

.site-footer-copy {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.84rem;
}

.page-wrap,
.hero-inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
}

/* ── Cinematic hero ── */
.hero-cinematic {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: calc(var(--header-height) + 24px) 0 clamp(96px, 14vh, 128px);
  overflow: hidden;
  color: var(--text-on-dark);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #0a0c0f;
}

.hero-backdrop-image {
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.06);
  will-change: transform;
  animation: hero-ken-burns 24s ease-in-out infinite alternate;
}

.hero-backdrop-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 40%, transparent 30%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 35%, rgba(0, 0, 0, 0.65) 100%);
  pointer-events: none;
}

.hero-backdrop-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 15% 85%, rgba(74, 102, 122, 0.35), transparent 60%),
    radial-gradient(ellipse 40% 35% at 85% 20%, rgba(122, 155, 179, 0.15), transparent 55%);
  pointer-events: none;
}

.hero-backdrop-grain {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@keyframes hero-ken-burns {
  from { transform: scale(1.06) translateY(0); }
  to { transform: scale(1.12) translateY(-1.5%); }
}

.hero-inner--cinematic {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.hero-inner--typo {
  display: block;
  max-width: var(--max-wide);
  margin: 0 auto;
}

.hero-cinematic--typo {
  min-height: min(100svh, 920px);
}

.hero-cinematic--typo .hero-copy {
  max-width: min(100%, 30rem);
  padding-bottom: 8px;
}

.hero-cinematic .hero-copy {
  max-width: min(100%, 20rem);
  padding-bottom: 8px;
}

/* ── Home intro: hero + studio share one sky ── */
.home-intro {
  position: relative;
  overflow: hidden;
  color: var(--text-on-dark);
}

.home-intro-backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #0a0c0f;
  pointer-events: none;
}

.home-intro-backdrop-image {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center 32%;
  transform: scale(1.05);
  will-change: transform;
  animation: home-sky-ken-burns 26s ease-in-out infinite alternate;
}

.home-intro-backdrop-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 92% 72% at 50% 38%, transparent 28%, rgba(0, 0, 0, 0.52) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, transparent 32%, rgba(0, 0, 0, 0.35) 72%, #0a0c0f 100%);
  pointer-events: none;
}

.home-intro-backdrop-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 48% 42% at 18% 82%, rgba(74, 102, 122, 0.32), transparent 62%),
    radial-gradient(ellipse 38% 34% at 82% 22%, rgba(122, 155, 179, 0.14), transparent 58%);
  pointer-events: none;
}

.home-intro-backdrop-grain {
  position: absolute;
  inset: 0;
  opacity: 0.042;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@keyframes home-sky-ken-burns {
  from { transform: scale(1.05) translateY(0); }
  to { transform: scale(1.1) translateY(-1.2%); }
}

.home-intro .hero-cinematic,
.home-intro .studio-section--unified {
  position: relative;
  z-index: 1;
  background: transparent;
}

.home-intro .studio-section--unified {
  padding: clamp(40px, 8vw, 72px) 0 clamp(80px, 12vw, 128px);
}

.hero-cinematic .hero-eyebrow {
  margin: 0 0 16px;
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.hero-cinematic .hero-eyebrow::before {
  display: none;
}

.hero-cinematic .hero-title {
  margin: 0 0 20px;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: 0.04em;
}

.hero-cinematic .hero-title-line {
  display: block;
}

@media (min-width: 721px) {
  .hero-cinematic .hero-title-line:nth-child(1),
  .hero-cinematic .hero-title-line:nth-child(2) {
    display: inline;
  }

  .hero-cinematic .hero-title-line:nth-child(2)::after {
    content: '\A';
    white-space: pre;
  }
}

.hero-cinematic .hero-lead {
  margin: 0;
  max-width: 22em;
  color: rgba(255, 255, 255, 0.55);
  font-size: clamp(0.88rem, 1.6vw, 1rem);
  line-height: 1.8;
  font-weight: 400;
}

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

.hero-animate {
  opacity: 0;
  transform: translateY(22px);
  animation: hero-enter 0.95s var(--ease-out) forwards;
  animation-delay: calc(0.12s * var(--i, 0) + 0.15s);
}

@keyframes hero-enter {
  to { opacity: 1; transform: translateY(0); }
}

.button--ghost {
  min-height: 46px;
  padding: 0 26px;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition:
    border-color 0.3s var(--ease-out),
    background 0.3s var(--ease-out),
    color 0.3s var(--ease-out);
}

.button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  text-decoration: none;
  transform: none;
}

.button--ghost.button--muted {
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.55);
}

.button--ghost.button--muted:hover {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.4);
}

.section-bridge {
  height: clamp(32px, 5vw, 56px);
  margin-top: -1px;
  background: linear-gradient(180deg, #0c0e11 0%, #0a0c0f 100%);
}

.hero-visual--backdrop {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0.35;
}

.hero-visual--backdrop .hero-image-slot {
  width: 100%;
  max-width: none;
  height: 100%;
  aspect-ratio: auto;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-visual--backdrop .hero-image-slot-label {
  color: rgba(255, 255, 255, 0.18);
}

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 32px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transform: translateX(-50%);
  transition: color 0.25s ease;
}

.hero-scroll-cue:hover {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.hero-scroll-cue-label {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.hero-scroll-cue-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), transparent);
  animation: hero-scroll-pulse 2.2s ease-in-out infinite;
}

@keyframes hero-scroll-pulse {
  0%, 100% { opacity: 0.35; transform: scaleY(0.7); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal[data-reveal-delay="1"] { transition-delay: 0.1s; }
.reveal[data-reveal-delay="2"] { transition-delay: 0.2s; }
.reveal[data-reveal-delay="3"] { transition-delay: 0.3s; }
.reveal[data-reveal-delay="4"] { transition-delay: 0.4s; }

.hero-home {
  padding: 88px 0 64px;
}

.studio-section {
  position: relative;
  padding: clamp(56px, 10vw, 100px) 0 clamp(72px, 12vw, 120px);
  overflow: hidden;
  color: var(--text-on-dark);
}

.studio-backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #0a0c0f;
}

.studio-backdrop-image {
  position: absolute;
  inset: -6%;
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.04);
  will-change: transform;
  animation: studio-ken-burns 28s ease-in-out infinite alternate;
}

.studio-backdrop-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 65% at 50% 45%, transparent 25%, rgba(0, 0, 0, 0.5) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

.studio-backdrop-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 45% 35% at 20% 80%, rgba(74, 102, 122, 0.28), transparent 60%),
    radial-gradient(ellipse 35% 30% at 80% 25%, rgba(122, 155, 179, 0.12), transparent 55%);
  pointer-events: none;
}

.studio-backdrop-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@keyframes studio-ken-burns {
  from { transform: scale(1.04) translateY(0); }
  to { transform: scale(1.09) translateY(-1%); }
}

.studio-section-inner {
  position: relative;
  z-index: 1;
}

.studio-section .section-eyebrow {
  color: rgba(255, 255, 255, 0.5);
}

.section-intro {
  margin-bottom: 48px;
}

.studio-lead {
  margin: 12px 0 0;
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.04em;
  max-width: 18em;
  color: var(--text-on-dark);
}

.studio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.studio-card {
  position: relative;
  padding: 32px 26px 28px;
  border-radius: 16px;
  border: 1px solid var(--border-on-dark);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  color: var(--text-on-dark);
  overflow: hidden;
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out),
    border-color 0.4s var(--ease-out);
}

.studio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-soft), rgba(122, 155, 179, 0.15));
  opacity: 0;
  transition: opacity 0.35s var(--ease-out);
}

.studio-card:hover {
  transform: translateY(-6px);
  border-color: rgba(122, 155, 179, 0.4);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
}

.studio-card:hover::before {
  opacity: 1;
}

.studio-card-index {
  display: block;
  margin-bottom: 18px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--accent-soft);
}

.studio-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 600;
}

.studio-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted-on-dark);
}

.studio-cta {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted-on-dark);
}

.studio-cta a {
  color: var(--accent-soft);
}

@media (max-width: 720px) {
  .hero-cinematic {
    align-items: flex-end;
    padding-bottom: 112px;
  }

  .hero-cinematic--typo {
    min-height: min(92svh, 820px);
  }

  .hero-cinematic .hero-title {
    font-size: clamp(1.85rem, 8.2vw, 2.65rem);
    letter-spacing: 0.03em;
  }

  .hero-cinematic .hero-title-line {
    display: block;
  }

  .hero-cinematic--typo .hero-copy {
    max-width: none;
  }

  .hero-actions {
    margin-top: 28px;
  }

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

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

  .hero-scroll-cue-line,
  .hero-backdrop-image,
  .studio-backdrop-image,
  .home-intro-backdrop-image,
  .hero-animate {
    animation: none;
  }

  .hero-animate {
    opacity: 1;
    transform: none;
  }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.hero-eyebrow {
  margin: 0 0 14px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-title {
  margin: 0 0 18px;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.hero-lead {
  margin: 0;
  max-width: 28em;
  color: var(--text-muted);
  font-size: 1rem;
}

.hero-visual {
  margin: 0;
  display: flex;
  justify-content: center;
}

.hero-image-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 3 / 2;
  border-radius: 12px;
  border: 2px dashed rgba(46, 44, 40, 0.18);
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.hero-image-slot-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: rgba(46, 44, 40, 0.22);
}

.hero-title--draft .hero-title-placeholder,
.hero-lead--draft {
  color: rgba(46, 44, 40, 0.35);
  border: 1px dashed rgba(46, 44, 40, 0.16);
  border-radius: 8px;
  padding: 4px 10px;
  display: inline-block;
}

.hero-title--draft {
  margin: 0 0 18px;
}

.hero-lead--draft {
  margin: 0;
  max-width: 28em;
  font-size: 0.95rem;
  font-style: normal;
}

.hero-image {
  width: 100%;
  max-width: 520px;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 48px rgba(46, 44, 40, 0.1);
}

.hero-image--placeholder {
  width: min(100%, 520px);
  aspect-ratio: 3 / 2;
  border-radius: 16px;
  background: linear-gradient(135deg, #e8edf2 0%, #f2f0ec 50%, #f7f6f3 100%);
}

.intro-section {
  padding-top: 8px;
  padding-bottom: 56px;
}

.intro-text {
  margin: 0 0 20px;
  max-width: 40em;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.intro-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.intro-point {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.intro-text--draft,
.intro-point--draft {
  color: rgba(46, 44, 40, 0.35);
  border-style: dashed;
}

.intro-text--draft {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px dashed rgba(46, 44, 40, 0.16);
}

.intro-point--draft {
  background: #fff;
}

.service-marquee-section {
  padding: clamp(64px, 10vw, 96px) 0 clamp(72px, 12vw, 104px);
  overflow: hidden;
}

.service-marquee-section--dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  position: relative;
}

.service-marquee-section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 0%, rgba(74, 102, 122, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 100%, rgba(122, 155, 179, 0.08), transparent 50%);
  pointer-events: none;
}

.service-marquee-section--dark > * {
  position: relative;
  z-index: 1;
}

.service-marquee-section--dark .section-eyebrow,
.service-marquee-section--dark .section-lead {
  color: var(--text-muted-on-dark);
}

.service-marquee-section--dark .section-title {
  color: var(--text-on-dark);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: 0.04em;
}

.service-marquee-section--dark .section-lead {
  max-width: 28em;
  margin-top: 12px;
  font-size: 0.98rem;
  line-height: 1.75;
}

.service-marquee-head {
  padding-bottom: 28px;
}

.service-spotlight {
  padding-bottom: clamp(48px, 8vw, 72px);
}

.service-spotlight-card {
  display: grid;
  grid-template-columns: minmax(200px, 280px) 1fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
  padding: clamp(24px, 4vw, 32px);
  border-radius: 20px;
  border: 1px solid var(--border-on-dark);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  color: var(--text-on-dark);
  text-decoration: none;
  transition:
    border-color 0.35s var(--ease-out),
    transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out);
}

.service-spotlight-card:hover {
  border-color: rgba(122, 155, 179, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.35);
  text-decoration: none;
  color: var(--text-on-dark);
}

.service-spotlight-visual {
  position: relative;
  justify-self: center;
}

.service-spotlight-shot {
  display: block;
  width: 100%;
  max-width: 240px;
  height: auto;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.service-spotlight-icon {
  position: absolute;
  right: -14px;
  bottom: -14px;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.service-spotlight-name {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.service-spotlight-tagline {
  margin: 8px 0 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-soft);
}

.service-spotlight-desc {
  margin: 14px 0 0;
  max-width: 36em;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-muted-on-dark);
}

.service-spotlight-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-spotlight-features li {
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted-on-dark);
  font-size: 0.78rem;
}

.service-spotlight-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-soft);
  transition: gap 0.25s var(--ease-out);
}

.service-spotlight-card:hover .service-spotlight-link {
  gap: 12px;
}

.service-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  opacity: 0.55;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.section-eyebrow {
  margin: 0 0 8px;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.service-marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-rtl 52s linear infinite;
}

.service-marquee:hover .service-marquee-track {
  animation-play-state: paused;
}

.service-marquee-group {
  display: flex;
  gap: 24px;
  padding-right: 24px;
}

.service-marquee-card {
  display: grid;
  grid-template-columns: 188px 1fr;
  gap: 20px;
  align-items: start;
  width: min(88vw, 580px);
  min-width: min(88vw, 580px);
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--border-on-dark);
  background: var(--bg-dark-elevated);
  color: var(--text-on-dark);
  text-decoration: none;
  transition: border-color 0.3s ease, transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.service-marquee-card:hover {
  border-color: rgba(122, 155, 179, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
  text-decoration: none;
  color: var(--text-on-dark);
}

.service-marquee-section--dark .service-marquee-shot {
  border-color: rgba(255, 255, 255, 0.08);
  background: #0a0c0f;
}

.service-marquee-section--dark .service-marquee-name {
  color: var(--text-on-dark);
}

.service-marquee-section--dark .service-marquee-tagline {
  color: var(--text-on-dark);
}

.service-marquee-section--dark .service-marquee-desc {
  color: var(--text-muted-on-dark);
}

.service-marquee-section--dark .service-marquee-features li {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted-on-dark);
}

.service-marquee-section--dark .service-marquee-badge {
  color: var(--accent-soft);
}

.service-marquee-visual {
  position: relative;
}

.service-marquee-shot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--bg);
}

.service-marquee-shot--placeholder {
  aspect-ratio: 9 / 19.5;
  background: linear-gradient(165deg, #e8edf2, #f7f6f3);
}

.service-marquee-icon {
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 2px solid #fff;
  box-shadow: 0 10px 24px rgba(46, 44, 40, 0.12);
}

.service-marquee-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.service-marquee-badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.service-marquee-name {
  margin: 0;
  font-size: 1.28rem;
  font-weight: 600;
  line-height: 1.3;
}

.service-marquee-tagline {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}

.service-marquee-desc {
  margin: 4px 0 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.service-marquee-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.service-marquee-features li {
  padding: 5px 9px;
  border-radius: 6px;
  background: var(--bg);
  color: var(--text-muted);
  font-size: 0.76rem;
}

@keyframes marquee-rtl {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 640px) {
  .service-spotlight-card {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .service-spotlight-visual {
    max-width: 200px;
    margin: 0 auto;
  }

  .service-marquee-card {
    grid-template-columns: 1fr;
    width: min(92vw, 360px);
    min-width: min(92vw, 360px);
  }

  .service-marquee-visual {
    max-width: 220px;
    margin: 0 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-marquee-track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
    justify-content: center;
    padding: 0 24px;
    gap: 16px;
  }

  .service-marquee {
    mask-image: none;
  }

  .service-marquee-group {
    flex-wrap: wrap;
    justify-content: center;
    padding-right: 0;
  }

  .service-marquee-group:last-child {
    display: none;
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font-size: 0.92rem;
  text-decoration: none;
}

.button:hover {
  border-color: rgba(74, 102, 122, 0.35);
  color: var(--text);
  text-decoration: none;
}

.section-title {
  margin: 0 0 8px;
  font-size: 1.35rem;
  font-weight: 600;
}

.section-lead {
  margin: 0 0 24px;
  color: var(--text-muted);
}

.info-card,
.card,
.legal-section {
  padding: 18px 20px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--border);
}

.legal-main {
  max-width: var(--legal-max);
  margin: 0 auto;
  padding: 48px 24px 56px;
}

.legal-main h1 {
  margin: 0 0 10px;
  font-size: 1.6rem;
  font-weight: 600;
}

.legal-meta {
  color: var(--text-muted);
  margin-bottom: 12px;
}

.legal-preamble {
  margin: 0 0 24px;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.94rem;
}

.legal-section + .legal-section {
  margin-top: 16px;
}

.legal-section h2 {
  margin: 0 0 12px;
  font-size: 1.05rem;
  font-weight: 600;
}

.legal-section p {
  margin: 0 0 10px;
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 0.92rem;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-back {
  margin-top: 24px;
  font-size: 0.92rem;
}

.support-main {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 72px) clamp(20px, 4vw, 40px) clamp(64px, 10vw, 88px);
}

.support-main h1 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 4vw, 1.85rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.support-lead {
  margin: 0 0 40px;
  max-width: 36em;
  color: var(--text-muted);
  line-height: 1.8;
}

.support-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
}

.support-card {
  padding: clamp(22px, 3vw, 28px);
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
}

.support-card h2 {
  margin: 0 0 12px;
  font-size: 1.05rem;
  font-weight: 600;
}

.support-card p {
  margin: 0 0 12px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.support-card p:last-child {
  margin-bottom: 0;
}

.support-card--primary {
  border-color: rgba(74, 102, 122, 0.22);
  background: linear-gradient(165deg, #f8fafc 0%, #fff 55%);
}

.support-steps {
  margin: 0;
  padding-left: 1.2em;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.8;
}

.support-steps li + li {
  margin-top: 6px;
}

.support-mail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 4px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid rgba(74, 102, 122, 0.35);
  background: #fff;
  color: var(--text);
  font-size: 0.92rem;
  text-decoration: none;
  transition:
    border-color 0.25s var(--ease-out),
    background 0.25s var(--ease-out);
}

.support-mail:hover {
  border-color: rgba(74, 102, 122, 0.55);
  background: #f8fafc;
  color: var(--text);
  text-decoration: none;
}

.support-note {
  margin: 0;
  padding: 16px 18px;
  border-radius: 10px;
  background: var(--bg-footer);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.support-note strong {
  color: var(--text);
  font-weight: 600;
}

.support-faq {
  margin-top: 40px;
}

.support-faq h2 {
  margin: 0 0 16px;
  font-size: 1.05rem;
  font-weight: 600;
}

.support-faq-item + .support-faq-item {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.support-faq-item h3 {
  margin: 0 0 6px;
  font-size: 0.95rem;
  font-weight: 600;
}

.support-faq-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.support-flow {
  margin-bottom: 40px;
  padding: clamp(22px, 3vw, 28px);
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
}

.support-flow h2 {
  margin: 0 0 16px;
  font-size: 1.05rem;
  font-weight: 600;
}

.support-service-list {
  display: grid;
  gap: 12px;
}

.support-service-pick {
  display: block;
  width: 100%;
  padding: 18px 20px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: linear-gradient(165deg, #f8fafc 0%, #fff 70%);
  text-align: left;
  cursor: pointer;
  transition:
    border-color 0.25s var(--ease-out),
    transform 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out);
}

.support-service-pick:hover {
  border-color: rgba(74, 102, 122, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(46, 44, 40, 0.08);
}

.support-service-pick-label {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.support-service-pick-desc {
  display: block;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.support-form-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.support-form-service {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.support-form-service strong {
  color: var(--text);
}

.support-back {
  padding: 0;
  border: none;
  background: none;
  color: var(--accent);
  font: inherit;
  font-size: 0.88rem;
  cursor: pointer;
}

.support-back:hover {
  text-decoration: underline;
}

.support-field {
  margin-bottom: 18px;
}

.support-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.88rem;
  font-weight: 600;
}

.support-field input[type="email"],
.support-field select,
.support-field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font: inherit;
  font-size: 0.92rem;
  line-height: 1.6;
  transition: border-color 0.2s ease;
}

.support-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236f6b63' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.support-field input[type="email"]:focus,
.support-field select:focus,
.support-field textarea:focus {
  outline: none;
  border-color: rgba(74, 102, 122, 0.45);
}

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

.support-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.support-chip {
  cursor: pointer;
}

.support-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.support-chip span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-muted);
  font-size: 0.88rem;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.support-chip input:checked + span {
  border-color: rgba(74, 102, 122, 0.45);
  background: rgba(74, 102, 122, 0.08);
  color: var(--text);
  font-weight: 600;
}

.support-counter {
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 0.8rem;
  text-align: right;
}

.support-error {
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(184, 92, 92, 0.35);
  background: rgba(184, 92, 92, 0.08);
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.6;
}

.support-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid rgba(74, 102, 122, 0.45);
  background: var(--accent);
  color: #fff;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.support-submit:hover:not(:disabled) {
  opacity: 0.92;
}

.support-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.support-alt {
  margin: 18px 0 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.support-done {
  text-align: left;
}

.support-done-title {
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-weight: 600;
}

.support-done-id {
  margin: 0 0 12px;
  padding: 14px 16px;
  border-radius: 10px;
  background: var(--bg-footer);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  line-height: 1.7;
}

.support-done-id code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.86rem;
}

.support-done-warning {
  margin: 0 0 16px;
  color: #9a5b00;
  font-size: 0.88rem;
  line-height: 1.7;
  white-space: pre-line;
}

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

.card h2 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 600;
}

.card p {
  margin: 0 0 10px;
  color: var(--text-muted);
  line-height: 1.75;
}

.card p:last-child {
  margin-bottom: 0;
}

.page-home .site-footer {
  border-top: none;
}

.site-footer--dark {
  padding: clamp(48px, 8vw, 64px) 0 40px;
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.site-footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px 40px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-on-dark);
}

.site-footer-brand-block .site-footer-brand {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer-tagline {
  margin: 10px 0 0;
  max-width: 20em;
  color: var(--text-muted-on-dark);
  font-size: 0.88rem;
  line-height: 1.65;
}

.site-footer--dark .site-footer-links {
  margin: 0;
  gap: 10px 20px;
}

.site-footer--dark .site-footer-links a {
  color: var(--text-muted-on-dark);
  transition: color 0.25s ease;
}

.site-footer--dark .site-footer-links a:hover {
  color: var(--text-on-dark);
  text-decoration: none;
}

.site-footer--dark .site-footer-copy {
  color: rgba(245, 243, 239, 0.38);
}

@media (max-width: 520px) {
  .site-header-inner,
  .site-footer-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-nav-menu {
    right: 0;
    left: auto;
  }
}

/* ── そらにっき サービスページ ── */
.page-soranikki {
  --sky-bg: #0c0f14;
  --sky-elevated: #161b24;
  --sky-text: #ece8e0;
  --sky-muted: #8a939e;
  --sky-accent: #a8c4e0;
  --sky-border: rgba(236, 232, 224, 0.1);
  background: var(--sky-bg);
  color: var(--sky-text);
}

.page-soranikki .site-header {
  background: rgba(12, 15, 20, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.page-soranikki .site-brand,
.page-soranikki .site-nav-link,
.page-soranikki .site-nav-trigger {
  color: rgba(255, 255, 255, 0.92);
}

.page-soranikki .site-nav-link:hover,
.page-soranikki .site-nav-link.is-active,
.page-soranikki .site-nav-dropdown:hover .site-nav-trigger,
.page-soranikki .site-nav-dropdown.is-open .site-nav-trigger {
  color: #fff;
}

.page-soranikki .site-nav-menu {
  background: rgba(20, 23, 28, 0.96);
  border-color: var(--border-on-dark);
}

.page-soranikki .site-nav-menu-link {
  color: var(--text-on-dark);
}

.page-soranikki .site-nav-menu-link:hover {
  background: rgba(255, 255, 255, 0.06);
}

.soranikki-hero {
  position: relative;
  min-height: clamp(420px, 72vh, 640px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.soranikki-hero-backdrop {
  position: absolute;
  inset: 0;
  background: var(--sky-bg);
}

.soranikki-hero-backdrop-image {
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-position: center 35%;
  transform: scale(1.05);
  animation: soranikki-hero-drift 30s ease-in-out infinite alternate;
}

.soranikki-hero-backdrop-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(12, 15, 20, 0.15), rgba(12, 15, 20, 0.72) 100%),
    linear-gradient(180deg, rgba(12, 15, 20, 0.35) 0%, rgba(12, 15, 20, 0.55) 100%);
}

.soranikki-hero-backdrop-grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@keyframes soranikki-hero-drift {
  from { transform: scale(1.05) translateY(0); }
  to { transform: scale(1.1) translateY(-1.2%); }
}

.soranikki-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: calc(var(--header-height) + 40px) clamp(20px, 4vw, 40px) 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(24px, 4vw, 32px);
}

.soranikki-hero-copy {
  max-width: 36em;
}

.soranikki-hero-eyebrow {
  margin: 0 0 12px;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(168, 196, 224, 0.7);
}

.soranikki-hero-title {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.2;
}

.soranikki-hero-tagline {
  margin: 0 0 12px;
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  color: var(--sky-accent);
  letter-spacing: 0.06em;
}

.soranikki-hero-lead {
  margin: 0 0 28px;
  color: var(--sky-muted);
  line-height: 1.8;
  font-size: 0.96rem;
}

.soranikki-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.soranikki-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(168, 196, 224, 0.35);
  background: rgba(168, 196, 224, 0.12);
  color: var(--sky-text);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition:
    background 0.25s var(--ease-out),
    border-color 0.25s var(--ease-out);
}

.soranikki-btn:hover {
  background: rgba(168, 196, 224, 0.2);
  border-color: rgba(168, 196, 224, 0.55);
  color: #fff;
  text-decoration: none;
}

.soranikki-btn--muted {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.72);
}

.soranikki-btn--muted:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.soranikki-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.soranikki-hero-icon-wrap {
  position: relative;
  width: min(128px, 28vw);
}

.soranikki-hero-icon-glow {
  position: absolute;
  inset: -45%;
  background: radial-gradient(ellipse 55% 55% at 50% 50%, rgba(168, 196, 224, 0.28), transparent 72%);
  pointer-events: none;
}

.soranikki-hero-icon {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28%;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.42);
}

.soranikki-section {
  padding: clamp(56px, 9vw, 88px) 0;
}

.soranikki-section--elevated {
  background: linear-gradient(180deg, rgba(22, 27, 36, 0.35) 0%, transparent 100%);
}

.soranikki-section-head {
  max-width: var(--max-wide);
  margin: 0 auto 36px;
  padding: 0 clamp(20px, 4vw, 40px);
}

.soranikki-section-eyebrow {
  margin: 0 0 8px;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(168, 196, 224, 0.65);
}

.soranikki-section-title {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.soranikki-section-lead {
  margin: 0;
  max-width: 36em;
  color: var(--sky-muted);
  line-height: 1.75;
  font-size: 0.94rem;
}

.soranikki-feature-grid {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.soranikki-feature-card {
  padding: 24px 22px;
  border-radius: 16px;
  border: 1px solid var(--sky-border);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.soranikki-feature-card h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--sky-text);
}

.soranikki-feature-card p {
  margin: 0;
  color: var(--sky-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.soranikki-shot-grid {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.soranikki-shot-card {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--sky-border);
  background: #06080c;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.soranikki-shot-card img {
  display: block;
  width: 100%;
  height: auto;
}

.soranikki-shot-card figcaption {
  padding: 12px 16px 14px;
  color: var(--sky-muted);
  font-size: 0.84rem;
  background: rgba(12, 15, 20, 0.9);
}

.soranikki-legal-wrap {
  max-width: var(--legal-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.soranikki-legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.soranikki-legal-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--sky-border);
  color: var(--sky-muted);
  font-size: 0.86rem;
  text-decoration: none;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.soranikki-legal-nav a:hover {
  color: var(--sky-text);
  border-color: rgba(168, 196, 224, 0.4);
  background: rgba(168, 196, 224, 0.08);
  text-decoration: none;
}

.soranikki-legal-block {
  margin-bottom: 48px;
  scroll-margin-top: calc(var(--header-height) + 16px);
}

.soranikki-legal-block h2 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  font-weight: 600;
}

.soranikki-legal-preamble {
  margin: 0 0 20px;
  color: var(--sky-muted);
  line-height: 1.8;
  font-size: 0.92rem;
}

.soranikki-legal-section {
  padding: 18px 20px;
  border-radius: 12px;
  border: 1px solid var(--sky-border);
  background: rgba(255, 255, 255, 0.03);
}

.soranikki-legal-section + .soranikki-legal-section {
  margin-top: 12px;
}

.soranikki-legal-section h3 {
  margin: 0 0 10px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--sky-text);
}

.soranikki-legal-section p {
  margin: 0 0 8px;
  color: var(--sky-muted);
  font-size: 0.88rem;
  line-height: 1.75;
}

.soranikki-legal-section p:last-child {
  margin-bottom: 0;
}

.soranikki-back-top {
  margin-top: 32px;
  font-size: 0.9rem;
}

.soranikki-back-top a {
  color: var(--sky-accent);
}

.soranikki-legal-cards {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.soranikki-legal-card {
  display: flex;
  flex-direction: column;
  padding: 24px 22px;
  border-radius: 16px;
  border: 1px solid var(--sky-border);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  color: inherit;
  text-decoration: none;
  transition:
    border-color 0.25s var(--ease-out),
    transform 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out);
}

.soranikki-legal-card:hover {
  border-color: rgba(168, 196, 224, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  text-decoration: none;
  color: inherit;
}

.soranikki-legal-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--sky-text);
}

.soranikki-legal-card p {
  margin: 0 0 16px;
  flex: 1;
  color: var(--sky-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.soranikki-legal-card-more {
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--sky-accent);
}

.soranikki-legal-card-date {
  margin-top: 12px;
  font-size: 0.78rem;
  color: rgba(138, 147, 158, 0.85);
}

.soranikki-legal-doc {
  max-width: var(--legal-max);
  margin: 0 auto;
  padding: calc(var(--header-height) + 40px) clamp(20px, 4vw, 40px) 72px;
}

.soranikki-legal-doc-eyebrow {
  margin: 0 0 20px;
  font-size: 0.88rem;
}

.soranikki-legal-doc-eyebrow a {
  color: var(--sky-accent);
  text-decoration: none;
}

.soranikki-legal-doc-eyebrow a:hover {
  text-decoration: underline;
}

.soranikki-legal-doc h1 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 4vw, 1.85rem);
  font-weight: 600;
}

.soranikki-legal-doc-meta {
  margin: 0 0 20px;
  color: var(--sky-muted);
  font-size: 0.84rem;
}

.soranikki-legal-doc-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--sky-border);
  font-size: 0.9rem;
}

.soranikki-legal-doc-nav a {
  color: var(--sky-accent);
}

@media (max-width: 900px) {
  .soranikki-feature-grid,
  .soranikki-shot-grid,
  .soranikki-legal-cards {
    grid-template-columns: 1fr;
  }
}

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