/* ========================================================================
   🎨 ЦВЕТОВЫЕ СХЕМЫ - 4 ВАРИАНТА ПАЛИТРЫ!

   Схема 1: Lime & Beige (по умолчанию)
   Схема 2: Purple & Pink (из изображения 1)
   Схема 3: Olive & Orange (из изображения 2)
   Схема 4: Violet & Cyan (из изображения 4)
   ======================================================================== */

/* ========== ШРИФТОВЫЕ СХЕМЫ ========== */
:root,
[data-font="font1"] {
  --font-heading: 'Cal Sans', sans-serif;
}

[data-font="font2"] {
  --font-heading: 'Noto Serif', serif;
}

[data-font="font3"] {
  --font-heading: 'Bacasime Antique', serif;
}

[data-font="font4"] {
  --font-heading: 'Inter', sans-serif;
}

/* Дефолтные цвета (scheme6) - должны быть ПЕРЕД остальными схемами */
:root {
  --color-lime: #C9B99A;
  --color-lime-rgb: 201, 185, 154;
  --color-lime-hover: #B8A888;
  --color-lime-dark: #A09070;
  --color-beige: #3D3D3D;
  --color-beige-light: #4D4D4D;
  --color-beige-dark: #2D2D2D;
  --color-black: #141414;
  --color-white: #F5F5F5;
}

/* СХЕМА 1: Lime & Beige */
[data-color-scheme="scheme1"] {
  --color-lime: #D4FF00;
  --color-lime-rgb: 212, 255, 0;
  --color-lime-hover: #B8DD00;
  --color-lime-dark: #AACC00;
  --color-beige: #E5D5C0;
  --color-beige-light: #EFE5D9;
  --color-beige-dark: #C4B5A0;
  --color-black: #0F1419;
  --color-white: #FFFFFF;
}

/* СХЕМА 2: Electric & Royal */
[data-color-scheme="scheme2"] {
  --color-lime: #5271FF;       /* Electric - синий */
  --color-lime-rgb: 82, 113, 255;
  --color-lime-hover: #4260E8;
  --color-lime-dark: #3952D0;
  --color-beige: #DB88FF;      /* Royal - фиолетовый/розовый */
  --color-beige-light: #E8A8FF;
  --color-beige-dark: #C870E8;
  --color-black: #1A1A3A;      /* Темно-синий */
  --color-white: #FFFFFF;
}

/* СХЕМА 3: Dare Devil & Gold */
[data-color-scheme="scheme3"] {
  --color-lime: #FF5B22;       /* Dare Devil - оранжевый */
  --color-lime-rgb: 255, 91, 34;
  --color-lime-hover: #E85020;
  --color-lime-dark: #D0451C;
  --color-beige: #F2BB05;      /* Gold - золотой */
  --color-beige-light: #FFD040;
  --color-beige-dark: #D9A800;
  --color-black: #3D2A1F;      /* Темно-коричневый */
  --color-white: #FFFFFF;
}

/* СХЕМА 4: Violet & Arctic */
[data-color-scheme="scheme4"] {
  --color-lime: #7894FF;       /* Фиолетовый светлый */
  --color-lime-rgb: 120, 148, 255;
  --color-lime-hover: #6880E8;
  --color-lime-dark: #5A70D0;
  --color-beige: #AEE6ED;      /* Arctic - голубой */
  --color-beige-light: #C8F0F5;
  --color-beige-dark: #90D5DC;
  --color-black: #1A2A3A;      /* Темно-голубой */
  --color-white: #FFFFFF;
}

/* СХЕМА 5: Premium Black (минималистичный монохром) */
[data-color-scheme="scheme5"] {
  --color-lime: #FFFFFF;       /* Белый - максимальный контраст */
  --color-lime-rgb: 255, 255, 255;
  --color-lime-hover: #E0E0E0;
  --color-lime-dark: #CCCCCC;
  --color-beige: #2A2A2A;      /* Тёмный графит */
  --color-beige-light: #3A3A3A;
  --color-beige-dark: #1A1A1A;
  --color-black: #0A0A0A;      /* Почти чёрный */
  --color-white: #FFFFFF;
}

/* СХЕМА 6: Rich Black (богатый чёрно-серый) */
[data-color-scheme="scheme6"] {
  --color-lime: #C9B99A;       /* Тёплый кремовый акцент */
  --color-lime-rgb: 201, 185, 154;
  --color-lime-hover: #B8A888;
  --color-lime-dark: #A09070;
  --color-beige: #3D3D3D;      /* Средний графит */
  --color-beige-light: #4D4D4D;
  --color-beige-dark: #2D2D2D;
  --color-black: #141414;      /* Глубокий чёрный */
  --color-white: #F5F5F5;
}

/* Золотые заголовки для scheme6 */
[data-theme="dark"][data-color-scheme="scheme6"] .hero h1,
[data-theme="dark"][data-color-scheme="scheme6"] .section-title {
  color: var(--color-lime);
}

:root {
  /* Цвета бренда - управляются схемами выше */

  /* ===== ТЕКСТ ===== */
  --text-primary: #1A1A1A;
  --text-secondary: #666;
  --text-muted: #999;

  /* ===== ФОНЫ ===== */
  --bg-primary: #F8F9FA;
  --bg-secondary: #fff;
  --bg-card: #fff;

  /* ===== ГРАНИЦЫ ===== */
  --border-color: #E5E5E5;
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 16px;
  --border-radius-xl: 20px;
  --border-radius-full: 30px;

  /* ===== ОТСТУПЫ (SPACING) ===== */
  --space-xs: 10px;
  --space-sm: 20px;
  --space-md: 30px;
  --space-lg: 40px;
  --space-xl: 60px;
  --space-2xl: 100px;

  /* ===== ТИПОГРАФИКА ===== */
  --font-xs: 12px;
  --font-sm: 13px;
  --font-base: 14px;
  --font-md: 16px;
  --font-lg: 18px;
  --font-xl: 20px;
  --font-2xl: 28px;
  --font-3xl: 42px;
  --font-4xl: 48px;
  --font-5xl: 72px;

  /* ===== ТЕНИ ===== */
  --shadow-sm: 0 4px 20px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-xl: 0 10px 40px rgba(0,0,0,0.08);

  /* ===== ПРОЗРАЧНОСТИ ===== */
  --beige-alpha-40: rgba(229, 213, 192, 0.4);
  --beige-alpha-20: rgba(229, 213, 192, 0.2);
  --lime-alpha-40: rgba(212, 255, 0, 0.4);
  --lime-alpha-20: rgba(212, 255, 0, 0.2);
  --white-alpha-10: rgba(255, 255, 255, 0.1);
  --white-alpha-20: rgba(255, 255, 255, 0.2);
  --white-alpha-30: rgba(255, 255, 255, 0.3);
  --white-alpha-40: rgba(255, 255, 255, 0.4);
  --white-alpha-60: rgba(255, 255, 255, 0.6);
}

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

html, body {
  overflow-x: hidden;
  overflow-y: visible;
}

/* ========================================================================
   🎭 ФИРМЕННЫЕ МАСКИ ДЛЯ ФОТО
   ======================================================================== */

/* Маска-ромб (diamond) */
.photo-mask-diamond {
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  overflow: hidden;
}

/* Маска-скос (параллелограмм) */
.photo-mask-skew {
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
  overflow: hidden;
}

/* Маска-изометрический шестиугольник */
.photo-mask-iso {
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  overflow: hidden;
}

/* Маска-скругленный скос */
.photo-mask-round-skew {
  clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
  border-radius: 16px;
  overflow: hidden;
}

/* Общие стили для всех масок */
.photo-mask-diamond img,
.photo-mask-skew img,
.photo-mask-iso img,
.photo-mask-round-skew img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Декоративные элементы для фото */
.photo-accent {
  position: absolute;
  background: var(--color-lime);
}

.photo-accent-corner {
  width: 60px;
  height: 60px;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  top: 0;
  left: 0;
}

.photo-accent-line {
  height: 4px;
  width: 40%;
  bottom: 0;
  left: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  position: relative;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}


/* Header */
header {
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cal Sans', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--color-lime);
}

.logo-icon {
  width: 40px;
  height: 40px;
}

/* Header controls - hidden on desktop */
.header-controls {
  display: none;
}

/* Mobile-only elements hidden on desktop */
.mobile-only {
  display: none !important;
}

/* Mobile controls hidden on desktop */
.mobile-controls {
  display: none !important;
}

/* Burger menu - hidden on desktop */
.burger-menu {
  display: none;
}

nav {
  display: flex;
  align-items: center;
  gap: 35px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(30, 30, 30, 0.6);
  padding: 12px 24px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: fixed;
  top: 20px;
  right: 60px;
  z-index: 1001;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #FFFFFF;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  background-color: #0A0A0A;
  overflow: hidden;
}

.hero .container {
  width: 100%;
  max-width: 1400px;
  position: relative;
  z-index: 10;
}

.hero-content {
  max-width: 500px;
  padding-right: 40px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -2px;
  color: #FFFFFF;
}

/* Serif accent for headlines */
.serif-accent {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
}

.hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
  max-width: 450px;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--color-lime);
  color: var(--color-black);
}

.btn-primary:hover {
  background: var(--color-lime-hover);
  transform: translateY(-2px);
}

.stats-row {
  display: flex;
  gap: 0;
  margin-top: 40px;
  border-radius: 12px;
  border: 1px solid var(--white-alpha-60);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.stat-card {
  padding: 20px 30px;
  text-align: center;
  background: transparent;
  position: relative;
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: inherit;
  z-index: -1;
}

.stat-card:nth-child(1) {
  border-radius: 12px 0 0 12px;
  background: rgba(60, 60, 60, 0.6);
}

.stat-card:nth-child(1)::before {
  border-radius: 12px 0 0 12px;
}

.stat-card:nth-child(2) {
  border-left: 1px solid var(--white-alpha-30);
  border-right: 1px solid var(--white-alpha-30);
  background: rgba(60, 60, 60, 0.6);
}

.stat-card:nth-child(3) {
  border-radius: 0 12px 12px 0;
  background: rgba(60, 60, 60, 0.6);
}

.stat-card:nth-child(3)::before {
  border-radius: 0 12px 12px 0;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 900;
}

.stat-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

.hero-visual {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

#city-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  max-width: none;
  max-height: none;
}

/* Quote Section */
.quote-section {
  padding: 70px 0;
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, var(--color-lime) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, var(--color-beige) 0%, transparent 50%);
  opacity: 0.06;
  pointer-events: none;
}

.quote-3d-element {
  position: absolute;
  width: 180px;
  height: 200px;
  pointer-events: none;
  z-index: 1;
}

.quote-3d-left {
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
}

.quote-3d-right {
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
}

.quote-3d-element canvas,
.quote-3d-element svg {
  width: 100%;
  height: 100%;
}

#quote-canvas {
  width: 100% !important;
  height: 100% !important;
}

.floating-shape {
  animation: float 6s ease-in-out infinite;
}

.quote-3d-right .floating-shape {
  animation-delay: -3s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(3deg);
  }
}

/* Section decorative elements */
.section-decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.section-decor svg {
  width: 100%;
  height: 100%;
}

.floating-shape-small {
  animation: floatSmall 8s ease-in-out infinite;
}

@keyframes floatSmall {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

.decor-top-right {
  width: 150px;
  height: 150px;
  top: 40px;
  right: 5%;
}

.decor-bottom-left {
  width: 180px;
  height: 200px;
  bottom: 20%;
  left: 3%;
  animation-delay: -2s;
}

.decor-top-right-cta {
  width: 120px;
  height: 120px;
  top: 15%;
  right: 8%;
  animation-delay: -4s;
}

.brand-quote {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.brand-quote::before {
  content: '"';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 200px;
  font-family: var(--font-heading);
  color: var(--color-lime);
  opacity: 0.15;
  line-height: 1;
  pointer-events: none;
}

.brand-quote p {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-primary);
  margin-bottom: 40px;
  font-style: italic;
}

.brand-quote cite {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-style: normal;
}

.quote-author {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--color-lime);
}

