:root {
  --bg-steel-warm: #E8E4E0;
  --bg-steel-cool: #D4CFC9;
  --bg-card: #FFFFFF;
  --ink-deep: #1F2937;
  --ink-soft: #4B5563;
  --accent-graphite: #374151;
  --accent-steel: #4B5563;
  --line-soft: #D1D5DB;
  --titanium: #9CA3AF;
  --pastel-steel: #F3F4F6;
  --shadow-graphite: 0 10px 28px rgba(55, 65, 81, 0.18);
  --shadow-card: 0 8px 24px rgba(55, 65, 81, 0.10);
  --shadow-hover: 0 14px 40px rgba(55, 65, 81, 0.22);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden
}

body {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-deep);
  background: linear-gradient(135deg, #E8E4E0 0%, #D4CFC9 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

strong,
p {
  color: inherit
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  color: var(--ink-deep);
  line-height: 1.18;
  letter-spacing: -0.01em
}

.font-mono {
  font-family: 'JetBrains Mono', monospace
}

.text-deep {
  color: var(--ink-deep)
}

.text-soft {
  color: var(--ink-soft)
}

.text-accent {
  color: var(--accent-graphite)
}

.text-white {
  color: #ffffff
}

.bg-steel-warm {
  background-color: var(--bg-steel-warm)
}

.bg-steel-cool {
  background-color: var(--bg-steel-cool)
}

.bg-card {
  background-color: var(--bg-card)
}

.bg-graphite {
  background-color: var(--accent-graphite)
}

.bg-pastel {
  background-color: var(--pastel-steel)
}

.font-display {
  font-family: 'Playfair Display', serif
}

.section-shell {
  padding: 96px 24px;
  position: relative
}

@media(min-width:1024px) {
  .section-shell {
    padding: 128px 48px
  }
}

@media(min-width:1280px) {
  .section-shell {
    padding: 144px 64px
  }
}

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-graphite);
  display: inline-flex;
  align-items: center;
  gap: 12px
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--accent-graphite);
  display: inline-block
}

.headline-xl {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.08
}

@media(min-width:768px) {
  .headline-xl {
    font-size: 64px
  }
}

@media(min-width:1280px) {
  .headline-xl {
    font-size: 78px
  }
}

.headline-lg {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1
}

@media(min-width:768px) {
  .headline-lg {
    font-size: 48px
  }
}

@media(min-width:1280px) {
  .headline-lg {
    font-size: 56px
  }
}

.headline-md {
  font-size: 22px;
  font-weight: 600
}

@media(min-width:768px) {
  .headline-md {
    font-size: 28px
  }
}

.body-lead {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.7
}

@media(min-width:768px) {
  .body-lead {
    font-size: 18px
  }
}

.body-text {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.75
}

@media(min-width:768px) {
  .body-text {
    font-size: 16px
  }
}

.tech-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.05em
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 32px;
  background: var(--accent-graphite);
  color: #ffffff;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  border: 1px solid var(--accent-graphite);
  border-radius: 2px;
  cursor: pointer;
  transition: all .25s cubic-bezier(.34, 1.56, .64, 1);
  text-decoration: none;
  white-space: nowrap;
  min-height: 56px;
  box-shadow: 0 10px 28px rgba(55, 65, 81, 0.30)
}

.btn-primary:hover {
  background: var(--ink-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(55, 65, 81, 0.40)
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 32px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--accent-graphite);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  border: 1px solid var(--accent-graphite);
  border-radius: 2px;
  cursor: pointer;
  transition: all .25s cubic-bezier(.34, 1.56, .64, 1);
  text-decoration: none;
  white-space: nowrap;
  min-height: 56px
}

.btn-secondary:hover {
  background: var(--accent-graphite);
  color: #ffffff;
  transform: translateY(-2px)
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  background: transparent;
  color: var(--accent-graphite);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--accent-graphite);
  border-radius: 0;
  text-decoration: none;
  transition: gap .25s ease
}

.btn-ghost:hover {
  gap: 14px;
  color: var(--ink-deep)
}

.card-base {
  background: #ffffff;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  padding: 32px;
  transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
  position: relative;
  color: var(--ink-deep)
}

