:root {
  --amber-50: #FEF3C7;
  --amber-100: #FDE68A;
  --amber-200: #FCD34D;
  --amber-300: #FBBF24;
  --amber-400: #F59E0B;
  --amber-500: #D97706;
  --amber-600: #B45309;
  --amber-700: #92400E;
  --amber-800: #78350F;
  --amber-900: #451A03;
  --cream-100: #FDF8F0;
  --cream-200: #F5EDD8;
  --cream-300: #EBE4C8;
  --pure-white: #FFFFFF;
  --ink: #1F1303;
  --line: rgba(120, 53, 15, 0.18);
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(245, 158, 11, 0.35);
  --shadow-amber: 0 18px 48px rgba(245, 158, 11, 0.28);
  --shadow-card: 0 10px 30px rgba(120, 53, 15, 0.10);
  --shadow-deep: 0 30px 80px rgba(120, 53, 15, 0.18);
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --sidebar-w: 260px;
  --sidebar-w-collapsed: 72px;
  --header-h: 0px;
  --font-tech: "Chakra Petch", "Noto Sans JP", sans-serif;
  --font-body: "IBM Plex Sans", "Noto Sans JP", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--amber-400) transparent;
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--amber-800);
  background: linear-gradient(140deg, var(--cream-100) 0%, var(--cream-200) 50%, var(--cream-300) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

strong, p, span, a, li, h1, h2, h3, h4, h5, h6, button, label, input, textarea {
  color: inherit;
}

a {
  color: var(--amber-600);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--amber-400);
}

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

::selection {
  background: var(--amber-400);
  color: var(--pure-white);
}

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

::-webkit-scrollbar-thumb {
  background: rgba(245, 158, 11, 0.55);
  border-radius: 4px;
}

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

.h1-display, .h2-display, .h3-display, .h4-display {
  font-family: var(--font-tech);
  color: var(--amber-800);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.h1-display {
  font-size: clamp(48px, 7vw, 108px);
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: none;
}

.h2-display {
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.h3-display {
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 600;
}

.h4-display {
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 600;
}

.mono-caption {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-700);
}

.lede {
  font-size: 18px;
  line-height: 1.7;
  color: var(--amber-700);
  font-weight: 400;
}

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

.body-text + .body-text {
  margin-top: 14px;
}

.amber-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-700);
  white-space: nowrap;
}

.amber-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber-400);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.7);
}

.amber-glow {
  background: radial-gradient(circle at 30% 20%, rgba(252, 211, 77, 0.45), transparent 55%),
              radial-gradient(circle at 80% 70%, rgba(245, 158, 11, 0.35), transparent 60%),
              linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(254, 243, 199, 0.4));
  filter: blur(60px);
}

.btn-primary-amber {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 36px;
  background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
  color: var(--pure-white);
  font-family: var(--font-tech);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(245, 158, 11, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  white-space: nowrap;
  min-height: 56px;
}

.btn-primary-amber:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 22px 44px rgba(245, 158, 11, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  color: var(--pure-white);
}

.btn-ghost-amber {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--amber-700);
  font-family: var(--font-tech);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--amber-400);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-height: 52px;
  backdrop-filter: blur(10px);
}

.btn-ghost-amber:hover {
  background: var(--amber-400);
  color: var(--pure-white);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(245, 158, 11, 0.35);
}

.btn-link-amber {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-tech);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--amber-600);
  padding: 10px 0;
  position: relative;
  transition: all 0.3s ease;
}

.btn-link-amber::after {
  content: "→";
  transition: transform 0.3s ease;
}

.btn-link-amber:hover {
  color: var(--amber-400);
}

.btn-link-amber:hover::after {
  transform: translateX(6px);
}

.sidebar-dock {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-w);
  height: 100vh;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px);
  border-right: 2px solid rgba(245, 158, 11, 0.35);
  display: flex;
  flex-direction: column;
  padding: 28px 22px;
  z-index: 100;
  transition: width 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.sidebar-dock-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 24px;
  border-bottom: 1px dashed rgba(120, 53, 15, 0.22);
  margin-bottom: 24px;
}

.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-tech);
  font-weight: 700;
  font-size: 26px;
  color: var(--pure-white);
  box-shadow: 0 10px 22px rgba(245, 158, 11, 0.45);
  position: relative;
  overflow: hidden;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 12px;
  border: 2px dashed rgba(255, 255, 255, 0.35);
}