.quote-role {
  font-size: 16px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Features Section */
.features {
  padding: 70px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(30deg, var(--color-lime) 12%, transparent 12.5%, transparent 87%, var(--color-lime) 87.5%, var(--color-lime)),
    linear-gradient(150deg, var(--color-lime) 12%, transparent 12.5%, transparent 87%, var(--color-lime) 87.5%, var(--color-lime)),
    linear-gradient(30deg, var(--color-lime) 12%, transparent 12.5%, transparent 87%, var(--color-lime) 87.5%, var(--color-lime)),
    linear-gradient(150deg, var(--color-lime) 12%, transparent 12.5%, transparent 87%, var(--color-lime) 87.5%, var(--color-lime));
  background-size: 40px 70px;
  background-position: 0 0, 0 0, 20px 35px, 20px 35px;
  background-color: var(--color-black);
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

.features .container {
  position: relative;
  z-index: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding-top: 20px; /* Space for peeking icons */
}

.feature-card {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 50px 50px 50px 100px;
  background: #0a0a0a;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

/* Feature icon - no background, overflows card */
.feature-icon-overflow {
  width: 120px;
  height: 120px;
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.15));
  flex-shrink: 0;
}

.feature-card:hover .feature-icon-overflow {
  transform: translateY(-50%) scale(1.1) rotate(-5deg);
}

/* SVG color classes for theme adaptation */
.svg-fill-lime { fill: var(--color-lime); }
.svg-fill-lime-dark { fill: var(--color-lime-dark); }
.svg-fill-beige { fill: var(--color-beige); }
.svg-fill-black { fill: var(--color-black); }
.svg-fill-bg { fill: var(--bg-primary); }
.svg-stroke-lime { stroke: var(--color-lime); }
.svg-stroke-beige { stroke: var(--color-beige); }
.svg-stroke-black { stroke: var(--color-black); }

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* How It Works */
.how-it-works {
  padding: 70px 0;
  background: var(--bg-primary);
  position: relative;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, var(--color-lime) 0%, transparent 20%, transparent 80%, var(--color-beige) 100%);
  opacity: 0.03;
  pointer-events: none;
}

.how-it-works .container {
  position: relative;
  z-index: 1;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: -0.01em;
}

/* Steps Bento Grid Layout - True Bento with varying sizes */
.steps-bento {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  grid-template-rows: auto auto;
  gap: 24px;
}

.step-card {
  background: #0a0a0a;
  border-radius: 24px;
  padding: 40px 28px 32px;
  text-align: center;
  position: relative;
  overflow: visible;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Step 1 - Large, spans 2 rows */
.step-card.step-hero {
  grid-row: span 2;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left; /* Left align for large cards */
}

/* Step 2 - Wide, spans 2 columns */
.step-card.step-wide {
  grid-column: span 2;
  padding: 40px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

/* AH Brand Pattern фон с прозрачностью 30% */
.step-card.step-wide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-lime);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='32' viewBox='0 0 88 32'%3E%3Cg stroke='black' stroke-width='1.2' fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 16 L11 0 L20 16'/%3E%3Cpath d='M5.5 10 L16.5 10'/%3E%3Cpath d='M24 0 L24 16'/%3E%3Cpath d='M42 0 L42 16'/%3E%3Cpath d='M24 8 L42 8'/%3E%3Cpath d='M46 16 L55 0 L64 16'/%3E%3Cpath d='M49.5 10 L60.5 10'/%3E%3Cpath d='M68 0 L68 16'/%3E%3Cpath d='M86 0 L86 16'/%3E%3Cpath d='M68 8 L86 8'/%3E%3Cpath d='M2 16 L2 32'/%3E%3Cpath d='M20 16 L20 32'/%3E%3Cpath d='M2 24 L20 24'/%3E%3Cpath d='M24 32 L33 16 L42 32'/%3E%3Cpath d='M27.5 26 L38.5 26'/%3E%3Cpath d='M46 16 L46 32'/%3E%3Cpath d='M64 16 L64 32'/%3E%3Cpath d='M46 24 L64 24'/%3E%3Cpath d='M68 32 L77 16 L86 32'/%3E%3Cpath d='M71.5 26 L82.5 26'/%3E%3C/g%3E%3C/svg%3E");
  mask-size: 88px 32px;
  mask-repeat: repeat;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='32' viewBox='0 0 88 32'%3E%3Cg stroke='black' stroke-width='1.2' fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 16 L11 0 L20 16'/%3E%3Cpath d='M5.5 10 L16.5 10'/%3E%3Cpath d='M24 0 L24 16'/%3E%3Cpath d='M42 0 L42 16'/%3E%3Cpath d='M24 8 L42 8'/%3E%3Cpath d='M46 16 L55 0 L64 16'/%3E%3Cpath d='M49.5 10 L60.5 10'/%3E%3Cpath d='M68 0 L68 16'/%3E%3Cpath d='M86 0 L86 16'/%3E%3Cpath d='M68 8 L86 8'/%3E%3Cpath d='M2 16 L2 32'/%3E%3Cpath d='M20 16 L20 32'/%3E%3Cpath d='M2 24 L20 24'/%3E%3Cpath d='M24 32 L33 16 L42 32'/%3E%3Cpath d='M27.5 26 L38.5 26'/%3E%3Cpath d='M46 16 L46 32'/%3E%3Cpath d='M64 16 L64 32'/%3E%3Cpath d='M46 24 L64 24'/%3E%3Cpath d='M68 32 L77 16 L86 32'/%3E%3Cpath d='M71.5 26 L82.5 26'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask-size: 88px 32px;
  -webkit-mask-repeat: repeat;
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}

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

.step-card.step-large {
  grid-row: span 1;
  padding: 40px 32px;
}

/* Step 5 - Full width (last card) */
.step-card:last-child {
  grid-column: 1 / -1;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* Overflow icon - no background, exits card boundaries */
.step-icon-overflow {
  width: 100px;
  height: 100px;
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.3s ease;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.15));
}

.step-card.step-large .step-icon-overflow {
  width: 120px;
  height: 120px;
  top: -45px;
}

.step-card.step-hero .step-icon-overflow {
  width: 140px;
  height: 140px;
  top: -55px;
  left: 40px;
  transform: none;
}

.step-card.step-wide .step-icon-overflow {
  width: 110px;
  height: 110px;
  left: 80px;
  transform: none;
}

/* Hero card inherits base 60px from .step-card */

.step-card.step-hero p {
  font-size: 17px;
  line-height: 1.8;
}

/* Wide card inherits base 60px from .step-card */

.step-card.step-wide p {
  font-size: 15px;
}

.step-card:hover .step-icon-overflow {
  transform: translateX(-50%) scale(1.1) rotate(-5deg);
}

.step-card.step-hero:hover .step-icon-overflow,
.step-card.step-wide:hover .step-icon-overflow {
  transform: scale(1.1) rotate(-5deg);
}

.step-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 60px;
  font-weight: 800;
  color: var(--color-lime);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  line-height: 1;
}

.step-card h4 {
  font-family: var(--font-heading);
  font-size: 60px;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.1;
}

/* Large card inherits base 60px from .step-card */

.step-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.step-card.step-large p {
  font-size: 16px;
  line-height: 1.7;
}

/* Why Tokenize */
.why-tokenize {
  padding: 70px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

/* Benefits Bento Grid - Asymmetric layout */
.benefits-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 30px;
  padding-top: 80px; /* Space for overflow icons */
}

.benefit-card {
  text-align: center;
  padding: 90px 36px 40px;
  background: var(--bg-primary);
  border-radius: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
}

/* Large card - spans full height on left */
.benefit-card.benefit-large {
  grid-row: span 2;
  padding: 110px 44px 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left; /* Left align for large cards */
}

/* Stacked cards on right */
.benefit-card.benefit-stacked {
  padding: 80px 32px 36px;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

/* Overflow icon - no background */
.benefit-icon-overflow {
  width: 90px;
  height: 90px;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.3s ease;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.15));
}

.benefit-card.benefit-large .benefit-icon-overflow {
  width: 130px;
  height: 130px;
  top: -55px;
  left: 44px;
  transform: none;
}

.benefit-card:hover .benefit-icon-overflow {
  transform: translateX(-50%) scale(1.1) rotate(-5deg);
}

.benefit-card.benefit-large:hover .benefit-icon-overflow {
  transform: scale(1.1) rotate(-5deg);
}

.benefit-card h4 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.benefit-card.benefit-large h4 {
  font-size: 32px;
  margin-bottom: 20px;
}

.benefit-card p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Properties */
.properties {
  padding: 70px 0;
  background: var(--bg-primary);
  position: relative;
}

.properties .container {
  position: relative;
  z-index: 1;
}

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

.property-card {
  background: #0a0a0a;
  border-radius: 24px;
  overflow: visible; /* Allow shadow to show */
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.property-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.property-image {
  height: 220px;
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin: 16px;
  border-radius: 16px;
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.property-card:hover .property-image img {
  transform: scale(1.05);
}

/* Comic-style shadow - using wrapper approach since clip-path clips shadows */
/* Shadow wrapper - no clip-path, has filter */
.photo-shadow-wrapper {
  filter: drop-shadow(12px 12px 0 var(--color-lime));
  position: relative;
  margin: 16px;
  margin-bottom: 24px; /* Extra space for shadow */
}

/* Inner element with clip-path - shadow shows through */
.photo-shadow-wrapper .property-image {
  margin: 0;
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}

.photo-shadow-wrapper .property-image.photo-mask-skew {
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}

/* Reset overflow for inner property-image inside wrapper */
.photo-shadow-wrapper .property-image {
  overflow: hidden;
}

.property-content {
  padding: 32px;
}

.property-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.property-price span:first-child {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.property-yield {
  background: var(--color-lime);
  color: var(--color-black);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
}

.property-desc {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

.property-link {
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  border-bottom: 2px solid var(--color-lime);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.property-link:hover {
  color: var(--color-lime);
}

/* Partners */
.partners {
  padding: 50px 0;
  background: var(--bg-secondary);
  position: relative;
}

.partners::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, var(--color-lime) 0%, transparent 10%, transparent 90%, var(--color-beige) 100%);
  opacity: 0.02;
  pointer-events: none;
}

.partners .container {
  position: relative;
  z-index: 1;
}

.partners-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.partner-logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
}

.partner-logo:hover {
  color: var(--text-primary);
  background: var(--bg-primary);
  transform: translateY(-4px);
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='32' viewBox='0 0 88 32'%3E%3Cg stroke='%23000000' stroke-width='1.2' fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 16 L11 0 L20 16'/%3E%3Cpath d='M5.5 10 L16.5 10'/%3E%3Cpath d='M24 0 L24 16'/%3E%3Cpath d='M42 0 L42 16'/%3E%3Cpath d='M24 8 L42 8'/%3E%3Cpath d='M46 16 L55 0 L64 16'/%3E%3Cpath d='M49.5 10 L60.5 10'/%3E%3Cpath d='M68 0 L68 16'/%3E%3Cpath d='M86 0 L86 16'/%3E%3Cpath d='M68 8 L86 8'/%3E%3Cpath d='M2 16 L2 32'/%3E%3Cpath d='M20 16 L20 32'/%3E%3Cpath d='M2 24 L20 24'/%3E%3Cpath d='M24 32 L33 16 L42 32'/%3E%3Cpath d='M27.5 26 L38.5 26'/%3E%3Cpath d='M46 16 L46 32'/%3E%3Cpath d='M64 16 L64 32'/%3E%3Cpath d='M46 24 L64 24'/%3E%3Cpath d='M68 32 L77 16 L86 32'/%3E%3Cpath d='M71.5 26 L82.5 26'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 88px 32px;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text-primary);
}

.cta-content p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.7;
}

.contact-form-wrapper {
  position: relative;
}

.contact-form {
  background: var(--bg-primary);
  padding: 48px;
  border-radius: 24px;
  transition: all 0.3s ease;
  box-shadow: 10px 10px 0 var(--color-lime);
}

.contact-form:hover {
  box-shadow: 12px 12px 0 var(--color-lime);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
}

.form-group textarea {
  height: 100px;
  resize: none;
}

.btn-submit {
  width: 100%;
  background: var(--color-beige);
  color: var(--color-black);
}

/* Constructor Header */
.constructor-header {
  padding: 80px 0 40px;
  background: #0a0a0a;
  text-align: center;
}

.constructor-header .section-title {
  margin-bottom: 16px;
}

.section-description {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Constructor */
.constructor {
  padding: 40px 0 70px;
  background: #000000;
}

.constructor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.constructor-controls {
  padding: 40px;
}

.constructor-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 40px;
  line-height: 1.1;
}

.control-group {
  margin-bottom: 30px;
}

.control-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.detail-slider {
  width: 100%;
  height: 8px;
  -webkit-appearance: none;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  outline: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.detail-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  background: var(--color-lime);
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid #fff;
}

.slider-value {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 8px;
}

.detail-hints {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.detail-hints .hint {
  font-size: 11px;
  padding: 4px 8px;
  background: var(--white-alpha-10);
  border-radius: 12px;
  color: var(--text-muted);
  transition: all 0.2s;
}

.detail-hints .hint.active {
  background: var(--color-lime);
  color: var(--color-black);
  font-weight: 600;
}

.shape-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.shape-btn {
  padding: 12px 20px;
  background: var(--white-alpha-10);
  border: 2px solid var(--white-alpha-20);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.shape-btn:hover {
  background: var(--white-alpha-20);
}

.shape-btn.active {
  background: var(--color-lime);
  border-color: var(--color-lime);
  color: var(--color-black);
}

.card-type-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.card-type-btn {
  padding: 12px 16px;
  background: var(--white-alpha-10);
  border: 2px solid var(--white-alpha-20);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.card-type-btn:hover {
  background: var(--white-alpha-20);
}

.card-type-btn.active {
  background: var(--color-lime);
  border-color: var(--color-lime);
  color: var(--color-black);
}

.color-buttons {
  display: flex;
  gap: 12px;
}

.color-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
}

.color-btn:hover {
  transform: scale(1.1);
}

.color-btn.active {
  border-color: var(--color-white);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.constructor-preview {
  background: transparent;
  border-radius: 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 400px;
  overflow: hidden;
}

.preview-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 15px;
  padding: 0 20px;
  display: none;
}

#constructor-canvas {
  flex: 1;
  width: 100%;
  border-radius: 12px;
}

#card-preview-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

#card-preview-container.card-type-property,
#card-preview-container.card-type-article,
#card-preview-container.card-type-banner {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

/* Preview Card Styles */
.preview-property-card {
  background: #0a0a0a;
  border-radius: 20px;
  padding: 30px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
}

.preview-card-visual {
  width: 100%;
  flex: 1;
  min-height: 250px;
  border-radius: 16px;
  margin-bottom: 20px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.preview-card-visual canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.preview-card-info {
  color: var(--text-primary);
}

.preview-card-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.preview-card-price {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
}

.preview-card-yield {
  background: var(--color-lime);
  color: var(--color-black);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
}

.preview-card-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.preview-card-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
}

.preview-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: underline;
  display: block;
  margin-bottom: 16px;
}

.preview-card-btn {
  width: 100%;
  padding: 14px;
  background: var(--color-lime);
  color: var(--color-black);
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.preview-card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 255, 0, 0.4);
}