.card-base:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-graphite);
  z-index: 10
}

@media(min-width:768px) {
  .card-base {
    padding: 40px
  }
}

.divider-line {
  width: 64px;
  height: 1px;
  background: var(--accent-graphite);
  display: block
}

.divider-section {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-soft) 20%, var(--line-soft) 80%, transparent)
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(55, 65, 81, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(55, 65, 81, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1
}

.particle-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--accent-graphite);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 228, 224, 0.92) 0%, rgba(212, 207, 201, 0.85) 60%, rgba(212, 207, 201, 0.7) 100%);
  z-index: 2
}

.ring-follow {
  position: fixed;
  width: 56px;
  height: 56px;
  border: 2px solid var(--accent-graphite);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s ease, height .2s ease, opacity .2s ease;
  filter: drop-shadow(0 0 8px rgba(55, 65, 81, 0.30));
  opacity: 0;
  mix-blend-mode: multiply
}

.ring-follow.active {
  opacity: 1
}

.ring-follow.hover {
  width: 80px;
  height: 80px;
  border-color: var(--ink-deep)
}

.sticky-top-bar {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 2px solid var(--accent-graphite);
  position: sticky;
  top: 0;
  z-index: 1150;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px)
}

.brand-mark {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent-graphite) 0%, var(--ink-deep) 100%);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: var(--shadow-card)
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  gap: 2px
}

.brand-domain {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-deep);
  letter-spacing: 0.04em
}

.brand-name-jp {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-deep);
  letter-spacing: 0.02em
}

.nav-link {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--ink-deep);
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 2px;
  transition: all .2s ease;
  position: relative;
  white-space: nowrap
}

.nav-link:hover {
  background: var(--accent-graphite);
  color: #ffffff
}

.nav-link.active {
  color: var(--accent-graphite)
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 1px;
  background: var(--accent-graphite)
}

.mobile-menu-drawer {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #E8E4E0 0%, #D4CFC9 100%);
  z-index: 60;
  display: flex;
  flex-direction: column;
  padding: 120px 32px 40px;
  transform: translateY(-100%);
  transition: transform .4s cubic-bezier(.34, 1.56, .64, 1);
  overflow-y: auto
}

.mobile-menu-drawer.open {
  transform: translateY(0)
}

.mobile-menu-drawer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(55, 65, 81, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(55, 65, 81, 0.06) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  opacity: 0;
  animation: grid-draw .8s ease-out forwards
}

@keyframes grid-draw {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.mobile-menu-item {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--ink-deep);
  text-decoration: none;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
  display: block;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity .4s ease, transform .4s ease
}

.mobile-menu-drawer.open .mobile-menu-item {
  opacity: 1;
  transform: translateY(0)
}

.mobile-menu-drawer.open .mobile-menu-item:nth-child(1) {
  transition-delay: .08s
}

.mobile-menu-drawer.open .mobile-menu-item:nth-child(2) {
  transition-delay: .16s
}

.mobile-menu-drawer.open .mobile-menu-item:nth-child(3) {
  transition-delay: .24s
}

.mobile-menu-drawer.open .mobile-menu-item:nth-child(4) {
  transition-delay: .32s
}

.mobile-menu-drawer.open .mobile-menu-item:nth-child(5) {
  transition-delay: .40s
}

.mobile-menu-drawer.open .mobile-menu-item:nth-child(6) {
  transition-delay: .48s
}

.burger-trigger {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 70
}

.burger-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--ink-deep);
  border-radius: 50%
}

.burger-dot:nth-child(1) {
  top: 14px;
  left: 14px
}

.burger-dot:nth-child(2) {
  top: 14px;
  left: 22px
}

.burger-dot:nth-child(3) {
  top: 14px;
  left: 30px
}

.burger-dot:nth-child(4) {
  top: 22px;
  left: 14px
}

.burger-dot:nth-child(5) {
  top: 22px;
  left: 22px
}

.burger-dot:nth-child(6) {
  top: 22px;
  left: 30px
}

.close-icon {
  width: 24px;
  height: 24px;
  position: relative;
  display: none
}