.brand-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-domain {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: lowercase;
  color: var(--amber-600);
}

.brand-name {
  font-family: var(--font-tech);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.15;
  color: var(--amber-800);
}

.brand-name-en {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--amber-700);
  text-transform: uppercase;
  margin-top: 2px;
}

.sidebar-dock-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-grow: 1;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--amber-700);
  font-family: var(--font-tech);
  font-weight: 500;
  font-size: 14px;
  transition: all 0.25s ease;
  position: relative;
  white-space: nowrap;
}

.sidebar-link .icon-glyph {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(245, 158, 11, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--amber-600);
  flex-shrink: 0;
}

.sidebar-link:hover, .sidebar-link.is-current {
  background: var(--amber-400);
  color: var(--pure-white);
  transform: translateX(4px);
}

.sidebar-link:hover .icon-glyph, .sidebar-link.is-current .icon-glyph {
  background: rgba(255, 255, 255, 0.22);
  color: var(--pure-white);
}

.sidebar-cta {
  margin-top: auto;
  padding-top: 18px;
}

.mobile-bar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 68px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid rgba(245, 158, 11, 0.35);
  z-index: 110;
  padding: 0 18px;
  align-items: center;
  justify-content: space-between;
}

.mobile-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-brand .brand-mark {
  width: 42px;
  height: 42px;
  font-size: 20px;
  border-radius: 12px;
}

.mobile-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.mobile-brand-text .brand-domain {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--amber-600);
  letter-spacing: 0.1em;
  text-transform: lowercase;
}

.mobile-brand-text .brand-name {
  font-family: var(--font-tech);
  font-size: 15px;
  color: var(--amber-800);
  font-weight: 700;
}

.burger-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--amber-400);
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.4);
}

.burger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--pure-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

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

.mobile-drawer {
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, rgba(120, 53, 15, 0.95), rgba(245, 158, 11, 0.92));
  z-index: 105;
  display: none;
  flex-direction: column;
  padding: 100px 32px 60px;
  overflow-y: auto;
  overflow-x: hidden;
}

.mobile-drawer.is-open {
  display: flex;
}

.mobile-drawer::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(252, 211, 77, 0.6), transparent 70%);
  filter: blur(60px);
  top: 10%;
  left: -120px;
  border-radius: 50%;
  pointer-events: none;
}

.mobile-drawer::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(254, 243, 199, 0.6), transparent 70%);
  filter: blur(50px);
  bottom: 5%;
  right: -100px;
  border-radius: 50%;
  pointer-events: none;
}

.mobile-drawer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.mobile-drawer-brand .brand-mark {
  width: 52px;
  height: 52px;
  font-size: 22px;
}

.mobile-drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 2;
}

.mobile-drawer-nav a {
  font-family: var(--font-tech);
  font-weight: 600;
  font-size: 26px;
  color: var(--cream-100);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.mobile-drawer.is-open .mobile-drawer-nav a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-drawer.is-open .mobile-drawer-nav a:nth-child(1) { transition-delay: 0.1s; }
.mobile-drawer.is-open .mobile-drawer-nav a:nth-child(2) { transition-delay: 0.18s; }
.mobile-drawer.is-open .mobile-drawer-nav a:nth-child(3) { transition-delay: 0.26s; }
.mobile-drawer.is-open .mobile-drawer-nav a:nth-child(4) { transition-delay: 0.34s; }
.mobile-drawer.is-open .mobile-drawer-nav a:nth-child(5) { transition-delay: 0.42s; }
.mobile-drawer.is-open .mobile-drawer-nav a:nth-child(6) { transition-delay: 0.50s; }
.mobile-drawer.is-open .mobile-drawer-nav a:nth-child(7) { transition-delay: 0.58s; }

.mobile-drawer-cta {
  margin-top: 32px;
  position: relative;
  z-index: 2;
}

.mobile-drawer-cta .btn-primary-amber {
  width: 100%;
}

.app-shell {
  margin-left: var(--sidebar-w);
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

.section {
  padding: 100px 56px;
  position: relative;
}

.section.is-compact {
  padding: 70px 56px;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 56px;
}

.section-head.is-centered {
  align-items: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow-row .bar {
  width: 36px;
  height: 2px;
  background: var(--amber-400);
  border-radius: 2px;
}

.hero-stage {
  position: relative;
  min-height: 100vh;
  padding: 120px 56px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.hero-canvas .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.7;
}

.hero-canvas .blob.b1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, var(--amber-200), transparent 70%);
  top: -10%;
  left: 5%;
  animation: float-blob 32s ease-in-out infinite;
}

.hero-canvas .blob.b2 {
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, var(--amber-400), transparent 70%);
  top: 25%;
  right: -10%;
  animation: float-blob-2 38s ease-in-out infinite;
}

