@charset "UTF-8";
.index-page .hero {
  position: relative;
  display: flex;
  min-height: calc(100vh - 80px);
  align-items: center;
  overflow: hidden;
  background: var(--color-inverse-surface);
  color: var(--color-inverse-on-surface); }
  .index-page .hero__bg-pattern {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to right, #000, transparent 85%);
    pointer-events: none; }
  .index-page .hero__bg-morph {
    position: absolute;
    top: -30%;
    right: -12%;
    width: 760px;
    height: 760px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(226, 67, 75, 0.24), rgba(226, 67, 75, 0.06) 42%, transparent 70%);
    pointer-events: none; }
  .index-page .hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: calc(100vh - 80px);
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 40px;
    padding-top: clamp(24px, 4vh, 40px);
    padding-bottom: clamp(24px, 5vh, 56px); }
  .index-page .hero__content {
    max-width: 560px; }
  .index-page .hero__tagline {
    min-height: 1.2em;
    margin-bottom: 20px;
    color: var(--color-primary-fixed-dim);
    font-size: var(--label-bold-size);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase; }
    .index-page .hero__tagline .cursor {
      display: inline-block;
      width: 2px;
      height: 1em;
      margin-left: 2px;
      background: var(--color-primary-fixed-dim);
      animation: blink 0.8s step-end infinite;
      vertical-align: text-bottom; }
      .index-page .hero__tagline .cursor.hidden {
        opacity: 0; }
  .index-page .hero [data-content-id="home-hero-title"] h1 {
    margin-bottom: 24px; }
    .index-page .hero [data-content-id="home-hero-title"] h1 > span {
      display: inline-block;
      opacity: 0;
      transform: translateY(30px);
      animation: word-reveal 0.6s ease forwards; }
    .index-page .hero [data-content-id="home-hero-title"] h1 > span:nth-child(1) {
      animation-delay: 0.1s; }
    .index-page .hero [data-content-id="home-hero-title"] h1 > span:nth-child(2) {
      animation-delay: 0.25s; }
    .index-page .hero [data-content-id="home-hero-title"] h1 > span:nth-child(3) {
      animation-delay: 0.4s; }
    .index-page .hero [data-content-id="home-hero-title"] h1 em {
      position: relative;
      color: var(--color-primary-fixed-dim);
      font-style: normal; }
      .index-page .hero [data-content-id="home-hero-title"] h1 em::after {
        position: absolute;
        right: 0;
        bottom: 2px;
        left: 0;
        height: 4px;
        border-radius: 2px;
        background: var(--color-primary-bright);
        content: "";
        opacity: 0.3; }
  .index-page .hero [data-content-id="home-hero-subtitle"] p {
    margin-bottom: 36px;
    opacity: 0.85;
    animation: fade-slide-up 0.8s ease 0.6s both; }
  .index-page .hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    animation: fade-slide-up 0.8s ease 0.8s both; }
  .index-page .hero__visual {
    display: flex;
    min-height: calc(90vh - 72px);
    align-items: center;
    justify-content: center;
    animation: fade-in-scale 1s ease 0.3s both; }
  .index-page .hero__distiller {
    position: relative;
    width: auto;
    height: calc(90vh - 72px);
    min-height: 620px;
    max-height: 100%;
    aspect-ratio: 420/570; }
