:root {
  --ink: #1a1625;
  --ink-soft: #2d2640;
  --surface: #f5f3ff;
  --surface-card: #ffffff;
  --primary: #6c3fc5;
  --primary-light: #8b5cf6;
  --secondary: #ec4899;
  --accent: #06b6d4;
  --accent-warm: #f59e0b;
  --text-body: #3d3550;
  --text-muted: #6b6480;
  --nav-h: 72px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --shadow-low: 0 2px 8px rgba(108,63,197,0.08), 0 1px 3px rgba(0,0,0,0.06);
  --shadow-mid: 0 8px 32px rgba(108,63,197,0.12), 0 2px 8px rgba(0,0,0,0.08);
  --shadow-high: 0 20px 60px rgba(108,63,197,0.18), 0 8px 24px rgba(0,0,0,0.1);
  --transition: 0.3s ease;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--surface);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: var(--primary);
  transition: color var(--transition);
}

a:hover {
  color: var(--primary-light);
}

.canvas {
  min-height: 100vh;
  position: relative;
}

.blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.blob-primary-lg {
  top: -15%;
  left: -10%;
  width: clamp(400px, 60vw, 800px);
  height: clamp(400px, 60vw, 800px);
  background: radial-gradient(circle, rgba(139,92,246,0.3) 0%, transparent 70%);
  filter: blur(120px);
  animation: blob-drift 14s ease-in-out infinite alternate;
}

.blob-teal {
  bottom: 5%;
  right: -5%;
  width: clamp(300px, 40vw, 600px);
  height: clamp(300px, 40vw, 600px);
  background: radial-gradient(circle, rgba(6,182,212,0.2) 0%, transparent 70%);
  filter: blur(100px);
  animation: blob-drift 18s ease-in-out infinite alternate-reverse;
}

.blob-teal-sm {
  top: 20%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6,182,212,0.18) 0%, transparent 70%);
  filter: blur(80px);
  animation: blob-drift 10s ease-in-out infinite alternate;
}

.blob-pink-sm {
  top: 10%;
  right: -5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(236,72,153,0.2) 0%, transparent 70%);
  filter: blur(90px);
  animation: blob-drift 12s ease-in-out infinite alternate-reverse;
}

.blob-amber {
  bottom: 0;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 70%);
  filter: blur(100px);
  animation: blob-drift 20s ease-in-out infinite alternate;
}

@keyframes blob-drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(4%, 5%) scale(1.06); }
}

.stage-eyebrow,
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(108,63,197,0.1);
  color: var(--primary);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(108,63,197,0.2);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: #fff;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-mid);

  &:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-high);
    color: #fff;
  }
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--primary);
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid rgba(108,63,197,0.3);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);

  &:hover {
    border-color: var(--primary);
    background: rgba(108,63,197,0.06);
    transform: translateY(-2px);
    color: var(--primary);
  }
}

.btn-large {
  padding: 1rem 2.2rem;
  font-size: 1rem;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1rem;
}

.nav-rail {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 4vw, 3rem);
  transition: background 0.4s ease, box-shadow 0.4s ease;

  &.nav-scrolled {
    background: rgba(245,243,255,0.92);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(108,63,197,0.1);
  }
}

.nav-brand {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: opacity var(--transition);

  &:hover {
    opacity: 0.8;
    color: var(--primary);
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;

  & a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-body);
    text-decoration: none;
    transition: color var(--transition);

    &:hover {
      color: var(--primary);
    }
  }
}

.nav-cta {
  position: relative;
  background: var(--primary);
  color: #fff !important;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;

  &:hover {
    background: var(--primary-light) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-mid);
  }

  & .pulse-dot {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 10px;
    height: 10px;
    background: var(--secondary);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
  }
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 1; }
  70% { transform: scale(1.8); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--ink);
  font-size: 1.5rem;
  transition: color var(--transition);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;

  &:hover {
    color: var(--primary);
  }
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, #a855f7 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;

  &.drawer-open {
    opacity: 1;
    pointer-events: all;
  }
}