/* Article Card */
.preview-article-card {
  background: #0a0a0a;
  border-radius: 24px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.preview-article-visual {
  width: calc(100% - 32px);
  flex: 1;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-secondary);
  border-radius: 16px;
  margin: 16px;
  margin-bottom: 0;
  position: relative;
}

.preview-article-visual canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.preview-article-info {
  padding: 32px;
}

.preview-article-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-lime);
  margin-bottom: 16px;
}

.preview-article-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.3;
}

.preview-article-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.preview-article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.preview-article-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  border-bottom: 2px solid var(--color-lime);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.preview-article-link:hover {
  color: var(--color-lime);
}

.preview-article-date {
  font-size: 13px;
  color: var(--text-muted);
}

/* Article Photo with Comic Shadow */
.article-photo {
  width: 100%;
  height: 100%;
  position: relative;
}

.article-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.preview-article-card:hover .article-photo img {
  transform: scale(1.05);
}

.article-photo.photo-comic-shadow {
  box-shadow: 8px 8px 0 var(--color-lime);
}

.preview-article-visual {
  position: relative;
  overflow: visible;
  padding: 10px;
}

.preview-article-visual .photo-accent-corner {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
}

/* Banner Card */
.preview-banner-card {
  background: linear-gradient(135deg, #000000 0%, var(--bg-secondary) 100%);
  border-radius: 20px;
  padding: 50px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  position: relative;
}

.preview-banner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-lime);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='32' viewBox='0 0 88 32'%3E%3Cg stroke='black' stroke-width='1.2' fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 16 L11 0 L20 16'/%3E%3Cpath d='M5.5 10 L16.5 10'/%3E%3Cpath d='M24 0 L24 16'/%3E%3Cpath d='M42 0 L42 16'/%3E%3Cpath d='M24 8 L42 8'/%3E%3Cpath d='M46 16 L55 0 L64 16'/%3E%3Cpath d='M49.5 10 L60.5 10'/%3E%3Cpath d='M68 0 L68 16'/%3E%3Cpath d='M86 0 L86 16'/%3E%3Cpath d='M68 8 L86 8'/%3E%3Cpath d='M2 16 L2 32'/%3E%3Cpath d='M20 16 L20 32'/%3E%3Cpath d='M2 24 L20 24'/%3E%3Cpath d='M24 32 L33 16 L42 32'/%3E%3Cpath d='M27.5 26 L38.5 26'/%3E%3Cpath d='M46 16 L46 32'/%3E%3Cpath d='M64 16 L64 32'/%3E%3Cpath d='M46 24 L64 24'/%3E%3Cpath d='M68 32 L77 16 L86 32'/%3E%3Cpath d='M71.5 26 L82.5 26'/%3E%3C/g%3E%3C/svg%3E");
  mask-size: 88px 32px;
  mask-repeat: repeat;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='32' viewBox='0 0 88 32'%3E%3Cg stroke='black' stroke-width='1.2' fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 16 L11 0 L20 16'/%3E%3Cpath d='M5.5 10 L16.5 10'/%3E%3Cpath d='M24 0 L24 16'/%3E%3Cpath d='M42 0 L42 16'/%3E%3Cpath d='M24 8 L42 8'/%3E%3Cpath d='M46 16 L55 0 L64 16'/%3E%3Cpath d='M49.5 10 L60.5 10'/%3E%3Cpath d='M68 0 L68 16'/%3E%3Cpath d='M86 0 L86 16'/%3E%3Cpath d='M68 8 L86 8'/%3E%3Cpath d='M2 16 L2 32'/%3E%3Cpath d='M20 16 L20 32'/%3E%3Cpath d='M2 24 L20 24'/%3E%3Cpath d='M24 32 L33 16 L42 32'/%3E%3Cpath d='M27.5 26 L38.5 26'/%3E%3Cpath d='M46 16 L46 32'/%3E%3Cpath d='M64 16 L64 32'/%3E%3Cpath d='M46 24 L64 24'/%3E%3Cpath d='M68 32 L77 16 L86 32'/%3E%3Cpath d='M71.5 26 L82.5 26'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask-size: 88px 32px;
  -webkit-mask-repeat: repeat;
  opacity: 0.12;
  z-index: 1;
  pointer-events: none;
}

.preview-banner-content {
  flex: 1;
  position: relative;
  z-index: 10;
}

.preview-banner-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.preview-banner-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
}

.preview-banner-btn {
  padding: 16px 32px;
  background: var(--color-lime);
  color: var(--color-black);
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.preview-banner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 255, 0, 0.4);
}

.preview-banner-visual {
  width: 400px;
  height: 400px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  overflow: visible;
  margin: -50px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.preview-banner-visual canvas {
  object-fit: cover;
}

/* Brandbook Bento */
.brandbook {
  padding: 70px 0;
  background: #F8F9FA;
  position: relative;
  overflow: visible;
}

/* Floating 3D Brand Elements */
.floating-brand-elements {
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  bottom: -50px;
  pointer-events: none;
  z-index: 20;
}

#brand-elements-canvas {
  width: 100%;
  height: 100%;
}

/* Bento scroll wrapper */
.bento-scroll-wrapper {
  width: 100%;
}

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

/* Bento items need overflow visible to show 3D overflow */
.bento-item {
  background: var(--bg-secondary);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  overflow: visible;
}

.bento-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

/* Colors */
.bento-colors {
  grid-column: span 2;
}

/* AH Pattern Inverted Block */
.bento-pattern-h {
  grid-column: span 1;
  position: relative;
  overflow: hidden;
  background: transparent !important;
  padding: 0 !important;
  min-height: 200px;
}

.bento-pattern-h.bento-item {
  background: transparent !important;
}

.bento-pattern-h .pattern-demo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  border-radius: 20px;
}

.bento-pattern-h .bento-label {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  background: rgba(0,0,0,0.7);
  color: var(--color-white);
  padding: 8px 12px;
  border-radius: 8px;
  display: inline-block;
  margin: 0;
}

/* Gradient */
.bento-gradient {
  grid-column: span 1;
}

.color-swatches {
  display: flex;
  gap: 16px;
}

.swatch {
  flex: 1;
  height: 120px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  color: #1A1A1A;
}

.swatch-lime { background: var(--color-lime); }
.swatch-beige { background: var(--color-beige); }
.swatch-black { background: var(--color-black); color: var(--color-white); }

.swatch span {
  font-weight: 700;
  font-size: 16px;
}

.swatch code {
  font-size: 12px;
  opacity: 0.7;
  font-family: monospace;
}

/* Brand Gradient - радиальные градиенты */
.bento-gradient {
  grid-column: span 1;
  overflow: hidden;
  position: relative;
}

.gradient-demo {
  position: relative;
  width: 100%;
  height: 140px;
  border-radius: 16px;
  overflow: hidden;
}

.gradient-preview {
  position: absolute;
  inset: 0;
  background: 
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='32' viewBox='0 0 88 32'%3E%3Cg stroke='%23C9B99A' stroke-width='1' fill='none' stroke-linecap='round' stroke-linejoin='round' opacity='0.15'%3E%3Cpath d='M2 16 L11 0 L20 16'/%3E%3Cpath d='M5.5 10 L16.5 10'/%3E%3Cpath d='M24 0 L24 16'/%3E%3Cpath d='M42 0 L42 16'/%3E%3Cpath d='M24 8 L42 8'/%3E%3Cpath d='M46 16 L55 0 L64 16'/%3E%3Cpath d='M49.5 10 L60.5 10'/%3E%3Cpath d='M68 0 L68 16'/%3E%3Cpath d='M86 0 L86 16'/%3E%3Cpath d='M68 8 L86 8'/%3E%3Cpath d='M2 16 L2 32'/%3E%3Cpath d='M20 16 L20 32'/%3E%3Cpath d='M2 24 L20 24'/%3E%3Cpath d='M24 32 L33 16 L42 32'/%3E%3Cpath d='M27.5 26 L38.5 26'/%3E%3Cpath d='M46 16 L46 32'/%3E%3Cpath d='M64 16 L64 32'/%3E%3Cpath d='M46 24 L64 24'/%3E%3Cpath d='M68 32 L77 16 L86 32'/%3E%3Cpath d='M71.5 26 L82.5 26'/%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(ellipse 80% 60% at 30% 40%, rgba(var(--color-lime-rgb), 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 70% 50% at 70% 60%, rgba(var(--color-lime-rgb), 0.05) 0%, transparent 65%),
    #0a0a0a;
  background-size: 88px 32px, 100% 100%, 100% 100%, 100% 100%;
  background-repeat: repeat, no-repeat, no-repeat, no-repeat;
  border-radius: 16px;
  position: relative;
}

/* Убираем ::before - больше не нужен */

.gradient-glow {
  position: absolute;
  width: 100px;
  height: 100px;
  bottom: -20px;
  left: -20px;
  background: var(--color-lime);
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.35;
}

/* Iconography - Компактная сетка без span */
.bento-iconography {
  grid-column: span 2;
  min-height: auto;
}

.icon-bento-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 6px;
  padding: 10px;
}