.index-page .distiller-svg {
  width: 100%;
  height: 100%; }
  .index-page .distiller-svg .funnel-rim {
    fill: rgba(255, 255, 255, 0.05);
    stroke: rgba(255, 255, 255, 0.18);
    stroke-width: 2; }
  .index-page .distiller-svg .funnel-body, .index-page .distiller-svg .funnel-neck {
    fill: rgba(255, 255, 255, 0.05);
    stroke: rgba(255, 255, 255, 0.18);
    stroke-width: 1.5; }
  .index-page .distiller-svg .funnel-pipe {
    fill: none;
    stroke: rgba(255, 255, 255, 0.2);
    stroke-dasharray: 4 2;
    stroke-linecap: round;
    stroke-width: 2;
    animation: pipe-flow 1.8s linear infinite; }
  .index-page .distiller-svg .funnel-icon-flow {
    animation: funnel-flow var(--dur, 3.5s) linear infinite;
    animation-delay: var(--delay, 0s); }
  .index-page .distiller-svg .laptop-screen {
    fill: rgba(255, 255, 255, 0.05);
    stroke: rgba(255, 255, 255, 0.22);
    stroke-width: 2; }
  .index-page .distiller-svg .laptop-display {
    animation: screen-glow-pulse 4s ease-in-out infinite; }
  .index-page .distiller-svg .laptop-base {
    fill: rgba(255, 255, 255, 0.04);
    stroke: rgba(255, 255, 255, 0.14);
    stroke-width: 1.5; }
  .index-page .distiller-svg .screen-line {
    fill: rgba(255, 255, 255, 0.18);
    animation: screen-line-pulse 3s ease-in-out infinite; }
  .index-page .distiller-svg .screen-line-dim {
    fill: rgba(255, 255, 255, 0.07); }
  .index-page .distiller-svg .screen-check-circle {
    fill: rgba(226, 67, 75, 0.12);
    stroke: rgba(226, 67, 75, 0.35);
    stroke-width: 1.5;
    animation: check-pulse 3s ease-in-out infinite; }
  .index-page .distiller-svg .screen-check {
    fill: none;
    stroke: var(--color-primary-bright);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.5;
    animation: check-draw 3s ease-in-out infinite; }
  .index-page .distiller-svg .tap-base {
    fill: rgba(255, 255, 255, 0.1);
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 1.5; }
  .index-page .distiller-svg .tap-spout {
    fill: none;
    stroke: rgba(255, 255, 255, 0.28);
    stroke-linecap: round;
    stroke-width: 3.5; }
  .index-page .distiller-svg .tap-drop, .index-page .distiller-svg .shot-glass-liquid, .index-page .distiller-svg .shot-glass-surface, .index-page .distiller-svg .puddle {
    fill: var(--color-primary-bright); }
  .index-page .distiller-svg .tap-drop {
    transform-box: fill-box;
    transform-origin: center top;
    animation: tap-drip 3s ease-in-out infinite; }
    .index-page .distiller-svg .tap-drop--fall, .index-page .distiller-svg .tap-drop--fall2 {
      animation-name: tap-drip-fall;
      opacity: 0; }
    .index-page .distiller-svg .tap-drop--fall {
      animation-delay: 1s; }
    .index-page .distiller-svg .tap-drop--fall2 {
      animation-delay: 2s; }
  .index-page .distiller-svg .shot-glass-body, .index-page .distiller-svg .shot-glass-rim, .index-page .distiller-svg .shot-glass-base {
    fill: rgba(255, 255, 255, 0.06);
    stroke: rgba(255, 255, 255, 0.25);
    stroke-width: 1.2; }
  .index-page .distiller-svg .shot-glass-surface {
    opacity: 0.75;
    transform-box: fill-box;
    transform-origin: center center;
    animation: glass-surface-ripple 3.5s ease-in-out infinite; }
  .index-page .distiller-svg .shot-glass-highlight {
    fill: none;
    stroke: rgba(255, 255, 255, 0.15);
    stroke-linecap: round;
    stroke-width: 1.2; }
  .index-page .distiller-svg .puddle {
    opacity: 0.12;
    transform-box: fill-box;
    transform-origin: center center;
    animation: puddle-shimmer 4s ease-in-out infinite; }
.index-page .wave-divider {
  position: relative;
  height: 60px;
  margin-top: -60px;
  overflow: hidden;
  pointer-events: none; }
.index-page .wave-layer {
  position: absolute;
  bottom: 0;
  width: 200%;
  height: 60px;
  will-change: transform; }
  .index-page .wave-layer--1 {
    opacity: 0.3;
    animation: wave-slide 10s linear infinite; }
  .index-page .wave-layer--2 {
    opacity: 0.55;
    animation: wave-slide 7s linear -2.3s infinite; }
  .index-page .wave-layer--3 {
    opacity: 0.85;
    animation: wave-slide 4.5s linear -1.1s infinite; }
.index-page .qualif-section {
  padding: 56px 0;
  background: var(--color-surface); }
  .index-page .qualif-section .section__label {
    margin-bottom: 32px; }