.close-icon::before,
.close-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 2px;
  background: var(--ink-deep)
}

.close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg)
}

.close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg)
}

.mobile-menu-drawer.open .burger-trigger .burger-dot {
  display: none
}

.mobile-menu-drawer.open .burger-trigger .close-icon {
  display: block
}

.mobile-menu-drawer.open .burger-trigger .close-icon {
  display: block
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(31, 41, 55, 0.5);
  z-index: 55;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease
}

.mobile-menu-backdrop.active {
  opacity: 1;
  pointer-events: auto
}

.stacking-card {
  position: relative;
  margin-bottom: 20px;
  z-index: 1;
  transition: all .35s cubic-bezier(.34, 1.56, .64, 1)
}

.stacking-card:nth-child(1) {
  z-index: 1
}

.stacking-card:nth-child(2) {
  z-index: 2;
  margin-top: -40px
}

.stacking-card:nth-child(3) {
  z-index: 3;
  margin-top: -40px
}

.stacking-card:hover {
  z-index: 20;
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-hover)
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 200px;
  gap: 16px
}

@media(min-width:768px) {
  .bento-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px
  }
}

.bento-cell {
  background: #ffffff;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
  position: relative;
  overflow: hidden;
  color: var(--ink-deep);
  text-decoration: none;
  cursor: pointer
}

.bento-cell:hover {
  z-index: 10;
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-graphite)
}

.bento-large {
  grid-column: span 2;
  grid-row: span 2
}

.bento-tall {
  grid-row: span 2
}

.bento-wide {
  grid-column: span 2
}

@media(max-width:767px) {

  .bento-large,
  .bento-tall,
  .bento-wide {
    grid-column: span 2;
    grid-row: span 1
  }
}

.node-graph {
  position: relative;
  padding: 48px 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start
}

@media(min-width:768px) {
  .node-graph {
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    padding: 64px 0
  }
}

.node-step {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  padding: 24px;
  width: 100%;
  transition: all .3s ease;
  cursor: pointer;
  z-index: 2;
  color: var(--ink-deep)
}

@media(min-width:768px) {
  .node-step {
    flex: 1;
    max-width: 240px;
    min-height: 200px
  }
}

.node-step:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-graphite);
  z-index: 10
}

.node-connector {
  display: none
}

@media(min-width:768px) {
  .node-connector {
    display: block;
    flex: 0 0 auto;
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-graphite) 0%, var(--accent-graphite) 50%, transparent 50%, transparent 100%);
    background-size: 8px 2px;
    align-self: center;
    margin-top: 100px
  }
}

.flex-grow-grid {
  display: flex;
  flex-direction: column;
  gap: 16px
}

@media(min-width:768px) {
  .flex-grow-grid {
    flex-direction: row;
    height: 480px
  }
}

.flex-grow-card {
  background: #ffffff;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  padding: 32px;
  flex: 1;
  transition: flex .35s cubic-bezier(.34, 1.56, .64, 1), transform .25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 140px;
  position: relative;
  overflow: hidden;
  color: var(--ink-deep)
}

@media(min-width:768px) {
  .flex-grow-card {
    flex: 1;
    cursor: pointer
  }

  .flex-grow-card:hover {
    flex: 3;
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-graphite);
    z-index: 10;
    transform: scale(1.02)
  }
}

.team-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-soft);
  cursor: pointer;
  transition: all .25s ease;
  position: relative;
  text-decoration: none;
  color: var(--ink-deep)
}

.team-row:hover {
  background: rgba(55, 65, 81, 0.04);
  padding-left: 16px;
  padding-right: 16px;
  color: var(--ink-deep)
}

.team-tooltip {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(20px);
  background: #ffffff;
  border: 1px solid var(--accent-graphite);
  border-radius: 4px;
  padding: 16px;
  width: 280px;
  opacity: 0;
  pointer-events: none;
  transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
  z-index: 20;
  box-shadow: var(--shadow-hover);
  display: flex;
  gap: 14px;
  align-items: center
}

.team-row:hover .team-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0)
}

@media(max-width:767px) {
  .team-tooltip {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 12px;
    display: none
  }

  .team-row.reveal .team-tooltip {
    display: flex
  }
}