.hero-canvas .blob.b3 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, var(--cream-300), transparent 70%);
  bottom: -15%;
  left: 35%;
  animation: float-blob 28s ease-in-out infinite reverse;
}

.hero-canvas .grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(253, 230, 138, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(253, 230, 138, 0.18) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

@keyframes float-blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, -40px) scale(1.08); }
  66% { transform: translate(-40px, 60px) scale(0.95); }
}

@keyframes float-blob-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-80px, 50px) scale(1.12); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.hero-text .lede {
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px dashed rgba(120, 53, 15, 0.25);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat .num {
  font-family: var(--font-tech);
  font-size: 38px;
  font-weight: 700;
  color: var(--amber-700);
  line-height: 1;
}

.hero-stat .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-700);
}

.hero-visual {
  position: relative;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-engine {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(245, 158, 11, 0.3);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-amber);
}

.hero-engine::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 0deg, transparent, rgba(245, 158, 11, 0.18), transparent, rgba(252, 211, 77, 0.18), transparent);
  animation: spin-engine 20s linear infinite;
}

@keyframes spin-engine {
  to { transform: rotate(360deg); }
}

.hero-engine-inner {
  position: absolute;
  inset: 12px;
  border-radius: calc(var(--radius-xl) - 8px);
  background: radial-gradient(circle at 50% 50%, rgba(253, 230, 138, 0.4), transparent 65%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.engine-svg {
  width: 80%;
  height: auto;
  filter: drop-shadow(0 12px 28px rgba(245, 158, 11, 0.5));
  animation: engine-pulse 4s ease-in-out infinite;
}

@keyframes engine-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

.hero-spec-floater {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--amber-800);
  box-shadow: 0 12px 24px rgba(120, 53, 15, 0.15);
  z-index: 3;
  white-space: nowrap;
}

.hero-spec-floater.fl1 {
  top: 14%;
  left: -4%;
  animation: float-y 6s ease-in-out infinite;
}

.hero-spec-floater.fl2 {
  bottom: 18%;
  right: -3%;
  animation: float-y 7s ease-in-out infinite reverse;
}

.hero-spec-floater.fl3 {
  bottom: 6%;
  left: 12%;
  animation: float-y 8s ease-in-out infinite;
}

@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.spec-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--amber-400);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.8);
}

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

.bento-card {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--pure-white);
  border: 1px solid rgba(245, 158, 11, 0.2);
  padding: 28px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--amber-800);
}

.bento-card:hover {
  transform: translateY(-6px) scale(1.03);
  z-index: 10;
  border-color: var(--amber-400);
  box-shadow: 0 30px 60px rgba(245, 158, 11, 0.3);
}

.bento-card.span-2x2 {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
  color: var(--pure-white);
  border: none;
}

.bento-card.span-2x2 .bento-meta {
  color: rgba(255, 255, 255, 0.85);
}

.bento-card.span-1x2 {
  grid-row: span 2;
}

.bento-card.span-2x1 {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--cream-200), var(--cream-300));
}

.bento-card .bento-cover {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bento-card .bento-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: transform 0.6s ease;
}

.bento-card:hover .bento-cover img {
  transform: scale(1.08);
}

.bento-card .bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(120, 53, 15, 0.85));
  z-index: 1;
}

.bento-card .bento-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 14px;
}

.bento-num {
  font-family: var(--font-tech);
  font-size: 56px;
  font-weight: 700;
  color: var(--amber-400);
  line-height: 1;
}

.bento-card.span-2x2 .bento-num {
  color: var(--cream-100);
}

.bento-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(245, 158, 11, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--amber-600);
}

.bento-card.span-2x2 .bento-icon {
  background: rgba(255, 255, 255, 0.22);
  color: var(--pure-white);
}