/* Все иконки одинакового размера - компактные */
.icon-bento-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
  aspect-ratio: 1;
}

/* Убираем все span - все иконки 1x1 */
.icon-bento-item:nth-child(1),
.icon-bento-item:nth-child(5) {
  grid-column: span 1;
  grid-row: span 1;
}

/* Показываем все иконки */
.icon-bento-item:nth-child(n+7) {
  display: flex;
}

.icon-bento-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-lime);
  transform: scale(1.05);
}

.icon-bento-item svg {
  width: 65%;
  height: 65%;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
}

.icon-bento-item:hover svg {
  color: var(--color-lime);
}

@media (max-width: 768px) {
  .icon-bento-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    padding: 8px;
  }

  .bento-iconography {
    grid-column: span 2;
  }

  /* Показываем все иконки на мобилке */
  .icon-bento-item:nth-child(n+7) {
    display: flex !important;
  }

  .icon-bento-item svg {
    width: 55%;
    height: 55%;
  }
}

/* Phone Mockups */
.bento-mockups {
  grid-column: span 4;
  min-height: 350px;
  max-height: 420px;
  overflow: hidden;
  background: transparent;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.bento-mockups .bento-label {
  display: none;
}

/* Mockups text block - right aligned */
.mockups-text {
  flex: 0 0 220px;
  padding: 30px;
  text-align: right;
  order: 1;
}

.mockups-text h3 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.mockups-text p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.mockups-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  padding: 30px 24px 0;
  flex: 1;
  height: 100%;
}

.phone-mockup {
  width: 180px;
  height: 400px;
  flex-shrink: 0;
  background: #0a0a0a;
  border-radius: 22px;
  border: 3px solid var(--color-lime);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5), 0 0 20px rgba(201, 185, 154, 0.15);
}

.phone-mockup:hover {
  transform: translateY(-8px);
}

/* Brand Banner - Full Width */
.bento-brand-statement {
  grid-column: span 4;
  min-height: 220px;
  background: var(--color-lime);
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 40px 60px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

/* Subtle gradient overlay */
.bento-brand-statement::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    transparent 50%,
    rgba(0,0,0,0.15) 100%
  );
  pointer-events: none;
}

.bento-brand-statement .bento-label {
  display: none;
}

/* 3D Building container - right side, overflow bottom */
.bento-brand-statement #brand-message-canvas {
  position: absolute !important;
  top: auto !important;
  bottom: -40% !important;
  left: auto !important;
  right: 5% !important;
  width: 50% !important;
  height: 180% !important;
  pointer-events: none;
  z-index: 1;
}

.brand-statement-text {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  max-width: 50%;
}

.brand-statement-text h3 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.brand-statement-text p {
  font-size: 1.1rem;
  color: #fff;
  opacity: 0.9;
  line-height: 1.5;
  max-width: 320px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

/* Table Bento Block */
.bento-table {
  grid-column: span 2;
}

.brand-table-container {
  width: 100%;
  overflow: hidden;
}

.brand-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.brand-table th {
  text-align: left;
  padding: 10px 12px;
  background: var(--color-beige);
  color: var(--color-black);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--color-lime);
}

.brand-table th:last-child {
  text-align: right;
}

.brand-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-primary);
}

.brand-table td:last-child {
  text-align: right;
}

.brand-table tbody tr:hover {
  background: rgba(var(--color-lime-rgb), 0.05);
}

.brand-table tbody tr:last-child td {
  border-bottom: none;
}

.brand-table .positive {
  color: #10B981;
  font-weight: 600;
}

.brand-table .negative {
  color: #EF4444;
  font-weight: 600;
}

/* Chart Bento Block */
.bento-chart {
  grid-column: span 1;
  min-height: auto;
  padding: 20px;
}

.bento-chart .bento-label {
  font-size: 11px;
  margin-bottom: 10px;
}

.brand-chart-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
}

.brand-chart {
  width: 100%;
  height: auto;
  max-height: 120px;
}

.chart-legend {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0;
  gap: 2px;
}

.legend-value {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--color-lime);
}

.legend-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Email Banner Bento Block - Modern email layout */
.bento-email-banner {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  min-height: 280px;
  position: relative;
  border: 1px solid rgba(255,255,255,0.1);
}

.bento-email-banner .bento-label {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
  background: rgba(0,0,0,0.6);
  color: rgba(255,255,255,0.9);
  font-size: 10px;
  padding: 6px 10px;
  border-radius: 20px;
}

.bento-email-banner .email-header {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.bento-email-banner .email-logo {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-lime);
}

.bento-email-banner .email-hero {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 30px;
}

.bento-email-banner #email-3d-canvas {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 50%;
  height: 150%;
  pointer-events: none;
  opacity: 0.6;
}

.bento-email-banner .email-hero-content {
  position: relative;
  z-index: 2;
  max-width: 60%;
}

.bento-email-banner .email-hero h4 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 10px;
  line-height: 1.15;
}

.bento-email-banner .email-hero p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
  line-height: 1.5;
}

.bento-email-banner .email-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 24px;
  background: var(--color-lime);
  color: var(--color-black);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Ad Creative Bento Block */
.bento-ad-creative {
  grid-column: span 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
  min-height: auto;
  border-radius: 20px;
}

.bento-ad-creative .bento-label {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
  background: rgba(0,0,0,0.6);
  color: rgba(255,255,255,0.9);
  font-size: 10px;
  padding: 6px 10px;
  border-radius: 20px;
}

.bento-ad-creative #ad-3d-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.bento-ad-creative .ad-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding: 20px 16px;
  background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, transparent 100%);
  width: 100%;
}

.bento-ad-creative .ad-headline {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 900;
  color: var(--color-white);
  text-transform: uppercase;
  line-height: 1.2;
}

.bento-ad-creative .ad-subline {
  font-size: 12px;
  color: var(--color-lime);
  font-weight: 600;
}

.bento-ad-creative .ad-cta-btn {
  margin-top: 8px;
  padding: 10px 20px;
  background: var(--color-lime);
  color: var(--color-black);
  font-size: 10px;
  font-weight: 700;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 54px;
  height: 14px;
  background: #000;
  border-radius: 10px;
  z-index: 10;
}

.phone-notch::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #1a1a1a;
  border-radius: 50%;
}

.phone-screen {
  position: absolute;
  inset: 5px;
  background: #0f0f0f;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 6px 4px;
  background: #0a0a0a;
}

.mock-logo {
  font-size: 8px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 3px;
}

.mock-logo-icon {
  width: 10px;
  height: 15px;
  flex-shrink: 0;
}

.mock-menu {
  font-size: 6px;
  color: #666;
}

.mock-content {
  padding: 4px;
  flex: 1;
}