.drawer-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);

  &:hover {
    background: rgba(255,255,255,0.25);
    transform: rotate(90deg);
  }
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;

  & a {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity var(--transition), transform var(--transition);

    &:hover {
      opacity: 1;
      transform: translateX(8px);
      color: #fff;
    }
  }
}

.stage-curtain {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(26,22,37,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;

  &.curtain-open {
    opacity: 1;
    pointer-events: all;
  }
}

.stage {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 4rem) clamp(1.5rem, 6vw, 7rem) 6rem;
  position: relative;
  overflow: hidden;

  &::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 70vw;
    height: 70vw;
    max-width: 900px;
    max-height: 900px;
    background: radial-gradient(circle, rgba(139,92,246,0.35) 0%, transparent 70%);
    filter: blur(120px);
    border-radius: 50%;
    animation: blob-drift 12s ease-in-out infinite alternate;
  }

  &::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 55vw;
    height: 55vw;
    max-width: 700px;
    max-height: 700px;
    background: radial-gradient(circle, rgba(236,72,153,0.25) 0%, transparent 70%);
    filter: blur(100px);
    border-radius: 50%;
    animation: blob-drift 16s ease-in-out infinite alternate-reverse;
  }
}

.stage-inner {
  max-width: 780px;
  position: relative;
  z-index: 2;
  animation: hero-enter 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

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

.stage h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 1.5rem;

  & span {
    color: var(--primary);
  }
}

.stage p.stage-lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.stage-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.page-hero {
  padding: calc(var(--nav-h) + 5rem) clamp(1.5rem, 6vw, 7rem) 5rem;
  position: relative;
  overflow: hidden;

  & .page-hero-inner {
    max-width: 700px;
    position: relative;
    z-index: 2;
    animation: hero-enter 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  & h1 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 1.2rem;
  }

  & .stage-lead {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--text-muted);
    line-height: 1.75;
  }
}

.page-hero-short {
  padding-bottom: 3rem;
}

.gallery {
  padding: var(--space-xl) clamp(1.5rem, 6vw, 7rem);
  position: relative;
}

.section-header {
  max-width: 600px;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 2;

  & h2 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 0.75rem;
  }

  & p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
  }
}

.shelf {
  position: relative;
  z-index: 2;
}

.shelf-topics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.topic-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-low);
  border: 1px solid rgba(108,63,197,0.08);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);

  &:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-mid);
    border-color: rgba(108,63,197,0.2);
  }

  & .topic-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(108,63,197,0.12), rgba(139,92,246,0.08));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1.2rem;
    transition: background var(--transition);
  }

  &:hover .topic-icon {
    background: linear-gradient(135deg, rgba(108,63,197,0.2), rgba(139,92,246,0.15));
  }

  & h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.75rem;
    line-height: 1.3;
  }

  & p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.2rem;
  }
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: gap var(--transition), color var(--transition);

  &:hover {
    gap: 0.7rem;
    color: var(--primary-light);
  }
}

.spotlight-section {
  padding: var(--space-xl) clamp(1.5rem, 6vw, 7rem);
  position: relative;
  overflow: hidden;
}

.featured-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.featured-text {
  & .section-eyebrow {
    display: inline-flex;
    margin-bottom: 1.2rem;
  }

  & h2 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 1.2rem;
    line-height: 1.2;
  }

  & p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 1.2rem;
  }

  & .btn-primary {
    margin-top: 0.5rem;
  }
}

.featured-visual {
  & .featured-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-high);
    transition: transform var(--transition), box-shadow var(--transition);

    &:hover {
      transform: translateY(-4px) scale(1.01);
      box-shadow: 0 28px 70px rgba(108,63,197,0.22), 0 10px 28px rgba(0,0,0,0.12);
    }
  }
}