.bento-title {
  font-family: var(--font-tech);
  font-size: 22px;
  font-weight: 600;
  color: inherit;
  line-height: 1.2;
}

.bento-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--amber-700);
}

.bento-card.span-2x2 .bento-desc {
  color: rgba(255, 255, 255, 0.9);
}

.bento-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-600);
  padding-top: 12px;
  border-top: 1px solid rgba(245, 158, 11, 0.25);
}

.bento-card.span-2x2 .bento-meta {
  border-color: rgba(255, 255, 255, 0.3);
}

.bento-price {
  font-family: var(--font-tech);
  font-weight: 700;
  font-size: 22px;
  color: var(--amber-400);
}

.bento-card.span-2x2 .bento-price {
  color: var(--pure-white);
}

.process-graph {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.process-node {
  position: relative;
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid rgba(245, 158, 11, 0.2);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
  color: var(--amber-800);
}

.process-node:hover {
  transform: translateY(-6px);
  z-index: 10;
  box-shadow: 0 30px 60px rgba(245, 158, 11, 0.3);
  border-color: var(--amber-400);
}

.process-node .step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
  color: var(--pure-white);
  font-family: var(--font-tech);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
}

.process-node h3 {
  font-family: var(--font-tech);
  font-size: 22px;
  font-weight: 600;
  color: var(--amber-800);
}

.process-node p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--amber-700);
}

.process-connector {
  position: absolute;
  top: 50%;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--amber-400), transparent);
  z-index: 1;
}

.masonry-grid {
  column-count: 3;
  column-gap: 24px;
}

.masonry-card {
  break-inside: avoid;
  margin-bottom: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--pure-white);
  border: 1px solid rgba(245, 158, 11, 0.2);
  box-shadow: var(--shadow-card);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  color: var(--amber-800);
}

.masonry-card:hover {
  transform: translateY(-6px) scale(1.02);
  z-index: 10;
  box-shadow: 0 30px 60px rgba(245, 158, 11, 0.3);
  border-color: var(--amber-400);
}

.masonry-card .masonry-cover {
  width: 100%;
  display: block;
}

.masonry-card .masonry-body {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.masonry-card h3 {
  font-family: var(--font-tech);
  font-size: 20px;
  font-weight: 600;
  color: var(--amber-800);
  line-height: 1.25;
}

.masonry-card p {
  font-size: 14px;
  color: var(--amber-700);
  line-height: 1.6;
}

.masonry-tag {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(245, 158, 11, 0.14);
  color: var(--amber-700);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.flex-grow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  height: 480px;
}

.flex-grow-card {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--pure-white);
  padding: 32px 28px;
  border: 1px solid rgba(245, 158, 11, 0.2);
  box-shadow: var(--shadow-card);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  color: var(--amber-800);
}

.flex-grow-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(252, 211, 77, 0.12), rgba(245, 158, 11, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.flex-grow-card:hover::before {
  opacity: 1;
}

.flex-grow-card:hover {
  flex-grow: 1.6;
  z-index: 10;
  border-color: var(--amber-400);
  box-shadow: 0 30px 60px rgba(245, 158, 11, 0.3);
}

.flex-grow-card .fg-num {
  font-family: var(--font-tech);
  font-size: 56px;
  font-weight: 700;
  color: var(--amber-400);
  line-height: 1;
  position: relative;
  z-index: 1;
}

.flex-grow-card h3 {
  font-family: var(--font-tech);
  font-size: 22px;
  font-weight: 600;
  color: var(--amber-800);
  position: relative;
  z-index: 1;
}

.flex-grow-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--amber-700);
  position: relative;
  z-index: 1;
}

.split-screen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
  min-height: 540px;
}

.split-screen-media {
  position: sticky;
  top: 120px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: fit-content;
  box-shadow: var(--shadow-amber);
  border: 1px solid rgba(245, 158, 11, 0.3);
  background: var(--pure-white);
}

.split-screen-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-screen-text {
  display: flex;
  flex-direction: column;
  gap: 22px;
  color: var(--amber-800);
}

.split-screen-text p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--amber-800);
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.kpi-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.kpi-card .num {
  font-family: var(--font-tech);
  font-size: 36px;
  font-weight: 700;
  color: var(--amber-700);
  line-height: 1;
}

.kpi-card .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-700);
}