.mock-card {
  background: #1a1a1a;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.mock-card-img {
  height: 30px;
  background: linear-gradient(135deg, #252525 0%, #1a1a1a 100%);
}

.mock-card-info {
  padding: 3px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mock-price {
  font-size: 6px;
  font-weight: 700;
  color: #fff;
}

.mock-tokens {
  font-size: 7px;
  color: #666;
}

.mock-stats {
  display: flex;
  gap: 3px;
  margin-top: 4px;
  padding: 0 4px;
}

.mock-stat {
  flex: 1;
  background: #1a1a1a;
  border-radius: 3px;
  padding: 3px;
  text-align: center;
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.mock-stat-val {
  display: block;
  font-size: 6px;
  font-weight: 700;
  color: var(--color-lime);
}

.mock-stat-label {
  display: block;
  font-size: 5px;
  color: #666;
  margin-top: 2px;
}

.mock-hero {
  padding: 6px 5px;
  text-align: center;
}

.mock-title {
  font-size: 8px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 5px;
}

.mock-title em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
}

.mock-btn {
  display: inline-block;
  background: var(--color-lime);
  color: #000;
  font-size: 4px;
  font-weight: 700;
  padding: 3px 6px;
  border-radius: 2px;
}

.mock-chart {
  padding: 5px;
  margin-top: auto;
}

.mock-chart svg {
  width: 100%;
  height: 18px;
  color: var(--color-lime);
}

.mock-property {
  padding: 4px;
}

.mock-property-visual {
  height: 35px;
  background: linear-gradient(135deg, #d0d0d0 0%, #e8e8e8 100%);
  border-radius: 4px;
  margin-bottom: 4px;
}

.mock-property-info {
  text-align: center;
}

.mock-property-name {
  display: block;
  font-size: 5px;
  font-weight: 700;
  color: #000;
  margin-bottom: 3px;
}

.mock-progress {
  height: 2px;
  background: #e0e0e0;
  border-radius: 1px;
  overflow: hidden;
  margin-bottom: 2px;
}

.mock-progress-bar {
  width: 78%;
  height: 100%;
  background: var(--color-lime);
  border-radius: 1px;
}

.mock-property-funded {
  font-size: 7px;
  color: #888;
}

.mock-actions {
  padding: 4px;
  margin-top: auto;
}

.mock-action-btn {
  background: var(--color-lime);
  color: #000;
  font-size: 7px;
  font-weight: 700;
  padding: 6px;
  border-radius: 4px;
  text-align: center;
}

/* Rich mockup content */
.mock-pattern-banner {
  height: 32px;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 2px,
      rgba(0,0,0,0.03) 2px,
      rgba(0,0,0,0.03) 4px
    ),
    linear-gradient(135deg, var(--color-lime) 0%, var(--color-lime-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px;
  border-radius: 4px;
}

.mock-pattern-banner span {
  font-size: 5px;
  font-weight: 800;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.mock-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  padding: 4px;
}

.mock-grid-item {
  background: #1a1a1a;
  border-radius: 4px;
  padding: 6px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mock-grid-icon {
  width: 14px;
  height: 14px;
  margin: 0 auto 3px;
  stroke: var(--color-lime);
}

.mock-grid-label {
  font-size: 5px;
  color: #ccc;
  text-transform: uppercase;
}

.mock-balance {
  background: linear-gradient(135deg, var(--color-lime) 0%, var(--color-lime-dark) 100%);
  margin: 6px;
  border-radius: 8px;
  padding: 12px 10px;
  color: #000;
}

.mock-balance-label {
  font-size: 6px;
  opacity: 0.7;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.mock-balance-amount {
  font-size: 16px;
  font-weight: 800;
}

.mock-list {
  padding: 0 4px;
}

.mock-list-item {
  display: flex;
  align-items: center;
  gap: 3px;
  background: #1a1a1a;
  border-radius: 3px;
  padding: 3px 4px;
  margin-bottom: 2px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.mock-list-icon {
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, #2a2a2a 0%, #222 100%);
  border-radius: 2px;
  flex-shrink: 0;
}

.mock-list-info {
  flex: 1;
  min-width: 0;
}

.mock-list-title {
  font-size: 7px;
  font-weight: 600;
  color: #fff;
}

.mock-list-sub {
  font-size: 5px;
  color: #666;
}

.mock-list-value {
  font-size: 7px;
  font-weight: 700;
  color: var(--color-lime);
}

.mock-nav {
  display: flex;
  justify-content: space-around;
  padding: 4px;
  background: #0a0a0a;
  border-top: 1px solid #222;
  margin-top: auto;
}

.mock-nav-item {
  text-align: center;
}

.mock-nav-icon {
  width: 8px;
  height: 8px;
  margin: 0 auto 1px;
  stroke: #555;
}

.mock-nav-icon.active {
  stroke: var(--color-lime);
}

.mock-nav-label {
  font-size: 5px;
  color: #555;
}

/* New mockup elements */
.mock-balance-change {
  font-size: 7px;
  color: var(--color-lime);
  margin-top: 2px;
}

.mock-mini-chart {
  padding: 4px 8px;
  margin: 4px 0;
}

.mock-mini-chart svg {
  width: 100%;
  height: 20px;
}

.mock-activity {
  padding: 6px 8px;
}

.mock-activity-title {
  font-size: 8px;
  font-weight: 600;
  color: #888;
  margin-bottom: 6px;
}

.mock-activity-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 6px;
  color: #aaa;
  padding: 4px 0;
  border-bottom: 1px solid #222;
}

.mock-activity-dot {
  width: 4px;
  height: 4px;
  background: var(--color-lime);
  border-radius: 50%;
}

.mock-activity-val {
  margin-left: auto;
  font-weight: 600;
  font-size: 6px;
  color: var(--color-lime);
}

.mock-search {
  display: flex;
  align-items: center;
  gap: 3px;
  background: #1a1a1a;
  padding: 4px 6px;
  margin: 4px 6px;
  border-radius: 4px;
  font-size: 3.5px;
  color: #666;
}

.mock-search-icon {
  font-size: 5px;
}

.mock-filter-row {
  display: flex;
  gap: 2px;
  padding: 0 6px;
  margin-bottom: 4px;
}

.mock-filter {
  font-size: 5px;
  padding: 3px 6px;
  background: #1a1a1a;
  border-radius: 3px;
  color: #666;
}

.mock-filter.active {
  background: var(--color-lime);
  color: #000;
}

.mock-property-location {
  font-size: 5px;
  color: #888;
  display: block;
  margin-bottom: 3px;
}

.mock-details {
  padding: 6px 8px;
}

.mock-detail-row {
  display: flex;
  justify-content: space-between;
  font-size: 6px;
  padding: 4px 0;
  border-bottom: 1px solid #222;
  color: #aaa;
}

.mock-detail-row span:last-child {
  color: #fff;
  font-weight: 600;
}

.mock-action-btn-secondary {
  background: transparent;
  border: 1px solid var(--color-lime);
  color: var(--color-lime);
  font-size: 4px;
  font-weight: 600;
  padding: 4px 8px;
  text-align: center;
  border-radius: 3px;
  margin: 3px 8px 0;
}

@media (max-width: 768px) {
  .bento-mockups {
    grid-column: span 2;
    min-height: auto;
    overflow: hidden;
    flex-direction: column;
  }

  .mockups-text {
    flex: 0 0 auto;
    padding: 20px 20px 0;
    text-align: center;
    order: 0;
  }

  .mockups-text h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .mockups-text p {
    font-size: 12px;
  }

  .mockups-container {
    display: flex;
    gap: 16px;
    padding: 20px 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
    height: 100%;
  }

  .mockups-container::-webkit-scrollbar {
    display: none;
  }

  .phone-mockup {
    width: 130px;
    height: 270px;
    flex-shrink: 0;
    scroll-snap-align: center;
  }

  .bento-mockups {
    min-height: 380px;
  }

  .bento-brand-statement {
    grid-column: span 2;
    min-height: 200px;
    padding: 30px 24px;
    flex-direction: row;
    text-align: left;
  }

  .bento-brand-statement #brand-message-canvas {
    right: -10% !important;
    width: 60% !important;
    height: 160% !important;
    bottom: -30% !important;
  }

  .brand-statement-text {
    max-width: 55%;
  }

  .brand-statement-text h3 {
    font-size: 1.6rem;
  }

  .brand-statement-text p {
    font-size: 0.9rem;
    max-width: 100%;
  }
}

/* Business Card */
.bento-business-card {
  grid-column: span 2;
  min-height: 260px;
}

.business-card-demo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  perspective: 1200px;
}

.business-card-isometric {
  position: relative;
  width: 340px;
  height: 200px;
  transform: rotateX(3deg) rotateY(-3deg);
  transform-style: preserve-3d;
  transition: transform 0.4s ease;
}

.business-card-isometric:hover {
  transform: rotateX(5deg) rotateY(-5deg) translateY(-5px);
}

.card-face {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.4);
  border: 2px solid var(--color-lime);
}

.card-gradient-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 10% 90%, rgba(var(--color-lime-rgb), 0.35) 0%, transparent 50%),
    radial-gradient(ellipse 80% 60% at 90% 20%, rgba(var(--color-lime-rgb), 0.2) 0%, transparent 40%),
    linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
}

.card-gradient-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-lime);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='32' viewBox='0 0 88 32'%3E%3Cg stroke='black' stroke-width='1.2' fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 16 L11 0 L20 16'/%3E%3Cpath d='M5.5 10 L16.5 10'/%3E%3Cpath d='M24 0 L24 16'/%3E%3Cpath d='M42 0 L42 16'/%3E%3Cpath d='M24 8 L42 8'/%3E%3Cpath d='M46 16 L55 0 L64 16'/%3E%3Cpath d='M49.5 10 L60.5 10'/%3E%3Cpath d='M68 0 L68 16'/%3E%3Cpath d='M86 0 L86 16'/%3E%3Cpath d='M68 8 L86 8'/%3E%3Cpath d='M2 16 L2 32'/%3E%3Cpath d='M20 16 L20 32'/%3E%3Cpath d='M2 24 L20 24'/%3E%3Cpath d='M24 32 L33 16 L42 32'/%3E%3Cpath d='M27.5 26 L38.5 26'/%3E%3Cpath d='M46 16 L46 32'/%3E%3Cpath d='M64 16 L64 32'/%3E%3Cpath d='M46 24 L64 24'/%3E%3Cpath d='M68 32 L77 16 L86 32'/%3E%3Cpath d='M71.5 26 L82.5 26'/%3E%3C/g%3E%3C/svg%3E");
  mask-size: 88px 32px;
  mask-repeat: repeat;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='32' viewBox='0 0 88 32'%3E%3Cg stroke='black' stroke-width='1.2' fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 16 L11 0 L20 16'/%3E%3Cpath d='M5.5 10 L16.5 10'/%3E%3Cpath d='M24 0 L24 16'/%3E%3Cpath d='M42 0 L42 16'/%3E%3Cpath d='M24 8 L42 8'/%3E%3Cpath d='M46 16 L55 0 L64 16'/%3E%3Cpath d='M49.5 10 L60.5 10'/%3E%3Cpath d='M68 0 L68 16'/%3E%3Cpath d='M86 0 L86 16'/%3E%3Cpath d='M68 8 L86 8'/%3E%3Cpath d='M2 16 L2 32'/%3E%3Cpath d='M20 16 L20 32'/%3E%3Cpath d='M2 24 L20 24'/%3E%3Cpath d='M24 32 L33 16 L42 32'/%3E%3Cpath d='M27.5 26 L38.5 26'/%3E%3Cpath d='M46 16 L46 32'/%3E%3Cpath d='M64 16 L64 32'/%3E%3Cpath d='M46 24 L64 24'/%3E%3Cpath d='M68 32 L77 16 L86 32'/%3E%3Cpath d='M71.5 26 L82.5 26'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask-size: 88px 32px;
  -webkit-mask-repeat: repeat;
  opacity: 0.12;
  z-index: 1;
  pointer-events: none;
}

.card-glow {
  position: absolute;
  width: 100px;
  height: 100px;
  bottom: -20px;
  left: -20px;
  background: var(--color-lime);
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.35;
}

.card-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 24px;
  color: #fff;
}

.card-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-logo svg {
  width: 24px;
  height: 24px;
  color: var(--color-lime);
}

.card-logo span {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.card-info {
  text-align: right;
}

.card-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.card-role {
  font-size: 11px;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.card-contact {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 6px;
}

.card-contact span {
  font-size: 10px;
  opacity: 0.7;
  letter-spacing: 0.3px;
}

.card-contact span:last-child {
  color: var(--color-lime);
  opacity: 1;
  font-weight: 500;
}

/* Card edges - hidden for cleaner flat look */
.card-edge {
  display: none;
}

/* Patterns */
.pattern-demo {
  height: 100px;
  border-radius: 12px;
  overflow: hidden;
}

/* Fill entire bento for iso grid */
.bento-iso .pattern-demo,
.bento-pattern-v .pattern-demo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.bento-iso,
.bento-pattern-v {
  position: relative;
  overflow: hidden;
}

.bento-pattern-v {
  grid-row: span 2;
}

.bento-iso {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 200px;
  overflow: visible;
}

/* Isometric buildings container */
.iso-buildings {
  position: absolute;
  bottom: 20px;
  right: 40px;
  display: flex;
  align-items: flex-end;
  gap: 15px;
  z-index: 1;
}

.iso-building {
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.5));
}

.bento-iso .bento-label,
.bento-pattern-v .bento-label {
  position: relative;
  z-index: 2;
  background: rgba(0,0,0,0.5);
  padding: 8px 12px;
  border-radius: 8px;
  display: inline-block;
}

/* AH Pattern Inverted - фирменный фон, тёмные линии */
.pattern-ah-inverted {
  background-color: var(--color-lime) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='32' viewBox='0 0 88 32'%3E%3Cg stroke='%23141414' stroke-width='1.2' fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 16 L11 0 L20 16'/%3E%3Cpath d='M5.5 10 L16.5 10'/%3E%3Cpath d='M24 0 L24 16'/%3E%3Cpath d='M42 0 L42 16'/%3E%3Cpath d='M24 8 L42 8'/%3E%3Cpath d='M46 16 L55 0 L64 16'/%3E%3Cpath d='M49.5 10 L60.5 10'/%3E%3Cpath d='M68 0 L68 16'/%3E%3Cpath d='M86 0 L86 16'/%3E%3Cpath d='M68 8 L86 8'/%3E%3Cpath d='M2 16 L2 32'/%3E%3Cpath d='M20 16 L20 32'/%3E%3Cpath d='M2 24 L20 24'/%3E%3Cpath d='M24 32 L33 16 L42 32'/%3E%3Cpath d='M27.5 26 L38.5 26'/%3E%3Cpath d='M46 16 L46 32'/%3E%3Cpath d='M64 16 L64 32'/%3E%3Cpath d='M46 24 L64 24'/%3E%3Cpath d='M68 32 L77 16 L86 32'/%3E%3Cpath d='M71.5 26 L82.5 26'/%3E%3C/g%3E%3C/svg%3E") !important;
  background-size: 88px 32px !important;
  background-repeat: repeat !important;
  width: 100%;
  height: 100%;
}

/* AH Brand Pattern - кирпичная кладка БЕЗ промежутков между строками */
.pattern-ah {
  background-color: var(--color-black);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='32' viewBox='0 0 88 32'%3E%3Cg stroke='%23C9B99A' stroke-width='1.2' fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3C!-- Первая строка: AH --%3E%3Cpath d='M2 16 L11 0 L20 16'/%3E%3Cpath d='M5.5 10 L16.5 10'/%3E%3Cpath d='M24 0 L24 16'/%3E%3Cpath d='M42 0 L42 16'/%3E%3Cpath d='M24 8 L42 8'/%3E%3C!-- Первая строка: второй AH --%3E%3Cpath d='M46 16 L55 0 L64 16'/%3E%3Cpath d='M49.5 10 L60.5 10'/%3E%3Cpath d='M68 0 L68 16'/%3E%3Cpath d='M86 0 L86 16'/%3E%3Cpath d='M68 8 L86 8'/%3E%3C!-- Вторая строка со смещением: начинается с H --%3E%3Cpath d='M2 16 L2 32'/%3E%3Cpath d='M20 16 L20 32'/%3E%3Cpath d='M2 24 L20 24'/%3E%3C!-- Вторая строка: A --%3E%3Cpath d='M24 32 L33 16 L42 32'/%3E%3Cpath d='M27.5 26 L38.5 26'/%3E%3C!-- Вторая строка: H --%3E%3Cpath d='M46 16 L46 32'/%3E%3Cpath d='M64 16 L64 32'/%3E%3Cpath d='M46 24 L64 24'/%3E%3C!-- Вторая строка: A --%3E%3Cpath d='M68 32 L77 16 L86 32'/%3E%3Cpath d='M71.5 26 L82.5 26'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 88px 32px;
  background-repeat: repeat;
}