.shelf-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.post-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-low);
  border: 1px solid rgba(108,63,197,0.07);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);

  &:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-mid);
    border-color: rgba(108,63,197,0.18);
  }
}

.post-img-wrap {
  height: 200px;
  overflow: hidden;

  & img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
}

.post-card:hover .post-img-wrap img {
  transform: scale(1.04);
}

.post-body {
  padding: 1.5rem;

  & h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.7rem;
    line-height: 1.35;
  }

  & p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1.2rem;
  }
}

.post-tag {
  display: inline-block;
  background: rgba(108,63,197,0.1);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.contact-preview-section {
  margin: 0 clamp(1.5rem, 6vw, 7rem);
  padding: 3.5rem 4rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 60%, #a855f7 100%);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;

  &::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    filter: blur(60px);
    border-radius: 50%;
  }
}

.contact-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.cta-text {
  & h2 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
  }

  & p {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    max-width: 500px;
  }
}

.contact-preview-section .btn-primary {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  white-space: nowrap;

  &:hover {
    background: rgba(255,255,255,0.92);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
  }
}

.shelf-contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.contact-info-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-low);
  border: 1px solid rgba(108,63,197,0.08);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: transform var(--transition), box-shadow var(--transition);

  &:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-mid);
  }

  & .contact-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(108,63,197,0.12), rgba(139,92,246,0.08));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary);
  }

  & h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  & p, & a {
    font-size: 0.95rem;
    color: var(--text-body);
    text-decoration: none;
    line-height: 1.5;
    transition: color var(--transition);
  }

  & a:hover {
    color: var(--primary);
  }
}

.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  margin-top: var(--space-xl);
  padding: 4rem clamp(1.5rem, 6vw, 7rem) 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
  & .nav-brand {
    color: #fff;
    margin-bottom: 1rem;
    display: block;
  }

  & p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
  }
}

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

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;

  & h5 {
    font-family: 'Manrope', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.3rem;
  }

  & a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color var(--transition);

    &:hover {
      color: rgba(255,255,255,0.9);
    }
  }
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  flex-wrap: wrap;
  gap: 0.5rem;

  & p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-text-block {
  & h2 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 1.2rem;
  }

  & p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
  }
}

.about-img-block {
  & img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-high);
    transition: transform var(--transition);

    &:hover {
      transform: scale(1.02);
    }
  }
}

.shelf-method {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.method-step {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-low);
  border: 1px solid rgba(108,63,197,0.08);
  transition: transform var(--transition), box-shadow var(--transition);

  &:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-mid);
  }

  & .step-num {
    font-family: 'Manrope', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(108,63,197,0.15);
    line-height: 1;
    margin-bottom: 1rem;
  }

  & h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.75rem;
  }

  & p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
  }
}

.values-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.values-img {
  & img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-high);
  }
}

.values-text {
  & h2 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 1.2rem;
  }

  & p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
  }
}

.case-full {
  background: var(--surface-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-low);
  border: 1px solid rgba(108,63,197,0.08);
  margin-bottom: 2.5rem;
  display: grid;
  grid-template-columns: 380px 1fr;
  transition: box-shadow var(--transition), border-color var(--transition);

  &:hover {
    box-shadow: var(--shadow-mid);
    border-color: rgba(108,63,197,0.18);
  }
}

.case-img {
  & img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
    transition: transform 0.5s ease;
  }
}

.case-full:hover .case-img img {
  transform: scale(1.03);
}

.case-content {
  padding: 2.5rem;

  & h2 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 1rem;
    line-height: 1.25;
  }

  & h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin: 1.5rem 0 0.6rem;
  }

  & p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 0.75rem;
  }
}

.shelf-tools {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.tool-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-low);
  border: 1px solid rgba(108,63,197,0.08);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);

  &:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-mid);
    border-color: rgba(108,63,197,0.2);
  }

  & .tool-icon-wrap {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(108,63,197,0.12), rgba(6,182,212,0.1));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1.2rem;
    transition: background var(--transition);
  }

  &:hover .tool-icon-wrap {
    background: linear-gradient(135deg, rgba(108,63,197,0.2), rgba(6,182,212,0.18));
  }

  & h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.75rem;
  }

  & p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
  }
}