.team-reveal {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  padding: 18px;
  border: 1px solid rgba(245, 158, 11, 0.2);
  box-shadow: var(--shadow-card);
}

.team-row {
  position: relative;
  padding: 22px 28px;
  border-radius: var(--radius-md);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid transparent;
  color: var(--amber-800);
}

.team-row:hover, .team-row:focus-within {
  background: linear-gradient(135deg, rgba(252, 211, 77, 0.18), rgba(245, 158, 11, 0.08));
  border-color: rgba(245, 158, 11, 0.4);
  z-index: 10;
  transform: translateX(6px);
}

.team-row .team-name {
  font-family: var(--font-tech);
  font-size: 26px;
  font-weight: 600;
  color: var(--amber-800);
}

.team-row .team-role {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-600);
}

.team-tooltip {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translate(-12px, -50%);
  width: 280px;
  background: var(--pure-white);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: var(--radius-md);
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 20px 40px rgba(120, 53, 15, 0.2);
  z-index: 20;
}

.team-row:hover .team-tooltip, .team-row:focus-within .team-tooltip {
  display: flex;
}

.team-tooltip .tip-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--amber-400);
}

.team-tooltip .tip-name {
  font-family: var(--font-tech);
  font-size: 18px;
  font-weight: 600;
  color: var(--amber-800);
}

.team-tooltip .tip-role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-600);
}

.team-tooltip .tip-years {
  font-size: 13px;
  color: var(--amber-700);
}

.coverflow-stage {
  position: relative;
  perspective: 1400px;
  padding: 60px 0;
  min-height: 460px;
}

.coverflow-track {
  position: relative;
  width: 100%;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coverflow-card {
  position: absolute;
  width: 380px;
  background: var(--pure-white);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-deep);
  transition: all 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--amber-800);
}

.coverflow-card.is-active {
  z-index: 5;
  transform: translateX(0) scale(1) rotateY(0deg);
}

.coverflow-card.is-left {
  z-index: 2;
  transform: translateX(-280px) scale(0.85) rotateY(18deg);
  opacity: 0.7;
}

.coverflow-card.is-right {
  z-index: 2;
  transform: translateX(280px) scale(0.85) rotateY(-18deg);
  opacity: 0.7;
}

.coverflow-card.is-hidden-l {
  transform: translateX(-460px) scale(0.7) rotateY(28deg);
  opacity: 0;
  z-index: 1;
}

.coverflow-card.is-hidden-r {
  transform: translateX(460px) scale(0.7) rotateY(-28deg);
  opacity: 0;
  z-index: 1;
}

.coverflow-card .stars {
  color: var(--amber-400);
  font-size: 20px;
  letter-spacing: 4px;
}

.coverflow-card blockquote {
  font-size: 16px;
  line-height: 1.7;
  color: var(--amber-800);
  font-style: italic;
  position: relative;
  padding-left: 18px;
  border-left: 3px solid var(--amber-400);
}

.coverflow-card .who {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px dashed rgba(120, 53, 15, 0.25);
}

.coverflow-card .who .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--amber-400);
}

.coverflow-card .who-name {
  font-family: var(--font-tech);
  font-weight: 600;
  font-size: 16px;
  color: var(--amber-800);
}

.coverflow-card .who-role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-600);
}

.coverflow-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 40px;
}

.coverflow-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--pure-white);
  border: 2px solid var(--amber-400);
  color: var(--amber-700);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-family: var(--font-tech);
  font-weight: 700;
}

.coverflow-btn:hover {
  background: var(--amber-400);
  color: var(--pure-white);
  transform: scale(1.08);
}

.coverflow-dots {
  display: flex;
  gap: 10px;
}

.coverflow-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.coverflow-dots .dot.is-active {
  background: var(--amber-400);
  width: 28px;
  border-radius: 999px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--pure-white);
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card);
}

.faq-item:hover {
  border-color: var(--amber-400);
  box-shadow: 0 16px 30px rgba(245, 158, 11, 0.2);
}

.faq-item.is-open {
  border-color: var(--amber-400);
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.25);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-tech);
  font-size: 17px;
  font-weight: 600;
  color: var(--amber-800);
  gap: 16px;
}