/* Override for different color schemes */
[data-color-scheme="scheme1"] .pattern-ah {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='32' viewBox='0 0 88 32'%3E%3Cg stroke='%23D4FF00' stroke-width='1.2' fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 16 L11 0 L20 16'/%3E%3Cpath d='M5.5 10 L16.5 10'/%3E%3Cpath d='M24 0 L24 16'/%3E%3Cpath d='M42 0 L42 16'/%3E%3Cpath d='M24 8 L42 8'/%3E%3Cpath d='M46 16 L55 0 L64 16'/%3E%3Cpath d='M49.5 10 L60.5 10'/%3E%3Cpath d='M68 0 L68 16'/%3E%3Cpath d='M86 0 L86 16'/%3E%3Cpath d='M68 8 L86 8'/%3E%3Cpath d='M2 16 L2 32'/%3E%3Cpath d='M20 16 L20 32'/%3E%3Cpath d='M2 24 L20 24'/%3E%3Cpath d='M24 32 L33 16 L42 32'/%3E%3Cpath d='M27.5 26 L38.5 26'/%3E%3Cpath d='M46 16 L46 32'/%3E%3Cpath d='M64 16 L64 32'/%3E%3Cpath d='M46 24 L64 24'/%3E%3Cpath d='M68 32 L77 16 L86 32'/%3E%3Cpath d='M71.5 26 L82.5 26'/%3E%3C/g%3E%3C/svg%3E");
}

[data-color-scheme="scheme2"] .pattern-ah {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='32' viewBox='0 0 88 32'%3E%3Cg stroke='%235271FF' stroke-width='1.2' fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 16 L11 0 L20 16'/%3E%3Cpath d='M5.5 10 L16.5 10'/%3E%3Cpath d='M24 0 L24 16'/%3E%3Cpath d='M42 0 L42 16'/%3E%3Cpath d='M24 8 L42 8'/%3E%3Cpath d='M46 16 L55 0 L64 16'/%3E%3Cpath d='M49.5 10 L60.5 10'/%3E%3Cpath d='M68 0 L68 16'/%3E%3Cpath d='M86 0 L86 16'/%3E%3Cpath d='M68 8 L86 8'/%3E%3Cpath d='M2 16 L2 32'/%3E%3Cpath d='M20 16 L20 32'/%3E%3Cpath d='M2 24 L20 24'/%3E%3Cpath d='M24 32 L33 16 L42 32'/%3E%3Cpath d='M27.5 26 L38.5 26'/%3E%3Cpath d='M46 16 L46 32'/%3E%3Cpath d='M64 16 L64 32'/%3E%3Cpath d='M46 24 L64 24'/%3E%3Cpath d='M68 32 L77 16 L86 32'/%3E%3Cpath d='M71.5 26 L82.5 26'/%3E%3C/g%3E%3C/svg%3E");
}

[data-color-scheme="scheme3"] .pattern-ah {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='32' viewBox='0 0 88 32'%3E%3Cg stroke='%23FF8833' stroke-width='1.2' fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 16 L11 0 L20 16'/%3E%3Cpath d='M5.5 10 L16.5 10'/%3E%3Cpath d='M24 0 L24 16'/%3E%3Cpath d='M42 0 L42 16'/%3E%3Cpath d='M24 8 L42 8'/%3E%3Cpath d='M46 16 L55 0 L64 16'/%3E%3Cpath d='M49.5 10 L60.5 10'/%3E%3Cpath d='M68 0 L68 16'/%3E%3Cpath d='M86 0 L86 16'/%3E%3Cpath d='M68 8 L86 8'/%3E%3Cpath d='M2 16 L2 32'/%3E%3Cpath d='M20 16 L20 32'/%3E%3Cpath d='M2 24 L20 24'/%3E%3Cpath d='M24 32 L33 16 L42 32'/%3E%3Cpath d='M27.5 26 L38.5 26'/%3E%3Cpath d='M46 16 L46 32'/%3E%3Cpath d='M64 16 L64 32'/%3E%3Cpath d='M46 24 L64 24'/%3E%3Cpath d='M68 32 L77 16 L86 32'/%3E%3Cpath d='M71.5 26 L82.5 26'/%3E%3C/g%3E%3C/svg%3E");
}

[data-color-scheme="scheme4"] .pattern-ah {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='32' viewBox='0 0 88 32'%3E%3Cg stroke='%237894FF' stroke-width='1.2' fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 16 L11 0 L20 16'/%3E%3Cpath d='M5.5 10 L16.5 10'/%3E%3Cpath d='M24 0 L24 16'/%3E%3Cpath d='M42 0 L42 16'/%3E%3Cpath d='M24 8 L42 8'/%3E%3Cpath d='M46 16 L55 0 L64 16'/%3E%3Cpath d='M49.5 10 L60.5 10'/%3E%3Cpath d='M68 0 L68 16'/%3E%3Cpath d='M86 0 L86 16'/%3E%3Cpath d='M68 8 L86 8'/%3E%3Cpath d='M2 16 L2 32'/%3E%3Cpath d='M20 16 L20 32'/%3E%3Cpath d='M2 24 L20 24'/%3E%3Cpath d='M24 32 L33 16 L42 32'/%3E%3Cpath d='M27.5 26 L38.5 26'/%3E%3Cpath d='M46 16 L46 32'/%3E%3Cpath d='M64 16 L64 32'/%3E%3Cpath d='M46 24 L64 24'/%3E%3Cpath d='M68 32 L77 16 L86 32'/%3E%3Cpath d='M71.5 26 L82.5 26'/%3E%3C/g%3E%3C/svg%3E");
}

[data-color-scheme="scheme5"] .pattern-ah {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='32' viewBox='0 0 88 32'%3E%3Cg stroke='%23FFFFFF' stroke-width='1.2' fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 16 L11 0 L20 16'/%3E%3Cpath d='M5.5 10 L16.5 10'/%3E%3Cpath d='M24 0 L24 16'/%3E%3Cpath d='M42 0 L42 16'/%3E%3Cpath d='M24 8 L42 8'/%3E%3Cpath d='M46 16 L55 0 L64 16'/%3E%3Cpath d='M49.5 10 L60.5 10'/%3E%3Cpath d='M68 0 L68 16'/%3E%3Cpath d='M86 0 L86 16'/%3E%3Cpath d='M68 8 L86 8'/%3E%3Cpath d='M2 16 L2 32'/%3E%3Cpath d='M20 16 L20 32'/%3E%3Cpath d='M2 24 L20 24'/%3E%3Cpath d='M24 32 L33 16 L42 32'/%3E%3Cpath d='M27.5 26 L38.5 26'/%3E%3Cpath d='M46 16 L46 32'/%3E%3Cpath d='M64 16 L64 32'/%3E%3Cpath d='M46 24 L64 24'/%3E%3Cpath d='M68 32 L77 16 L86 32'/%3E%3Cpath d='M71.5 26 L82.5 26'/%3E%3C/g%3E%3C/svg%3E");
}

.bento-pattern-ah {
  position: relative;
  overflow: hidden;
  grid-column: span 2;
  grid-row: span 2;
  min-height: 200px;
}

.bento-pattern-ah .pattern-demo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.bento-pattern-ah .bento-label {
  position: relative;
  z-index: 2;
  background: rgba(0,0,0,0.5);
  padding: 8px 12px;
  border-radius: 8px;
  display: inline-block;
}

.pattern-isometric-grid {
  background:
    linear-gradient(30deg, var(--color-lime) 12%, transparent 12.5%, transparent 87%, var(--color-lime) 87.5%, var(--color-lime)),
    linear-gradient(150deg, var(--color-lime) 12%, transparent 12.5%, transparent 87%, var(--color-lime) 87.5%, var(--color-lime)),
    linear-gradient(30deg, var(--color-lime) 12%, transparent 12.5%, transparent 87%, var(--color-lime) 87.5%, var(--color-lime)),
    linear-gradient(150deg, var(--color-lime) 12%, transparent 12.5%, transparent 87%, var(--color-lime) 87.5%, var(--color-lime));
  background-size: 40px 70px;
  background-position: 0 0, 0 0, 20px 35px, 20px 35px;
  background-color: var(--color-black);
}

.pattern-isometric {
  background: 
    linear-gradient(30deg, #E5E5E5 12%, transparent 12.5%, transparent 87%, #E5E5E5 87.5%, #E5E5E5),
    linear-gradient(150deg, #E5E5E5 12%, transparent 12.5%, transparent 87%, #E5E5E5 87.5%, #E5E5E5),
    linear-gradient(30deg, #E5E5E5 12%, transparent 12.5%, transparent 87%, #E5E5E5 87.5%, #E5E5E5),
    linear-gradient(150deg, #E5E5E5 12%, transparent 12.5%, transparent 87%, #E5E5E5 87.5%, #E5E5E5);
  background-size: 40px 70px;
  background-position: 0 0, 0 0, 20px 35px, 20px 35px;
  background-color: #F8F9FA;
}

/* Typography */
.bento-typo {
  display: flex;
  flex-direction: column;
  grid-column: span 1;
}

.typo-demo {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.typo-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 900;
  color: #1A1A1A;
}

.typo-body {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-secondary);
}

.typo-ui-examples {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.btn-small {
  padding: 8px 16px;
  font-size: 12px;
}

.typo-link {
  font-size: 14px;
  color: var(--color-lime);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}

.typo-link:hover {
  opacity: 0.8;
}

/* Brand Tagline */
.bento-tagline {
  grid-column: span 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  background: linear-gradient(135deg, rgba(var(--color-lime-rgb), 0.1) 0%, transparent 100%);
}

.tagline-content {
  text-align: left;
}

.tagline-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-lime);
  line-height: 1.2;
  margin-bottom: 12px;
}

.tagline-sub {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Example Property Card */
.bento-example {
  grid-column: span 1;
  grid-row: span 2;
  overflow: visible;
  padding-right: 12px;
  padding-bottom: 12px;
  position: relative;
  z-index: 10;
}

/* Flat card layout - no nested card */
.bento-example-flat {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.bento-example-flat .photo-shadow-wrapper-small {
  margin: 0 0 16px 0;
}

.bento-example-flat .example-visual {
  height: 140px;
  margin: 0;
}

.example-info-flat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.example-info-flat .example-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.example-info-flat .example-price {
  font-size: 28px;
  font-weight: 900;
}

.example-info-flat .example-yield {
  background: rgba(212, 255, 0, 0.15);
  color: var(--color-lime);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.example-info-flat .example-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-secondary);
}

.example-info-flat .example-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

.example-info-flat .example-link {
  font-weight: 600;
  color: var(--color-lime);
  text-decoration: none;
  margin-top: 8px;
}

.example-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 20px;
  background: var(--color-lime);
  color: var(--color-black);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.example-btn:hover {
  background: var(--color-beige);
  transform: translateY(-2px);
}

/* Flat article card layout */
.bento-article-flat {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.bento-article-flat .photo-shadow-wrapper-small {
  margin: 0 0 16px 0;
  flex: 1;
}

.bento-article-flat .article-visual {
  height: 100%;
  min-height: 180px;
  margin: 0;
}

.article-info-flat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.article-title-flat {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin: 0;
  line-height: 1.2;
}

.article-info-flat .article-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

.article-link-flat {
  font-weight: 600;
  color: var(--color-lime);
  text-decoration: none;
  margin-top: 8px;
}

/* Apply serif heading font to key headings */
.example-info-flat .example-price {
  font-family: var(--font-heading);
}

.example-info-flat .example-subtitle {
  font-family: var(--font-heading);
  font-weight: 700;
}

.example-property-card {
  background: var(--bg-secondary);
  border-radius: 16px;
  overflow: visible;
  box-shadow: var(--shadow-lg);
  height: 100%;
  display: flex;
  flex-direction: column;
  max-width: 280px;
  transition: transform 0.3s ease;
}

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

.example-visual {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin: 12px;
  overflow: hidden;
  position: relative;
}

.example-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.example-property-card:hover .example-visual img {
  transform: scale(1.05);
}

/* Comic-style shadow for branded photos */
.photo-comic-shadow {
  box-shadow: 8px 8px 0 var(--color-lime);
}

/* Shadow wrapper for smaller cards (brandbook, constructor) */
.photo-shadow-wrapper-small {
  filter: drop-shadow(4px 4px 0 var(--color-lime));
  margin: 12px;
  margin-bottom: 14px; /* Extra space for shadow */
}

.photo-shadow-wrapper-small .example-visual,
.photo-shadow-wrapper-small .article-visual {
  margin: 0;
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}

.photo-shadow-wrapper-small .example-visual.photo-mask-skew,
.photo-shadow-wrapper-small .article-visual.photo-mask-skew,
.photo-shadow-wrapper-small .article-photo.photo-mask-skew {
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}

/* Article photo in constructor preview */
.photo-shadow-wrapper-small .article-photo {
  overflow: hidden;
  border-radius: 12px;
}

.photo-shadow-wrapper-small .article-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.example-info {
  padding: 16px 20px 20px;
}

.example-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.example-price {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: #1A1A1A;
}

.example-yield {
  background: var(--color-lime);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-black);
}

.example-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.example-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 10px;
}

.example-link {
  font-size: 13px;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 16px;
}

.example-btn {
  width: 100%;
  padding: 14px;
  background: var(--color-lime);
  border: none;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-black);
  cursor: pointer;
}

/* Article Card */
.bento-article {
  grid-column: span 2;
  grid-row: span 2;
  overflow: visible;
}

.preview-article-card {
  background: #0a0a0a;
  border-radius: 24px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  padding: 20px;
}

/* Brand Element Cards */
.bento-element {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  position: relative;
}

.brand-element-display {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  width: 100%;
  padding: 20px;
}

.brand-element-svg {
  width: 100%;
  max-width: 120px;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
}

.article-card {
  background: var(--bg-secondary);
  border-radius: 16px;
  overflow: visible;
  box-shadow: var(--shadow-lg);
  height: 100%;
  display: flex;
  flex-direction: column;
  max-width: 280px;
  transition: transform 0.3s ease;
}

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

.article-visual {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin: 12px;
  overflow: hidden;
}

.article-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.article-card:hover .article-visual img {
  transform: scale(1.05);
}

#article-canvas {
  width: 240px;
  height: 220px;
}