.index-page .qualif-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; }
.index-page .qualif-card, .index-page .service-card, .index-page .philosophy-pillar {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  background: var(--layer-1);
  box-shadow: var(--shadow-1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
  .index-page .qualif-card:hover, .index-page .service-card:hover, .index-page .philosophy-pillar:hover {
    border-color: var(--color-primary-fixed-dim);
    box-shadow: var(--shadow-2);
    transform: translateY(-4px); }
.index-page .qualif-card {
  padding: 28px 24px; }
.index-page [data-content-id="home-qualif-1"] h3, .index-page [data-content-id="home-qualif-2"] h3, .index-page [data-content-id="home-qualif-3"] h3 {
  margin-bottom: 10px;
  color: var(--color-primary);
  font-size: var(--headline-sm-size);
  font-weight: 600; }
.index-page [data-content-id="home-qualif-1"] p, .index-page [data-content-id="home-qualif-2"] p, .index-page [data-content-id="home-qualif-3"] p {
  color: var(--color-on-surface-variant); }
.index-page .section-callout {
  grid-column: 1/-1;
  margin-top: 4px; }
  .index-page .section-callout--small {
    margin-top: 1em; }
.index-page .proof-band {
  padding: 40px 0;
  border-top: 2px solid var(--color-primary-fixed-dim);
  border-bottom: 2px solid var(--color-primary-fixed-dim);
  text-align: center; }
  .index-page .proof-band [data-content-id="home-proof-quote"] figure {
    max-width: 720px;
    margin: 0 auto; }
  .index-page .proof-band [data-content-id="home-proof-quote"] blockquote {
    margin-bottom: 12px;
    color: var(--color-on-surface);
    font-size: clamp(var(--body-md-size), 1.8vw, var(--body-lg-size));
    font-style: italic; }
    .index-page .proof-band [data-content-id="home-proof-quote"] blockquote::before {
      display: block;
      margin-bottom: -12px;
      color: var(--color-primary-fixed-dim);
      content: "“";
      font-family: Georgia, serif;
      font-size: 56px;
      line-height: 1;
      opacity: 0.4; }
  .index-page .proof-band [data-content-id="home-proof-quote"] figcaption {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px; }
  .index-page .proof-band [data-content-id="home-proof-quote"] figcaption > :first-child {
    color: var(--color-primary);
    font-weight: 700; }
  .index-page .proof-band [data-content-id="home-proof-quote"] figcaption > :last-child {
    color: var(--color-on-surface-variant);
    font-size: var(--caption-size); }
    .index-page .proof-band [data-content-id="home-proof-quote"] figcaption > :last-child::before {
      content: "— "; }
.index-page .service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px; }
.index-page [data-content-id="home-services-intro"] > p:first-child, .index-page [data-content-id="home-fit-intro"] > p:first-child, .index-page [data-content-id="home-process-intro"] > p:first-child, .index-page [data-content-id="home-portfolio-intro"] > p:first-child, .index-page [data-content-id="home-about-intro"] > p:first-child {
  margin-bottom: 12px;
  color: var(--color-primary);
  font-size: var(--label-bold-size);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase; }
.index-page [data-content-id="home-services-intro"] > h2, .index-page [data-content-id="home-fit-intro"] > h2, .index-page [data-content-id="home-process-intro"] > h2, .index-page [data-content-id="home-portfolio-intro"] > h2, .index-page [data-content-id="home-about-intro"] > h2 {
  margin-bottom: 16px;
  font-size: var(--headline-md-size);
  font-weight: 600;
  line-height: 1.3; }
.index-page [data-content-id="home-services-intro"] > p:last-child, .index-page [data-content-id="home-fit-intro"] > p:last-child, .index-page [data-content-id="home-process-intro"] > p:last-child, .index-page [data-content-id="home-portfolio-intro"] > p:last-child, .index-page [data-content-id="home-about-intro"] > p:last-child {
  max-width: 600px;
  margin-bottom: 48px;
  color: var(--color-on-surface-variant);
  font-size: var(--body-lg-size); }
.index-page [data-content-id="home-process-intro"] > h2, .index-page [data-content-id="home-process-intro"] > p, .index-page [data-content-id="home-about-intro"] > h2, .index-page [data-content-id="home-about-intro"] > p {
  text-align: center; }
.index-page [data-content-id="home-process-intro"] > p:last-child, .index-page [data-content-id="home-about-intro"] > p:last-child {
  margin-right: auto;
  margin-left: auto; }
.index-page .service-card {
  max-width: 280px;
  flex: 1 1 240px;
  padding: 28px 22px;
  text-align: center; }
.index-page [data-content-id="home-service-1"] h3, .index-page [data-content-id="home-service-2"] h3, .index-page [data-content-id="home-service-3"] h3, .index-page [data-content-id="home-service-4"] h3 {
  margin-bottom: 10px;
  color: var(--color-primary);
  font-size: 20px; }
.index-page [data-content-id="home-service-1"] p, .index-page [data-content-id="home-service-2"] p, .index-page [data-content-id="home-service-3"] p, .index-page [data-content-id="home-service-4"] p {
  color: var(--color-on-surface-variant); }
.index-page .comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px; }
.index-page .comparison-card {
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  transition: transform 0.4s ease, box-shadow 0.4s ease; }
  .index-page .comparison-card:hover {
    box-shadow: var(--shadow-2);
    transform: translateY(-4px); }
  .index-page .comparison-card--bad {
    border: 2px solid #e8e0dc;
    background: #faf7f5; }
    .index-page .comparison-card--bad .comparison-card__title {
      color: #8c6f6a; }
    .index-page .comparison-card--bad .comparison-card__list li::before {
      color: #b8857a;
      content: "×"; }
  .index-page .comparison-card--good {
    border: 2px solid var(--color-primary-fixed-dim);
    background: var(--layer-1);
    box-shadow: var(--shadow-1); }
    .index-page .comparison-card--good .comparison-card__title {
      color: var(--color-primary); }
    .index-page .comparison-card--good .comparison-card__list li::before {
      color: var(--color-primary);
      content: "✓"; }
  .index-page .comparison-card__title {
    margin-bottom: 20px;
    font-size: var(--headline-sm-size); }
  .index-page .comparison-card__list {
    display: grid;
    gap: 12px; }
    .index-page .comparison-card__list li {
      position: relative;
      padding-left: 28px;
      color: var(--color-on-surface-variant); }
      .index-page .comparison-card__list li::before {
        position: absolute;
        top: 0;
        left: 0;
        font-size: 16px;
        font-weight: 700; }
.index-page .simple-timeline {
  list-style: none;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px; }
  .index-page .simple-timeline::before {
    position: absolute;
    top: 28px;
    right: 16.5%;
    left: 16.5%;
    height: 2px;
    background: var(--color-outline-variant);
    content: ""; }
  .index-page .simple-timeline__item {
    position: relative;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 76px 28px 28px;
    background: var(--layer-1);
    box-shadow: var(--shadow-1);
    text-align: center; }
  .index-page .simple-timeline__number {
    position: absolute;
    top: 0;
    left: 50%;
    display: inline-flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 0 10px var(--color-background);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    transform: translate(-50%, -50%); }
.index-page [data-content-id="home-process-1"] h3, .index-page [data-content-id="home-process-2"] h3, .index-page [data-content-id="home-process-3"] h3 {
  margin-bottom: 10px;
  font-size: var(--headline-sm-size); }
.index-page [data-content-id="home-process-1"] p, .index-page [data-content-id="home-process-2"] p, .index-page [data-content-id="home-process-3"] p {
  color: var(--color-on-surface-variant); }
.index-page .portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; }
  .index-page .portfolio-grid--three {
    margin-top: 32px; }
.index-page .portfolio-card {
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  background: var(--layer-1);
  box-shadow: var(--shadow-1);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease; }
  .index-page .portfolio-card:hover {
    box-shadow: var(--shadow-2);
    transform: translateY(-8px) scale(1.01); }
    .index-page .portfolio-card:hover .portfolio-card__thumb {
      transform: scale(1.05); }
  .index-page .portfolio-card__thumb {
    position: relative;
    display: flex;
    height: 200px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.4s ease; }
    .index-page .portfolio-card__thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
    .index-page .portfolio-card__thumb--1 {
      background: linear-gradient(135deg, #2f3131, #4a4d4d); }
    .index-page .portfolio-card__thumb--2 {
      background: linear-gradient(135deg, #b21e2d, #d53a43); }
    .index-page .portfolio-card__thumb--3 {
      background: linear-gradient(135deg, #3d5a5a, #527a7a); }
  .index-page .portfolio-card [data-content-id="home-portfolio-site"] > div, .index-page .portfolio-card [data-content-id="home-portfolio-portal"] > div, .index-page .portfolio-card [data-content-id="home-portfolio-cellar"] > div {
    display: flex;
    height: 100%;
    flex-direction: column;
    padding: 24px; }
  .index-page .portfolio-card [data-content-id="home-portfolio-site"] h3, .index-page .portfolio-card [data-content-id="home-portfolio-portal"] h3, .index-page .portfolio-card [data-content-id="home-portfolio-cellar"] h3 {
    margin-bottom: 6px;
    font-size: var(--headline-sm-size);
    font-weight: 600; }
  .index-page .portfolio-card [data-content-id="home-portfolio-site"] p:first-child, .index-page .portfolio-card [data-content-id="home-portfolio-portal"] p:first-child, .index-page .portfolio-card [data-content-id="home-portfolio-cellar"] p:first-child {
    margin-bottom: 8px;
    color: var(--color-primary);
    font-size: var(--caption-size);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase; }
  .index-page .portfolio-card [data-content-id="home-portfolio-site"] h3 + p, .index-page .portfolio-card [data-content-id="home-portfolio-portal"] h3 + p, .index-page .portfolio-card [data-content-id="home-portfolio-cellar"] h3 + p {
    color: var(--color-on-surface-variant); }
  .index-page .portfolio-card [data-content-id="home-portfolio-site"] a, .index-page .portfolio-card [data-content-id="home-portfolio-portal"] a, .index-page .portfolio-card [data-content-id="home-portfolio-cellar"] a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-on-surface-variant);
    transition: color 0.2s, transform 0.2s ease; }
    .index-page .portfolio-card [data-content-id="home-portfolio-site"] a::after, .index-page .portfolio-card [data-content-id="home-portfolio-portal"] a::after, .index-page .portfolio-card [data-content-id="home-portfolio-cellar"] a::after {
      content: "→"; }
    .index-page .portfolio-card [data-content-id="home-portfolio-site"] a:hover, .index-page .portfolio-card [data-content-id="home-portfolio-portal"] a:hover, .index-page .portfolio-card [data-content-id="home-portfolio-cellar"] a:hover {
      color: var(--color-primary);
      transform: translateX(4px); }
.index-page [data-content-id="home-portfolio-site"] ul, .index-page [data-content-id="home-portfolio-portal"] ul, .index-page [data-content-id="home-portfolio-cellar"] ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 24px;
  color: var(--color-on-surface-variant); }
  .index-page [data-content-id="home-portfolio-site"] ul li, .index-page [data-content-id="home-portfolio-portal"] ul li, .index-page [data-content-id="home-portfolio-cellar"] ul li {
    position: relative;
    padding-left: 18px; }
    .index-page [data-content-id="home-portfolio-site"] ul li::before, .index-page [data-content-id="home-portfolio-portal"] ul li::before, .index-page [data-content-id="home-portfolio-cellar"] ul li::before {
      position: absolute;
      left: 0;
      color: var(--color-primary);
      content: "•";
      font-weight: 700; }
.index-page [data-content-id="home-testimonial-quote"] figure {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  background: var(--layer-1);
  box-shadow: var(--shadow-1); }
  .index-page [data-content-id="home-testimonial-quote"] figure::before {
    position: absolute;
    top: 16px;
    right: 28px;
    color: var(--color-primary-fixed);
    content: '"';
    font-family: Georgia, serif;
    font-size: 80px;
    font-weight: 700;
    line-height: 1; }
.index-page [data-content-id="home-testimonial-quote"] blockquote {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
  color: var(--color-on-surface);
  font-size: clamp(18px, 2vw, 22px);
  font-style: italic;
  line-height: 1.7; }
.index-page [data-content-id="home-testimonial-quote"] figcaption {
  display: flex;
  align-items: center;
  gap: 12px; }
.index-page [data-content-id="home-testimonial-quote"] figcaption > div:first-child {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-primary-fixed);
  color: var(--color-primary);
  font-size: var(--body-lg-size);
  font-weight: 700; }
.index-page [data-content-id="home-testimonial-quote"] figcaption > div:last-child p:first-child {
  font-weight: 700; }
.index-page [data-content-id="home-testimonial-quote"] figcaption > div:last-child p:last-child {
  color: var(--color-on-surface-variant);
  font-size: var(--caption-size); }
.index-page .philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px; }
.index-page .philosophy-pillar {
  padding: 36px 28px;
  text-align: center; }
.index-page [data-content-id="home-philosophy-1"] h3, .index-page [data-content-id="home-philosophy-2"] h3, .index-page [data-content-id="home-philosophy-3"] h3 {
  margin-bottom: 12px;
  color: var(--color-primary);
  font-size: var(--headline-sm-size); }
.index-page [data-content-id="home-philosophy-1"] p, .index-page [data-content-id="home-philosophy-2"] p, .index-page [data-content-id="home-philosophy-3"] p {
  color: var(--color-on-surface-variant); }
.index-page .faq-list {
  display: flex;
  max-width: 780px;
  flex-direction: column;
  gap: 12px;
  margin: 0 auto; }
.index-page .faq-item {
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  background: var(--layer-1);
  box-shadow: var(--shadow-1);
  transition: box-shadow 0.3s, transform 0.3s ease; }
  .index-page .faq-item.is-open {
    box-shadow: var(--shadow-2);
    transform: translateY(-2px); }
    .index-page .faq-item.is-open .faq-item__icon {
      border-color: var(--color-primary);
      background: var(--color-primary-fixed);
      transform: rotate(45deg); }
    .index-page .faq-item.is-open .faq-item__answer {
      max-height: 400px; }
  .index-page .faq-item__trigger {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 0;
    padding: 24px 28px;
    background: none;
    color: var(--color-on-surface);
    cursor: pointer;
    font-family: var(--font-family);
    font-size: var(--body-lg-size);
    font-weight: 600;
    text-align: left; }
    .index-page .faq-item__trigger:hover {
      color: var(--color-primary); }
  .index-page .faq-item__icon {
    display: flex;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-outline-variant);
    border-radius: 50%;
    color: var(--color-on-surface-variant);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s, background 0.3s; }
  .index-page .faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s linear; }
    .index-page .faq-item__answer-inner {
      padding: 0 28px 24px;
      color: var(--color-on-surface-variant);
      line-height: 1.7; }