.faq-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.15);
  color: var(--amber-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item.is-open .faq-icon {
  background: var(--amber-400);
  color: var(--pure-white);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 28px;
  color: var(--amber-700);
}

.faq-item.is-open .faq-a {
  max-height: 400px;
  padding: 0 28px 22px;
}

.faq-a p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--amber-700);
}

.contact-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form {
  background: var(--pure-white);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: var(--shadow-deep);
  color: var(--amber-800);
}

.field-amber {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.field-amber label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-700);
}

.field-amber input,
.field-amber select,
.field-amber textarea {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(245, 158, 11, 0.3);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--amber-800);
  transition: border-color 0.3s ease;
}

.field-amber input::placeholder,
.field-amber textarea::placeholder {
  color: rgba(120, 53, 15, 0.45);
}

.field-amber input:focus,
.field-amber select:focus,
.field-amber textarea:focus {
  outline: none;
  border-bottom-color: var(--amber-400);
}

.field-amber textarea {
  min-height: 110px;
  resize: vertical;
  border: 2px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-sm);
  padding: 14px;
}

.field-amber textarea:focus {
  border-color: var(--amber-400);
}

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

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 40px 20px;
}

.form-success.is-visible {
  display: flex;
}

.contact-info-card {
  background: linear-gradient(160deg, var(--amber-400), var(--amber-600));
  color: var(--pure-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  box-shadow: var(--shadow-amber);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(252, 211, 77, 0.4), transparent 70%);
  filter: blur(40px);
  top: -60px;
  right: -60px;
  border-radius: 50%;
}

.contact-info-card > * {
  position: relative;
  z-index: 1;
}

.contact-info-card .info-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-info-card .info-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.contact-info-card .info-value {
  font-family: var(--font-tech);
  font-size: 22px;
  font-weight: 600;
  color: var(--pure-white);
  line-height: 1.3;
}

.contact-info-card .info-value.is-mono {
  font-family: var(--font-mono);
  font-size: 26px;
}

.contact-info-card a {
  color: var(--pure-white);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  text-underline-offset: 4px;
}

.contact-info-card a:hover {
  text-decoration-color: var(--pure-white);
}

.legal-shell {
  max-width: 880px;
  margin: 0 auto;
  padding: 100px 56px 80px;
  color: var(--amber-800);
}

.legal-shell h1 {
  font-family: var(--font-tech);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 700;
  color: var(--amber-800);
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}

.legal-shell h2 {
  font-family: var(--font-tech);
  font-size: 26px;
  font-weight: 600;
  color: var(--amber-800);
  margin-top: 36px;
  margin-bottom: 14px;
}

.legal-shell p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--amber-700);
  margin-bottom: 14px;
}

.legal-shell ul {
  padding-left: 22px;
  margin-bottom: 16px;
}

.legal-shell li {
  font-size: 15px;
  line-height: 1.85;
  color: var(--amber-700);
  margin-bottom: 6px;
}

.thanks-stage {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 56px;
  gap: 28px;
  position: relative;
  isolation: isolate;
}

.thanks-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(252, 211, 77, 0.4), transparent 60%),
              radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.3), transparent 60%);
  z-index: -1;
}

.thanks-badge {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  color: var(--pure-white);
  box-shadow: 0 20px 50px rgba(245, 158, 11, 0.4);
}

.site-footer {
  background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
  color: var(--pure-white);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: 80px 56px 40px 320px;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
  overflow-x: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(252, 211, 77, 0.45), transparent 70%);
  filter: blur(60px);
  top: -180px;
  left: -80px;
  border-radius: 50%;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  position: relative;
  z-index: 2;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-brand .brand-mark {
  width: 52px;
  height: 52px;
  font-size: 22px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.22);
}

.footer-brand .brand-name {
  color: var(--pure-white);
  font-size: 22px;
}

.footer-brand .brand-domain {
  color: rgba(255, 255, 255, 0.8);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-tech);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pure-white);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  transition: all 0.25s ease;
  display: inline-block;
}

.footer-col a:hover {
  color: var(--pure-white);
  transform: translateX(4px);
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.footer-bottom p {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.85);
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-legal-links a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 420px;
  background: var(--pure-white);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  box-shadow: 0 24px 60px rgba(120, 53, 15, 0.25);
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--amber-800);
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-banner h5 {
  font-family: var(--font-tech);
  font-size: 17px;
  font-weight: 600;
  color: var(--amber-800);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-banner p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--amber-700);
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  flex: 1;
  padding: 10px 14px;
  border-radius: 999px;
  font-family: var(--font-tech);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  white-space: nowrap;
  min-height: 42px;
}