.article-info {
  padding: 16px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #1A1A1A;
  line-height: 1.3;
  margin-bottom: 12px;
}

.article-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}

.article-link {
  font-size: 13px;
  font-weight: 600;
  color: #1A1A1A;
}

/* Footer */
footer {
  padding: 30px 0px 0px 0px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  position: relative;
}

.footer-3d-container {
  width: 100%;
  height: 500px;
  position: relative;
  overflow: hidden;
}

.footer-3d-container canvas {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

footer p {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* ========== RESPONSIVE DESIGN ========== */

/* Large tablets and small desktops */
@media (max-width: 1200px) {
  .hero-visual {
    width: 50%;
  }
  #city-canvas {
    width: 600px;
    height: 600px;
  }
  .constructor-title {
    font-size: 32px;
  }
}

/* Tablets */
@media (max-width: 1024px) {
  .container {
    padding: 0 40px;
  }
  
  /* Hero */
  .hero {
    flex-direction: column;
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 40px;
  }
  .hero-content {
    max-width: 100%;
    padding-right: 0;
    text-align: center;
  }
  .hero-desc {
    max-width: 100%;
  }
  .hero-visual {
    position: relative;
    width: 100%;
    height: 45vw;
    min-height: 280px;
    margin-top: 15px;
    top: auto;
    right: auto;
    bottom: auto;
    overflow: visible;
  }
  #city-canvas {
    position: absolute;
    width: 100% !important;
    height: 100% !important;
    min-width: 100%;
    min-height: 100%;
    max-width: none;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .hero h1 {
    font-size: 52px;
  }
  .stats-row {
    justify-content: center;
  }
  
  /* Grids */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  /* Steps Bento - Tablet */
  .steps-bento {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .step-card.step-hero {
    grid-row: span 1;
    grid-column: span 2;
  }
  .step-card.step-wide {
    grid-column: span 2;
    text-align: center;
  }
  .step-card.step-wide .step-icon-overflow {
    left: 50%;
    transform: translateX(-50%);
  }
  .step-card.step-large {
    grid-column: span 1;
  }
  .step-icon-overflow {
    width: 90px;
    height: 90px;
    top: -30px;
  }
  .step-card.step-hero .step-icon-overflow,
  .step-card.step-large .step-icon-overflow {
    width: 100px;
    height: 100px;
    top: -35px;
  }

  /* Benefits Bento - Tablet */
  .benefits-bento {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .benefit-card.benefit-large {
    grid-column: span 2;
    grid-row: span 1;
  }
  .benefit-card.benefit-stacked {
    grid-column: span 1;
  }
  .benefit-icon-overflow {
    width: 80px;
    height: 80px;
    top: -35px;
  }
  .benefit-card.benefit-large .benefit-icon-overflow {
    width: 100px;
    height: 100px;
    top: -40px;
  }

  .properties-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cta-content {
    text-align: center;
  }

  /* Constructor - side by side but smaller */
  .constructor-grid {
    gap: 30px;
  }
  .constructor-controls {
    padding: 30px;
  }
  .constructor-preview {
    min-height: 350px;
  }

  /* Bento */
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-colors,
  .bento-mockups,
  .bento-iconography,
  .bento-table,
  .bento-iso,
  .bento-email-banner,
  .bento-ad-creative {
    grid-column: span 2;
  }
  .bento-brand-statement {
    grid-column: span 4;
  }
  .bento-chart {
    grid-column: span 1;
  }
  
  .bento-ad-creative {
    grid-column: span 1;
  }
  .bento-example,
  .bento-article {
    grid-column: auto;
    grid-row: auto;
  }

  /* Sections padding */
  .features,
  .how-it-works,
  .why-tokenize,
  .properties,
  .brandbook,
  .cta-section {
    padding: 70px 0;
  }
  .section-title {
    font-size: 36px;
    margin-bottom: 40px;
  }
}

/* Mobile landscape & small tablets */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  
  /* Header - Sticky on mobile */
  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    flex-wrap: nowrap;
    gap: 10px;
    z-index: 999;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .logo {
    font-size: 14px;
    flex: 1;
  }
  .logo-icon {
    width: 24px;
    height: 24px;
  }
  
  /* Hide nav completely on mobile */
  nav {
    display: none !important;
  }

  /* Show mobile controls */
  .mobile-controls {
    display: flex !important;
    width: 32px;
    height: 32px;
    padding: 0;
  }

  /* Header adjustments for mobile controls */
  header {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  /* Hero - offset for fixed header */
  .hero {
    padding-top: 140px;
  }
  .hero h1 {
    font-size: 42px;
    letter-spacing: -2px;
  }
  .hero-desc {
    font-size: 14px;
  }
  .hero-visual {
    margin-top: 30px;
  }
  
  /* Stats */
  .stats-row {
    flex-direction: column;
    width: 100%;
    margin-top: 25px;
  }
  .stat-card {
    width: 100%;
    padding: 12px 16px;
  }
  .stat-card:nth-child(1) {
    border-radius: 12px 12px 0 0;
  }
  .stat-card:nth-child(1)::before {
    border-radius: 12px 12px 0 0;
  }
  .stat-card:nth-child(2) {
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--white-alpha-30);
    border-bottom: 1px solid var(--white-alpha-30);
  }
  .stat-card:nth-child(3) {
    border-radius: 0 0 12px 12px;
  }
  .stat-card:nth-child(3)::before {
    border-radius: 0 0 12px 12px;
  }
  .stat-value {
    font-size: 22px;
  }
  
  /* Constructor - ВАЖНО: на одном экране */
  .constructor {
    padding: 50px 0;
  }
  .constructor-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .constructor-controls {
    padding: 20px;
    order: 2;
  }
  .constructor-title {
    font-size: 28px;
    margin-bottom: 25px;
  }
  .constructor-preview {
    order: 1;
    min-height: 250px;
    height: 250px;
  }
  .preview-property-card,
  .preview-article-card {
    padding: 20px;
  }
  .preview-banner-card {
    flex-direction: column;
    padding: 25px;
    gap: 20px;
  }
  .preview-banner-visual {
    width: 200px;
    height: 200px;
  }
  .preview-banner-title {
    font-size: 28px;
  }
  .control-group {
    margin-bottom: 20px;
  }
  .shape-btn {
    padding: 10px 14px;
    font-size: 12px;
  }
  .card-type-btn {
    padding: 10px 12px;
    font-size: 12px;
  }
  .color-btn {
    width: 40px;
    height: 40px;
  }

  /* Bento - Vertical stack on mobile */
  .bento-scroll-wrapper {
    width: 100%;
    overflow: visible;
  }
  
  .bento-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
  
  /* ALL bento items - full width */
  .bento-item {
    width: 100% !important;
    max-width: 100% !important;
    grid-column: 1 !important;
    grid-row: auto !important;
  }
  
  /* Ad Creative - Stories on mobile */
  .bento-ad-creative {
    aspect-ratio: auto;
    min-height: 350px;
    max-height: 450px;
  }
  
  /* Email Banner on mobile */
  .bento-email-banner .email-hero-content {
    max-width: 100%;
  }
  
  .bento-email-banner #email-3d-canvas {
    width: 100%;
    opacity: 0.3;
  }
  
  /* Table responsive */
  .brand-table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .brand-table {
    min-width: 100%;
    font-size: 12px;
  }
  
  .brand-table th,
  .brand-table td {
    padding: 10px 8px;
  }
  .iso-buildings {
    right: 15px;
    bottom: 10px;
    gap: 5px;
  }
  .iso-building {
    transform: scale(0.8);
  }
  .color-swatches {
    flex-direction: column;
    gap: 12px;
  }
  .swatch {
    height: 80px;
  }
  .example-property-card,
  .article-card {
    max-width: 100%;
  }
  
  /* Steps Bento - Small Tablet */
  .steps-bento {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
  .step-card.step-hero {
    grid-column: span 2;
    grid-row: span 1;
  }
  .step-card.step-wide {
    grid-column: span 2;
    text-align: center;
  }
  .step-card.step-wide .step-icon-overflow {
    left: 50%;
    transform: translateX(-50%);
  }
  .step-card:last-child {
    grid-column: span 2;
  }
  .step-card {
    padding: 32px 24px 28px;
  }

  /* Benefits & Properties */
  .benefits-bento,
  .properties-grid {
    grid-template-columns: 1fr;
  }
  .benefit-card.benefit-large,
  .benefit-card.benefit-stacked {
    grid-column: span 1;
    grid-row: span 1;
  }
  .benefit-card {
    padding: 70px 30px 30px;
  }
  .benefit-icon-overflow {
    width: 70px;
    height: 70px;
    top: -30px;
  }
  .benefit-card.benefit-large .benefit-icon-overflow {
    width: 90px;
    height: 90px;
    top: -38px;
  }

  /* Quote Section */
  .quote-section {
    padding: 80px 0;
  }
  .quote-3d-element {
    display: none;
  }
  .section-decor {
    display: none;
  }
  .brand-quote p {
    font-size: 24px;
  }
  .brand-quote::before {
    font-size: 120px;
    top: -40px;
  }
  .quote-author {
    font-size: 20px;
  }
  .quote-role {
    font-size: 14px;
  }

  /* Partners */
  .partners-grid {
    gap: 30px;
  }
  .partner-logo {
    font-size: 14px;
  }
  
  /* CTA */
  .cta-content h2 {
    font-size: 32px;
  }
  .contact-form {
    padding: 25px;
  }
  
  /* Footer */
  footer {
    padding: 30px 20px;
  }
  
  /* Section titles */
  .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
}

/* Mobile portrait */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  header {
    padding: 12px 16px;
  }
  nav {
    gap: 8px;
    padding: 6px 12px;
    right: 16px;
    top: 12px;
  }
  nav a {
    font-size: 11px;
  }
  
  .hero {
    padding-top: 120px;
    padding-bottom: 40px;
  }
  .hero h1 {
    font-size: 32px;
    letter-spacing: -1px;
  }
  .hero-desc {
    font-size: 13px;
    margin-bottom: 20px;
  }
  .btn {
    padding: 14px 24px;
    font-size: 13px;
  }
  
  .hero-visual {
    margin-top: 20px;
  }
  
  .stat-value {
    font-size: 22px;
  }
  .stat-label {
    font-size: 9px;
  }
  
  /* Constructor compact */
  .constructor-preview {
    height: auto;
    min-height: 220px;
  }
  .preview-property-card,
  .preview-article-card {
    padding: 15px;
  }
  .preview-card-visual {
    min-height: 200px;
  }
  .preview-article-visual {
    min-height: 200px;
  }
  .preview-banner-card {
    padding: 20px;
    gap: 15px;
  }
  .preview-banner-title {
    font-size: 20px;
  }
  .preview-banner-desc {
    font-size: 14px;
  }
  .preview-banner-visual {
    width: 150px;
    height: 150px;
  }
  .constructor-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .control-label {
    font-size: 12px;
    margin-bottom: 8px;
  }
  .detail-hints .hint {
    font-size: 10px;
    padding: 3px 6px;
  }
  .shape-buttons {
    gap: 6px;
  }
  .shape-btn {
    padding: 8px 12px;
    font-size: 11px;
  }
  .card-type-btn {
    padding: 8px 10px;
    font-size: 11px;
  }
  .color-btn {
    width: 36px;
    height: 36px;
  }

  /* Steps Bento - Mobile */
  .steps-bento {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .step-card {
    padding: 28px 20px 24px;
    text-align: center;
  }
  .step-card.step-hero,
  .step-card.step-wide,
  .step-card.step-large {
    padding: 32px 24px 28px;
    grid-column: auto;
    grid-row: auto;
    text-align: center;
  }
  .step-card:last-child {
    grid-column: auto;
    width: 100%;
    max-width: 100%;
  }
  .step-card h4 {
    font-size: 28px;
  }
  .step-card .step-num {
    font-size: 28px;
  }

  /* Features - Mobile */
  .feature-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 70px 24px 30px;
  }
  .feature-icon-overflow {
    width: 80px;
    height: 80px;
    left: 50%;
    top: -30px;
    transform: translateX(-50%);
  }
  .feature-card:hover .feature-icon-overflow {
    transform: translateX(-50%) scale(1.1) rotate(-5deg);
  }
  .feature-card h3 {
    font-size: 18px;
  }

  /* Benefits Bento - Mobile */
  .benefits-bento {
    gap: 35px;
  }
  .benefit-card {
    padding: 55px 20px 24px;
  }
  .benefit-icon-overflow {
    width: 60px;
    height: 60px;
    top: -25px;
  }
  .benefit-card.benefit-large .benefit-icon-overflow {
    width: 75px;
    height: 75px;
    top: -30px;
  }
  .benefit-card h4 {
    font-size: 20px;
  }
  .benefit-card.benefit-large h4 {
    font-size: 22px;
  }
  .benefit-card p {
    font-size: 14px;
  }
  
  /* Sections */
  .features,
  .how-it-works,
  .why-tokenize,
  .properties,
  .brandbook,
  .cta-section {
    padding: 50px 0;
  }
  
  .section-title {
    font-size: 24px;
  }

  /* Mockups - Larger on small screens */
  .bento-mockups {
    min-height: 450px;
  }

  .mockups-text {
    padding: 16px;
  }

  .mockups-text h3 {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .mockups-text p {
    font-size: 14px;
  }

  .mockups-container {
    padding: 16px;
    gap: 12px;
  }

  .phone-mockup {
    width: 150px;
    height: 310px;
  }

  .mock-header .mock-logo {
    font-size: 9px;
  }

  .mock-balance-amount {
    font-size: 16px;
  }

  .mock-balance-label {
    font-size: 5px;
  }

  /* Bento items larger padding */
  .bento-item {
    padding: 20px;
  }

  .bento-label {
    font-size: 10px;
  }

  /* Swatches bigger */
  .swatch {
    height: 100px;
    padding: 16px;
  }

  .swatch-name {
    font-size: 16px;
  }

  .swatch-code {
    font-size: 12px;
  }

  /* Typography bento */
  .typo-title {
    font-size: 20px;
  }

  .typo-body {
    font-size: 14px;
  }

  /* Table */
  .brand-table th,
  .brand-table td {
    font-size: 11px;
    padding: 12px 8px;
  }
  
  /* Bento */
  .bento-item {
    padding: 16px;
  }
  .typo-title {
    font-size: 22px;
  }
  .example-visual {
    height: 140px;
    margin-top: 40px;
  }
  #example-canvas {
    width: 150px;
    height: 180px;
  }
  .article-visual {
    height: 180px;
  }
  #article-canvas {
    width: 180px;
    height: 160px;
  }
  
  /* CTA */
  .cta-content h2 {
    font-size: 26px;
  }
  .cta-content p {
    font-size: 14px;
  }
  .contact-form {
    padding: 20px;
  }
  .form-group input,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 13px;
  }
}