.coverflow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  padding: 24px 0;
  perspective: 1400px
}

.coverflow-track {
  position: relative;
  width: 100%;
  max-width: 880px;
  height: 380px
}

.coverflow-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: 320px;
  background: #ffffff;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  padding: 32px;
  transition: all .5s cubic-bezier(.34, 1.56, .64, 1);
  transform-origin: center center;
  opacity: 0;
  pointer-events: none;
  color: var(--ink-deep)
}

.coverflow-card.active {
  transform: translate(-50%, 0) scale(1) rotateY(0);
  opacity: 1;
  z-index: 5;
  pointer-events: auto;
  box-shadow: var(--shadow-card);
  border-color: var(--accent-graphite)
}

.coverflow-card.prev {
  transform: translate(-150%, 40px) scale(0.85) rotateY(15deg);
  opacity: 0.4;
  z-index: 3
}

.coverflow-card.next {
  transform: translate(50%, 40px) scale(0.85) rotateY(-15deg);
  opacity: 0.4;
  z-index: 3
}

.coverflow-card.far-prev {
  transform: translate(-220%, 80px) scale(0.7) rotateY(20deg);
  opacity: 0;
  z-index: 1
}

.coverflow-card.far-next {
  transform: translate(120%, 80px) scale(0.7) rotateY(-20deg);
  opacity: 0;
  z-index: 1
}

.coverflow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: #ffffff;
  border: 1px solid var(--accent-graphite);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all .25s ease;
  color: var(--accent-graphite)
}

.coverflow-btn:hover {
  background: var(--accent-graphite);
  color: #ffffff
}

.coverflow-prev {
  left: 0
}

.coverflow-next {
  right: 0
}

@media(max-width:767px) {
  .coverflow-card {
    width: 280px
  }

  .coverflow-card.prev,
  .coverflow-card.far-prev {
    transform: translate(-200%, 0) scale(0.7);
    opacity: 0
  }

  .coverflow-card.next,
  .coverflow-card.far-next {
    transform: translate(100%, 0) scale(0.7);
    opacity: 0
  }
}

.accordion-item {
  background: #ffffff;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  margin-bottom: 12px;
  transition: all .25s ease;
  color: var(--ink-deep)
}

.accordion-item:hover {
  border-color: var(--accent-graphite)
}

.accordion-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-deep)
}

.accordion-icon {
  width: 24px;
  height: 24px;
  border: 1px solid var(--accent-graphite);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: var(--accent-graphite);
  transition: transform .25s ease;
  flex-shrink: 0;
  margin-left: 16px
}

.accordion-item.open .accordion-icon {
  transform: rotate(45deg)
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease
}

.accordion-item.open .accordion-body {
  max-height: 600px;
  padding: 0 24px 24px
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid var(--accent-graphite);
  border-radius: 4px;
  padding: 24px;
  box-shadow: var(--shadow-graphite);
  z-index: 100;
  color: var(--ink-deep)
}

@media(max-width:767px) {
  .cookie-banner {
    left: 16px;
    right: 16px;
    max-width: none;
    bottom: 16px
  }
}

.cookie-banner.hidden {
  display: none
}

.cookie-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink-deep)
}

.cookie-text {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.cookie-btn-accept {
  flex: 1;
  min-width: 120px;
  padding: 10px 16px;
  background: var(--accent-graphite);
  color: #ffffff;
  border: 1px solid var(--accent-graphite);
  border-radius: 2px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  min-height: 40px
}

.cookie-btn-decline {
  flex: 1;
  min-width: 120px;
  padding: 10px 16px;
  background: transparent;
  color: var(--accent-graphite);
  border: 1px solid var(--accent-graphite);
  border-radius: 2px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  min-height: 40px
}

.cookie-btn-accept:hover {
  background: var(--ink-deep)
}

.cookie-btn-decline:hover {
  background: rgba(55, 65, 81, 0.06)
}

.form-field {
  margin-bottom: 24px
}

.form-input {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--line-soft);
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  color: var(--ink-deep);
  transition: border-color .25s ease;
  outline: none
}