.cookie-btn.accept {
  background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
  color: var(--pure-white);
}

.cookie-btn.decline {
  background: transparent;
  color: var(--amber-700);
  border: 2px solid var(--amber-400);
}

.cookie-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(245, 158, 11, 0.3);
}

.lens-cursor {
  position: fixed;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999;
  mix-blend-mode: multiply;
  background: radial-gradient(circle, rgba(252, 211, 77, 0.4) 0%, transparent 60%);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid rgba(245, 158, 11, 0.4);
}

.lens-cursor.is-visible {
  transform: translate(-50%, -50%) scale(1);
}

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.reveal-stagger.is-revealed > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.is-revealed > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.is-revealed > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.is-revealed > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.is-revealed > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.is-revealed > *:nth-child(6) { transition-delay: 0.40s; }

.mini-hero {
  padding: 140px 56px 70px;
  position: relative;
  isolation: isolate;
}

.mini-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(252, 211, 77, 0.4), transparent 60%),
              radial-gradient(circle at 80% 70%, rgba(245, 158, 11, 0.25), transparent 65%);
  z-index: -1;
}

.mini-hero-inner {
  max-width: 920px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-700);
  margin-bottom: 8px;
}

.breadcrumb a {
  color: var(--amber-700);
}

.breadcrumb .sep {
  color: var(--amber-400);
}

.cta-band {
  background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
  border-radius: var(--radius-xl);
  padding: 70px 56px;
  color: var(--pure-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
  overflow-x: hidden;
  box-shadow: var(--shadow-amber);
}

.cta-band::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(252, 211, 77, 0.5), transparent 70%);
  filter: blur(40px);
  top: -120px;
  right: -80px;
  border-radius: 50%;
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-family: var(--font-tech);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  color: var(--pure-white);
  margin-bottom: 8px;
  line-height: 1.15;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 580px;
}

.cta-band .btn-primary-amber {
  background: var(--pure-white);
  color: var(--amber-700);
  box-shadow: 0 14px 30px rgba(255, 255, 255, 0.25);
}

.cta-band .btn-primary-amber:hover {
  background: var(--cream-100);
  color: var(--amber-800);
}

.cta-band .btn-ghost-amber {
  background: transparent;
  color: var(--pure-white);
  border-color: var(--pure-white);
}

.cta-band .btn-ghost-amber:hover {
  background: var(--pure-white);
  color: var(--amber-700);
}

.cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 50px;
  align-items: start;
}

.service-detail-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-detail-content p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--amber-800);
}

.service-detail-content ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-detail-content li {
  padding: 14px 18px;
  background: var(--pure-white);
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--amber-800);
}

.service-detail-content li::before {
  content: "✓";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--amber-400);
  color: var(--pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.service-detail-aside {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.price-card {
  background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
  color: var(--pure-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-amber);
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(252, 211, 77, 0.5), transparent 70%);
  filter: blur(30px);
  top: -60px;
  right: -60px;
  border-radius: 50%;
}

.price-card > * {
  position: relative;
  z-index: 1;
}

.price-card .price-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 10px;
}

.price-card .price-from {
  font-family: var(--font-tech);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 4px;
}

.price-card .price-value {
  font-family: var(--font-tech);
  font-size: 48px;
  font-weight: 700;
  color: var(--pure-white);
  line-height: 1;
  margin-bottom: 16px;
}

.price-card .price-meta {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-feature-card {
  background: var(--pure-white);
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--amber-800);
}

.sidebar-feature-card .ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.15);
  color: var(--amber-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.sidebar-feature-card h4 {
  font-family: var(--font-tech);
  font-size: 17px;
  font-weight: 600;
  color: var(--amber-800);
}

.sidebar-feature-card p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--amber-700);
}

.danger-text {
  color: #B91C1C;
}

.success-text {
  color: #15803D;
}

.italic-note {
  font-style: italic;
  color: var(--amber-700);
}

.image-block {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
}

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

.image-block.aspect-wide {
  aspect-ratio: 16 / 9;
}

.image-block.aspect-square {
  aspect-ratio: 1 / 1;
}