/* ========== THEME TOGGLE BUTTON ========== */
.theme-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--white-alpha-40);
  backdrop-filter: blur(10px);
    border: 1px solid var(--white-alpha-60);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
}

.theme-toggle:hover {
  background: var(--white-alpha-60);
  transform: rotate(180deg);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  position: absolute;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.sun-icon {
  opacity: 1;
  transform: scale(1);
}

.moon-icon {
  opacity: 0;
  transform: scale(0.5);
}

/* ========== FONT TOGGLE BUTTON ========== */
.font-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--white-alpha-40);
  backdrop-filter: blur(10px);
  border: 1px solid var(--white-alpha-60);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin-left: 10px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.font-toggle:hover {
  background: var(--white-alpha-60);
  transform: scale(1.05);
}

.font-toggle .font-icon {
  line-height: 1;
}

/* ========== COLOR SCHEME TOGGLE BUTTON ========== */
.color-scheme-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--white-alpha-40);
  backdrop-filter: blur(10px);
  border: 1px solid var(--white-alpha-60);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin-left: 10px;
  color: var(--color-lime);
}

.color-scheme-toggle:hover {
  background: var(--white-alpha-60);
  transform: scale(1.1);
}

.color-scheme-toggle svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

/* ========== DARK THEME ========== */
[data-theme="dark"] {
  /* Background colors */
  --bg-primary: #1A1A1A;
  --bg-secondary: #242424;
  --bg-tertiary: #2A2A2A;
  --bg-card: #2A2A2A;
  --bg-input: #333333;

  /* Text colors */
  --text-primary: #F8F9FA;
  --text-secondary: #B8B8B8;
  --text-muted: #888888;

  /* Border colors */
  --border-primary: #3A3A3A;
  --border-secondary: #4A4A4A;

  /* UI colors (keep brand colors) */
  --lime: var(--color-lime);
  --beige: var(--color-beige);
  --black: var(--color-black);
}

[data-theme="dark"] .theme-toggle {
  background: rgba(26, 26, 26, 0.6);
  border-color: rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .theme-toggle:hover {
  background: rgba(26, 26, 26, 0.8);
}

[data-theme="dark"] .font-toggle {
  background: rgba(26, 26, 26, 0.6);
  border-color: rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .font-toggle:hover {
  background: rgba(26, 26, 26, 0.8);
}

[data-theme="dark"] .color-scheme-toggle {
  background: rgba(26, 26, 26, 0.6);
  border-color: rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .color-scheme-toggle:hover {
  background: rgba(26, 26, 26, 0.8);
}

[data-theme="dark"] .sun-icon {
  opacity: 0;
  transform: scale(0.5);
}

[data-theme="dark"] .moon-icon {
  opacity: 1;
  transform: scale(1);
}

[data-theme="dark"] body {
  background: var(--bg-primary);
  color: var(--text-primary);
}

[data-theme="dark"] .hero {
  background-color: #000000;
}

[data-theme="dark"] .hero-desc {
  color: var(--text-secondary);
}

[data-theme="dark"] header {
  background: transparent;
}

[data-theme="dark"] nav {
  background: rgba(20, 20, 20, 0.7);
  border-color: rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] nav a {
  color: rgba(255, 255, 255, 0.8);
}

[data-theme="dark"] nav a:hover {
  color: #FFFFFF;
}

[data-theme="dark"] .stats-row {
  border-color: rgba(255, 255, 255, 0.1);
  background: #1a1a1a;
}

[data-theme="dark"] .stat-card,
[data-theme="dark"] .stat-card:nth-child(1),
[data-theme="dark"] .stat-card:nth-child(2),
[data-theme="dark"] .stat-card:nth-child(3) {
  background: #1a1a1a;
}

[data-theme="dark"] .stat-card:nth-child(2) {
  border-left-color: rgba(255, 255, 255, 0.1);
  border-right-color: rgba(255, 255, 255, 0.1);
}

/* Features Section */
[data-theme="dark"] .features {
  background: var(--bg-secondary);
}

[data-theme="dark"] .feature-card p {
  color: var(--text-secondary);
}

/* How It Works */
[data-theme="dark"] .how-it-works {
  background: var(--bg-primary);
}

[data-theme="dark"] .step-content p {
  color: var(--text-secondary);
}

/* Why Tokenize */
[data-theme="dark"] .why-tokenize {
  background: var(--bg-secondary);
}

[data-theme="dark"] .benefit-card p {
  color: var(--text-secondary);
}

/* Properties */
[data-theme="dark"] .properties {
  background: var(--bg-primary);
}

[data-theme="dark"] .property-card {
  background: #0a0a0a;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .property-desc {
  color: var(--text-secondary);
}

/* Partners */
[data-theme="dark"] .partners {
  background: var(--bg-secondary);
}

[data-theme="dark"] .partner-logo {
  color: var(--text-muted);
}

/* CTA Section */
[data-theme="dark"] .cta-section {
  background: var(--bg-primary);
}

[data-theme="dark"] .cta-content p {
  color: var(--text-secondary);
}

[data-theme="dark"] .contact-form {
  background: #1a1a1a;
  box-shadow: 10px 10px 0 var(--color-lime);
}

[data-theme="dark"] .form-group label {
  color: var(--text-secondary);
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea {
  background: var(--bg-input);
  border-color: var(--border-primary);
  color: var(--text-primary);
}

[data-theme="dark"] .form-group input::placeholder,
[data-theme="dark"] .form-group textarea::placeholder {
  color: var(--text-muted);
}

[data-theme="dark"] .detail-slider {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Brandbook Bento */
[data-theme="dark"] .brandbook {
  background: var(--bg-primary);
}

[data-theme="dark"] .bento-item {
  background: #0a0a0a;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

[data-theme="dark"] .bento-pattern-h.bento-item {
  background: transparent !important;
}

[data-theme="dark"] .bento-label {
  color: var(--text-muted);
}

[data-theme="dark"] .brand-table th {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

[data-theme="dark"] .brand-table td {
  border-bottom-color: var(--border-color);
  color: var(--text-primary);
}

[data-theme="dark"] .brand-table tbody tr:hover {
  background: rgba(var(--color-lime-rgb), 0.1);
}

[data-theme="dark"] .typo-body {
  color: var(--text-secondary);
}

[data-theme="dark"] .example-property-card,
[data-theme="dark"] .article-card {
  background: var(--bg-tertiary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

[data-theme="dark"] .example-subtitle,
[data-theme="dark"] .example-desc,
[data-theme="dark"] .article-desc {
  color: var(--text-secondary);
}

[data-theme="dark"] .example-link,
[data-theme="dark"] .article-link {
  color: var(--text-primary);
}

[data-theme="dark"] .typo-title,
[data-theme="dark"] .example-price,
[data-theme="dark"] .article-title {
  color: var(--text-primary);
}

/* Buttons on lime background should always have dark text */
[data-theme="dark"] .example-btn,
[data-theme="dark"] .preview-card-btn {
  color: var(--color-black);
}

[data-theme="dark"] .property-link {
  color: var(--text-primary);
}

[data-theme="dark"] .pattern-isometric {
  background-color: var(--bg-secondary);
  background-image:
    linear-gradient(30deg, #3A3A3A 12%, transparent 12.5%, transparent 87%, #3A3A3A 87.5%, #3A3A3A),
    linear-gradient(150deg, #3A3A3A 12%, transparent 12.5%, transparent 87%, #3A3A3A 87.5%, #3A3A3A),
    linear-gradient(30deg, #3A3A3A 12%, transparent 12.5%, transparent 87%, #3A3A3A 87.5%, #3A3A3A),
    linear-gradient(150deg, #3A3A3A 12%, transparent 12.5%, transparent 87%, #3A3A3A 87.5%, #3A3A3A);
}

/* Footer */
[data-theme="dark"] footer {
  background: var(--bg-secondary);
  border-top-color: var(--border-primary);
  color: var(--text-muted);
}