.code-block {
  background: var(--ink);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin: 1rem 0;
  overflow-x: auto;

  & code {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85rem;
    color: #a5f3fc;
    white-space: pre-wrap;
    word-break: break-all;
  }
}

.tools-visual {
  & .featured-inner {
    flex-direction: row;
  }
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 2;
}

.contact-form-wrap {
  & h2 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
  }

  & > p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;

  & label {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-body);

    & span {
      color: var(--secondary);
    }
  }

  & input, & textarea {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-body);
    background: var(--surface-card);
    border: 2px solid rgba(108,63,197,0.15);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    width: 100%;
    min-height: 44px;

    &:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(108,63,197,0.12);
    }

    &::placeholder {
      color: var(--text-muted);
    }
  }

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

.form-check {
  & .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;

    & input[type="checkbox"] {
      width: 18px;
      height: 18px;
      min-width: 18px;
      min-height: 18px;
      accent-color: var(--primary);
      cursor: pointer;
      border-radius: 4px;
      margin-top: 2px;
    }

    & a {
      color: var(--primary);
      font-weight: 500;
    }
  }
}

.form-error {
  font-size: 0.88rem;
  color: #dc2626;
  padding: 0.5rem 0;
  min-height: 1.5rem;
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-detail-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-low);
  border: 1px solid rgba(108,63,197,0.08);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform var(--transition), box-shadow var(--transition);

  &:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-mid);
  }

  & .contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(108,63,197,0.12), rgba(139,92,246,0.08));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--primary);
  }

  & h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  & p, & a {
    font-size: 0.92rem;
    color: var(--text-body);
    text-decoration: none;
    line-height: 1.5;
    transition: color var(--transition);
  }

  & a:hover {
    color: var(--primary);
  }
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-mid);
  position: relative;
  z-index: 2;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.area-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-low);
  border: 1px solid rgba(108,63,197,0.08);
  transition: transform var(--transition), box-shadow var(--transition);

  &:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-mid);
  }

  & .area-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(6,182,212,0.12), rgba(108,63,197,0.1));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 1rem;
  }

  & h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.6rem;
  }

  & p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
  }
}

.thanks-hero {
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 4rem) clamp(1.5rem, 6vw, 7rem) 5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, #a855f7 100%);
  position: relative;
  overflow: hidden;

  &::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
    filter: blur(80px);
    border-radius: 50%;
  }

  &::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(236,72,153,0.2) 0%, transparent 70%);
    filter: blur(80px);
    border-radius: 50%;
  }
}

.thanks-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 600px;
  animation: hero-enter 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;

  & .thanks-icon {
    font-size: 4rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
    animation: hero-enter 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  & h1 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
  }

  & p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.75;
  }
}

.thanks-next {
  padding: var(--space-xl) clamp(1.5rem, 6vw, 7rem);
  background: var(--surface-card);

  & .thanks-next-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;

    & h2 {
      font-family: 'Manrope', sans-serif;
      font-size: clamp(1.6rem, 3vw, 2rem);
      font-weight: 800;
      color: var(--ink);
      margin-bottom: 2.5rem;
      letter-spacing: -0.02em;
    }
  }
}

.shelf-thanks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.thanks-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-decoration: none;
  border: 2px solid rgba(108,63,197,0.1);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: block;

  &:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-mid);
    border-color: rgba(108,63,197,0.25);
  }

  & .thanks-card-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(108,63,197,0.12), rgba(139,92,246,0.08));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    margin: 0 auto 1rem;
  }

  & h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.6rem;
  }

  & p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
  }
}

.thanks-home-btn {
  display: flex;
  justify-content: center;
}

.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 4rem) clamp(1.5rem, 5vw, 2rem) var(--space-xl);
}