.image-block.aspect-portrait {
  aspect-ratio: 3 / 4;
}

.image-block.aspect-banner {
  aspect-ratio: 21 / 9;
}

@media (max-width: 1100px) {
  .sidebar-dock {
    transform: translateX(-100%);
    display: none;
  }
  .sidebar-dock.is-open {
    transform: translateX(0);
  }
  .mobile-bar {
    display: flex;
  }
  .app-shell {
    margin-left: 0;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero-visual {
    height: 420px;
  }
  .split-screen {
    grid-template-columns: 1fr;
  }
  .split-screen-media {
    position: relative;
    top: 0;
    max-height: 420px;
  }
  .contact-split {
    grid-template-columns: 1fr;
  }
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-card.span-2x2 {
    grid-column: span 2;
    grid-row: span 2;
  }
  .bento-card.span-2x1 {
    grid-column: span 2;
  }
  .process-graph {
    grid-template-columns: repeat(2, 1fr);
  }
  .masonry-grid {
    column-count: 2;
  }
  .flex-grow-grid {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }
  .flex-grow-card:hover {
    flex-grow: 1;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-detail-grid {
    grid-template-columns: 1fr;
  }
  .service-detail-aside {
    position: relative;
    top: 0;
  }
  .cta-band {
    flex-direction: column;
    text-align: center;
  }
  .section {
    padding: 70px 32px;
  }
  .hero-stage {
    padding: 100px 32px 60px;
    min-height: auto;
  }
  .mini-hero {
    padding: 110px 32px 50px;
  }
  .site-footer {
    padding: 60px 32px 30px;
  }
  .legal-shell {
    padding: 100px 32px 60px;
  }
  .coverflow-card {
    width: 320px;
  }
  .coverflow-card.is-left {
    transform: translateX(-200px) scale(0.85) rotateY(18deg);
  }
  .coverflow-card.is-right {
    transform: translateX(200px) scale(0.85) rotateY(-18deg);
  }
}

@media (max-width: 720px) {
  :root {
    --sidebar-w: 0px;
  }
  .hero-stage {
    min-height: auto;
    padding: 90px 20px 50px;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .hero-visual {
    height: 320px;
  }
  .hero-spec-floater {
    display: none;
  }
  .section {
    padding: 60px 20px;
  }
  .mini-hero {
    padding: 100px 20px 40px;
  }
  .site-footer {
    padding: 50px 20px 24px;
    border-radius: 24px 24px 0 0;
  }
  .site-footer::before {
    display: none;
  }
  .legal-shell {
    padding: 90px 20px 50px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .bento-card.span-2x2,
  .bento-card.span-2x1,
  .bento-card.span-1x2 {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 260px;
  }
  .process-graph {
    grid-template-columns: 1fr;
  }
  .masonry-grid {
    column-count: 1;
  }
  .flex-grow-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .coverflow-card {
    width: calc(100% - 40px);
    padding: 24px;
  }
  .coverflow-card.is-left,
  .coverflow-card.is-right {
    transform: translateX(-40px) scale(0.85) rotateY(18deg);
    opacity: 0;
  }
  .coverflow-card.is-right {
    transform: translateX(40px) scale(0.85) rotateY(-18deg);
  }
  .contact-form {
    padding: 26px;
  }
  .contact-info-card {
    padding: 28px;
  }
  .cta-band {
    padding: 40px 24px;
  }
  .cta-band::before {
    display: none;
  }
  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }
  .thanks-stage {
    padding: 60px 20px;
  }
  .thanks-badge {
    width: 90px;
    height: 90px;
    font-size: 42px;
  }
  .kpi-row {
    grid-template-columns: 1fr;
  }
  .team-tooltip {
    display: none !important;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .mobile-drawer::before,
  .mobile-drawer::after {
    display: none;
  }
  .hero-canvas .blob {
    width: 280px !important;
    height: 280px !important;
  }
  .hero-canvas .blob.b1 {
    left: -40%;
  }
  .hero-canvas .blob.b2 {
    right: -40%;
  }
  .hero-canvas .blob.b3 {
    left: 10%;
  }
}

@media (max-width: 480px) {
  .bento-card.span-2x1 .bento-content {
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 14px !important;
  }
  .bento-card.span-2x1 .bento-content .btn-link-amber {
    align-self: flex-start;
    margin-top: 8px;
  }
}