.index-page .cta-section {
  position: relative;
  overflow: hidden; }
  .index-page .cta-section .container {
    position: relative;
    z-index: 2;
    padding: 80px var(--gutter);
    text-align: center; }
  .index-page .cta-section__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(226, 67, 75, 0.3), transparent), radial-gradient(ellipse 40% 70% at 80% 20%, rgba(255, 179, 177, 0.1), transparent); }
  .index-page .cta-section__title {
    margin-bottom: 16px;
    color: var(--color-inverse-on-surface);
    font-size: var(--headline-md-size); }
  .index-page .cta-section__subtitle {
    max-width: 500px;
    margin: 0 auto 36px;
    color: rgba(255, 255, 255, 0.75);
    font-size: var(--body-lg-size); }
  .index-page .cta-section .btn--secondary {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff; }
.index-page .cta-chips {
  max-width: 760px;
  margin: 0 auto 32px; }
  .index-page .cta-chips--marquee {
    display: block;
    max-width: 860px;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0, #000 12%, #000 88%, transparent 100%); }
  .index-page .cta-chips__track {
    display: flex;
    width: max-content;
    gap: 12px;
    animation: cta-chips-marquee 24s linear infinite; }
  .index-page .cta-chips span {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-full);
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
    white-space: nowrap; }