.legal-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid rgba(108,63,197,0.12);

  & h1 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
  }
}

.legal-date {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.legal-body {
  & h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
    margin: 2.5rem 0 0.8rem;
  }

  & p {
    font-size: 0.97rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 1.2rem;
  }

  & a {
    color: var(--primary);
    font-weight: 500;

    &:hover {
      color: var(--primary-light);
    }
  }

  & strong {
    color: var(--text-body);
    font-weight: 600;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  display: none;
}

.cookie-banner.cookie-visible {
  display: block;
}

.cookie-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ink-soft);
  border-top: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.25);
}

.cookie-left {
  padding: 1.75rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);

  & h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
  }

  & p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;

    & a {
      color: rgba(255,255,255,0.8);
      text-decoration: underline;
    }
  }
}

.cookie-right {
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;

  & span {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
  }
}

.cookie-toggle {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;

  & input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
  }

  & .toggle-slider {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 11px;
    cursor: pointer;
    transition: background var(--transition);

    &::before {
      content: '';
      position: absolute;
      width: 16px;
      height: 16px;
      left: 3px;
      top: 3px;
      background: #fff;
      border-radius: 50%;
      transition: transform var(--transition);
    }
  }

  & input:checked + .toggle-slider {
    background: var(--primary-light);
  }

  & input:checked + .toggle-slider::before {
    transform: translateX(18px);
  }

  & input:disabled + .toggle-slider {
    opacity: 0.6;
    cursor: not-allowed;
  }
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.cookie-btn-accept {
  flex: 1;
  padding: 0.6rem 1rem;
  background: var(--primary-light);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  min-height: 44px;

  &:hover {
    background: var(--primary);
    transform: translateY(-1px);
  }
}

.cookie-btn-reject {
  flex: 1;
  padding: 0.6rem 1rem;
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
  min-height: 44px;

  &:hover {
    border-color: rgba(255,255,255,0.5);
    color: #fff;
    transform: translateY(-1px);
  }
}

.cookie-btn-save {
  width: 100%;
  padding: 0.55rem 1rem;
  background: transparent;
  color: rgba(255,255,255,0.55);
  border: none;
  font-size: 0.78rem;
  cursor: pointer;
  text-align: center;
  transition: color var(--transition);
  min-height: 44px;

  &:hover {
    color: rgba(255,255,255,0.9);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;

  &.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .featured-inner,
  .values-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .featured-visual .featured-img {
    height: 280px;
  }

  .values-img img {
    height: 280px;
  }

  .case-full {
    grid-template-columns: 1fr;
  }

  .case-img img {
    height: 260px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-img-block img {
    height: 280px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 4rem;
    --space-lg: 2.5rem;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .stage {
    padding: calc(var(--nav-h) + 3rem) 1.5rem 4rem;
  }

  .stage-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-preview-section {
    margin: 0 1rem;
    padding: 2.5rem 1.75rem;
  }

  .contact-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-split {
    grid-template-columns: 1fr;
  }

  .cookie-left {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 1.25rem 1.5rem;
  }

  .cookie-right {
    padding: 1.25rem 1.5rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .shelf-topics,
  .shelf-posts,
  .shelf-tools,
  .shelf-method {
    grid-template-columns: 1fr;
  }

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

  .shelf-contact {
    grid-template-columns: 1fr;
  }

  .thanks-hero {
    padding: calc(var(--nav-h) + 3rem) 1.5rem 4rem;
  }

  .shelf-thanks {
    grid-template-columns: 1fr;
  }

  .gallery {
    padding: 3.5rem 1.5rem;
  }

  .spotlight-section {
    padding: 3.5rem 1.5rem;
  }

  .page-hero {
    padding: calc(var(--nav-h) + 3rem) 1.5rem 3rem;
  }
}

@media (max-width: 480px) {
  .footer-nav {
    grid-template-columns: 1fr;
  }

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