.form-input:focus {
  border-color: var(--accent-graphite)
}

.form-input::placeholder {
  color: var(--titanium);
  font-size: 14px
}

.form-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-graphite);
  display: block;
  margin-bottom: 6px
}

.form-textarea {
  min-height: 120px;
  resize: vertical
}

.sticky-split {
  display: flex;
  flex-direction: column;
  gap: 40px
}

@media(min-width:1024px) {
  .sticky-split {
    flex-direction: row;
    gap: 80px;
    align-items: flex-start
  }

  .sticky-split-left {
    position: sticky;
    top: 120px;
    flex: 0 0 45%;
    height: fit-content
  }

  .sticky-split-right {
    flex: 1
  }
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--pastel-steel)
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(31, 41, 55, 0.4) 100%);
  pointer-events: none
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease-out, transform .7s ease-out
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0)
}

.reveal-stagger>* {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease
}

.reveal-stagger.in-view>* {
  opacity: 1;
  transform: translateY(0)
}

.reveal-stagger.in-view>*:nth-child(1) {
  transition-delay: .06s
}

.reveal-stagger.in-view>*:nth-child(2) {
  transition-delay: .12s
}

.reveal-stagger.in-view>*:nth-child(3) {
  transition-delay: .18s
}

.reveal-stagger.in-view>*:nth-child(4) {
  transition-delay: .24s
}

.reveal-stagger.in-view>*:nth-child(5) {
  transition-delay: .30s
}

.reveal-stagger.in-view>*:nth-child(6) {
  transition-delay: .36s
}

.section-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px
}

.section-heading-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 64px
}

@media(min-width:1024px) {
  .section-heading-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 80px
  }
}

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

@media(min-width:1024px) {
  .split-form {
    grid-template-columns: 1fr 1fr;
    gap: 80px
  }
}

.contact-info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px
}

.contact-info-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-graphite);
  margin-bottom: 6px
}

.contact-info-value {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink-deep)
}

.footer-base {
  background: var(--accent-graphite);
  color: #ffffff;
  padding: 64px 24px 32px;
  position: relative;
  border-radius: 16px 16px 0 0;
  margin-top:20px;
}

@media(min-width:1024px) {
  .footer-base {
    padding: 80px 48px 32px
  }
}

.footer-base strong,
p {
  color: inherit
}

.footer-heading {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0.7;
  margin-bottom: 18px
}

.footer-link {
  color: #ffffff;
  opacity: 0.85;
  text-decoration: none;
  font-size: 14px;
  display: block;
  padding: 6px 0;
  transition: opacity .2s ease
}

.footer-link:hover {
  opacity: 1;
  color: #ffffff
}

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

@media(min-width:768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px
  }
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 24px;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 12px;
  color: #ffffff;
  opacity: 0.7
}

@media(min-width:768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center
  }
}

.thanks-shell {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px;
  text-align: center
}

.thanks-check {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-graphite) 0%, var(--ink-deep) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 32px;
  box-shadow: var(--shadow-graphite)
}

.faq-section-bg {
  background: var(--pastel-steel);
  border-radius: 8px;
  padding: 48px 24px
}

@media(min-width:768px) {
  .faq-section-bg {
    padding: 80px 48px
  }
}

.legal-shell {
  max-width: 880px;
  margin: 0 auto;
  padding: 120px 24px 64px
}

.legal-shell h2 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: 24px
}

.legal-shell p {
  margin-bottom: 16px;
  color: var(--ink-soft)
}

@media(min-width:768px) {
  .legal-shell h2 {
    font-size: 28px
  }

  .legal-shell {
    padding: 160px 32px 96px
  }
}

::selection {
  background: var(--accent-graphite);
  color: #ffffff
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px
}

::-webkit-scrollbar-track {
  background: transparent
}

::-webkit-scrollbar-thumb {
  background: var(--accent-graphite);
  border-radius: 0;
  opacity: 0.4
}

::-webkit-scrollbar-thumb:hover {
  background: var(--ink-deep)
}

@media(max-width:1023px) {
  .lg-show {
    display: none !important
  }
}

@media(min-width:1024px) {
  .sm-show {
    display: none !important
  }
}