.cursor-glow {
  position: fixed;
  z-index: 9998;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226, 67, 75, 0.06), transparent 70%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease; }

@keyframes blink {
  0%, 100% {
    opacity: 1; }
  50% {
    opacity: 0; } }
@keyframes word-reveal {
  to {
    opacity: 1;
    transform: translateY(0); } }
@keyframes fade-slide-up {
  from {
    opacity: 0;
    transform: translateY(16px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
@keyframes fade-in-scale {
  from {
    opacity: 0;
    transform: scale(0.85); }
  to {
    opacity: 1;
    transform: scale(1); } }
@keyframes wave-slide {
  from {
    transform: translateX(0); }
  to {
    transform: translateX(-50%); } }
@keyframes pipe-flow {
  to {
    stroke-dashoffset: -12; } }
@keyframes funnel-flow {
  0% {
    opacity: 0;
    transform: translateY(-40px); }
  15%, 75% {
    opacity: 0.7; }
  75% {
    transform: translateY(155px); }
  100% {
    opacity: 0;
    transform: translateY(230px); } }
@keyframes screen-glow-pulse {
  0%, 100% {
    opacity: 0.6; }
  50% {
    opacity: 1; } }
@keyframes screen-line-pulse {
  0%, 100% {
    opacity: 0.6; }
  50% {
    opacity: 1; } }
@keyframes check-pulse {
  0%, 100% {
    opacity: 0.7; }
  50% {
    opacity: 1; } }
@keyframes check-draw {
  0%, 100% {
    opacity: 0.5;
    stroke-dasharray: 0 30; }
  40%, 70% {
    opacity: 1;
    stroke-dasharray: 30 0; } }
@keyframes tap-drip {
  0%, 100% {
    opacity: 0;
    transform: translateY(0) scaleY(0.3); }
  30% {
    opacity: 1;
    transform: translateY(0) scaleY(1.1); }
  65% {
    opacity: 0;
    transform: translateY(18px) scaleY(0.3); } }
@keyframes tap-drip-fall {
  0%, 100% {
    opacity: 0;
    transform: translateY(0) scale(0.2); }
  25% {
    opacity: 0.9;
    transform: translateY(3px) scale(0.9); }
  85% {
    opacity: 0;
    transform: translateY(32px) scale(0.2); } }
@keyframes glass-surface-ripple {
  0%, 100% {
    opacity: 0.65;
    transform: scaleX(1); }
  50% {
    opacity: 0.85;
    transform: scaleX(0.94); } }
@keyframes puddle-shimmer {
  0%, 100% {
    opacity: 0.08; }
  50% {
    opacity: 0.18; } }
@keyframes cta-chips-marquee {
  from {
    transform: translateX(0); }
  to {
    transform: translateX(calc(-50% - 6px)); } }
@media (max-width: 968px) {
  .index-page .hero .container {
    grid-template-columns: 1fr;
    text-align: center; }
  .index-page .hero__content {
    max-width: 100%; }
  .index-page .hero__actions {
    justify-content: center; }
  .index-page .hero__visual {
    width: min(100%, 440px);
    min-height: auto;
    margin: 8px auto 0; }
  .index-page .hero__distiller {
    width: 100%;
    height: auto;
    min-height: 420px; }
  .index-page .qualif-grid, .index-page .portfolio-grid--three {
    grid-template-columns: 1fr 1fr; }
  .index-page .comparison-grid {
    grid-template-columns: 1fr;
    gap: 24px; }
  .index-page .simple-timeline {
    grid-template-columns: 1fr;
    gap: 48px; }
    .index-page .simple-timeline::before {
      top: 0;
      bottom: 0;
      left: 28px;
      width: 2px;
      height: auto; }
    .index-page .simple-timeline__item {
      padding: 28px 28px 28px 84px;
      text-align: left; }
    .index-page .simple-timeline__number {
      top: 38px;
      left: 28px;
      box-shadow: 0 0 0 8px var(--color-background); }
  .index-page .philosophy-grid {
    grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) {
  .index-page .hero__actions {
    align-items: center;
    flex-direction: column; }
  .index-page .qualif-grid, .index-page .portfolio-grid--three, .index-page .philosophy-grid {
    grid-template-columns: 1fr; }
  .index-page .simple-timeline__item {
    padding-left: 72px; }
  .index-page [data-content-id="home-testimonial-quote"] figure {
    padding: 28px 24px; }
    .index-page [data-content-id="home-testimonial-quote"] figure::before {
      top: 12px;
      right: 20px;
      font-size: 56px; } }

/*# sourceMappingURL=index.css.map */
