﻿@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Geist+Mono:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
  --background: #170911;
  --foreground: #fbf3f7;
  --card: #1e0c16;
  --card-foreground: #fbf3f7;
  --primary: #a8246f;
  --primary-foreground: #fdf5f9;
  --secondary: #28121d;
  --muted: #271320;
  --muted-foreground: #a78a98;
  --accent: #d33a93;
  --accent-foreground: #fdf5f9;
  --border: #3a1d2b;
  --input: #2a1420;
  --ring: #d33a93;

  --brand: #931966;
  --brand-bright: #ba197f;
  --ink: #0d0509;

  --glow-brand: radial-gradient(circle, var(--brand), transparent 65%);
  --glow-bright: radial-gradient(circle, var(--brand-bright), transparent 65%);

  --shadow-card: 0 0 80px -30px var(--brand-bright);
  --shadow-cta: 0 0 40px -8px var(--brand-bright);
  --shadow-cta-hover: 0 0 70px -4px var(--brand-bright);
  --shadow-soft: 0 24px 60px -28px rgba(0, 0, 0, 0.7);

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

  --font-serif: 'Playfair Display', ui-serif, Georgia, 'Times New Roman', serif;
  --font-sans: 'Geist', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

  --text-eyebrow: 0.75rem;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;

  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  --leading-heading: 1.08;
  --leading-body: 1.625;
  --tracking-tight: -0.01em;
  --tracking-label: 0.18em;
  --tracking-eyebrow: 0.28em;

  --radius-lg: 0.5rem;
  --radius-2xl: 1rem;
  --radius-pill: 9999px;

  --section-py: clamp(7rem, 12vw, 10rem);
  --content-max: 1600px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; }

.grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  background-image: linear-gradient(var(--foreground) 1px, transparent 1px),
    linear-gradient(90deg, var(--foreground) 1px, transparent 1px);
  background-size: 80px 80px;
}

.glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  transition: all 500ms ease;
  border-bottom: 1px solid transparent;
  background: transparent;
}
.site-header.scrolled,
.site-header.menu-open {
  border-bottom: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
  background: color-mix(in srgb, var(--background) 80%, transparent);
  backdrop-filter: blur(24px);
}
.header-inner {
  margin: 0 auto;
  max-width: var(--content-max);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(24px, 5vw, 40px);
}
.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--foreground);
  cursor: pointer;
}
.wordmark span { color: var(--brand-bright); }
.wordmark.lg { font-size: 24px; }

.desktop-nav { display: none; align-items: center; gap: 36px; }
@media (min-width: 1024px) { .desktop-nav { display: flex; } }
.desktop-nav a {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted-foreground);
  cursor: pointer;
  transition: color 200ms;
}
.desktop-nav a.active,
.desktop-nav a:hover { color: var(--foreground); }

.menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
@media (min-width: 1024px) { .menu-btn { display: none; } }
.menu-btn .burger {
  position: relative;
  display: flex;
  height: 20px;
  width: 28px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.menu-btn .burger span {
  height: 2px;
  width: 100%;
  background: var(--foreground);
  transition: all 300ms;
}
.menu-open .menu-btn .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-open .menu-btn .burger span:nth-child(2) { opacity: 0; }
.menu-open .menu-btn .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--ink);
  padding: 0 clamp(24px, 5vw, 40px);
}
.mobile-nav.open { display: flex; animation: kitFade 400ms ease; }
.mobile-nav .glow {
  right: -128px;
  top: 25%;
  height: 480px;
  width: 480px;
  filter: blur(120px);
  background: var(--glow-bright);
  opacity: 0.4;
}
.mobile-nav-list {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: var(--content-max);
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}
.mobile-nav-list a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.05;
  color: var(--foreground);
  font-size: clamp(2.5rem, 8vw, 5.5rem);
}
.mobile-nav-list a span {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: color-mix(in srgb, var(--brand-bright) 70%, transparent);
}

@keyframes kitFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes kitPulse { 0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.35; } 50% { transform: translate(-50%, -50%) scale(1.12); opacity: 0.55; } }

main { padding-top: 0; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.eyebrow .index {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-2xl);
  color: var(--brand-bright);
  line-height: 1;
}
.eyebrow .rule {
  height: 1px;
  width: 120px;
  background: var(--border);
}
.eyebrow.between .rule { flex: 1; width: auto; max-width: none; }
.eyebrow .caption {
  font-family: var(--font-sans);
  font-size: var(--text-eyebrow);
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  color: var(--muted-foreground);
  white-space: nowrap;
}

.heading {
  margin: 0;
  max-width: 64rem;
  font-family: var(--font-serif);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-heading);
  letter-spacing: var(--tracking-tight);
  color: var(--foreground);
  text-wrap: balance;
}
.heading.size-lg { font-size: clamp(2.25rem, 5vw, 4.5rem); }
.heading.size-md { font-size: clamp(1.875rem, 3.5vw, 3rem); }
.accent { font-style: italic; color: var(--brand-bright); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 2.25rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: var(--tracking-label);
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: transform 250ms var(--ease-out-expo), box-shadow 350ms ease, color 250ms ease, border-color 250ms ease, background 250ms ease;
}
.btn svg { transition: transform 300ms ease; }
.btn:hover svg { transform: translateX(4px); }
.btn:hover { transform: scale(1.04); }
.btn:active { transform: scale(0.97); }
.btn.solid {
  background: var(--brand-bright);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-cta);
}
.btn.solid:hover { box-shadow: var(--shadow-cta-hover); }
.btn.outline {
  background: transparent;
  color: var(--foreground);
  border-color: color-mix(in srgb, var(--foreground) 30%, transparent);
}
.btn.outline:hover { color: var(--brand-bright); border-color: var(--brand-bright); }
.btn.md { padding: 1rem 2rem; }
.btn.sm { padding: 0.75rem 1.5rem; font-size: 0.75rem; }

.card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--card) 40%, transparent);
  padding: clamp(2rem, 4vw, 3rem);
  transition: transform 500ms var(--ease-out-expo), border-color 500ms ease;
}
.card:hover { transform: translateY(-8px); border-color: color-mix(in srgb, var(--brand-bright) 50%, transparent); }
.card.accent {
  border-color: color-mix(in srgb, var(--brand-bright) 40%, transparent);
  background: var(--card);
  box-shadow: var(--shadow-card);
}
.card-glow {
  position: absolute;
  top: -4rem;
  right: -4rem;
  height: 12rem;
  width: 12rem;
  border-radius: 9999px;
  filter: blur(80px);
  background: var(--glow-bright);
  opacity: 0.5;
  pointer-events: none;
}

.compare-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--card) 40%, transparent);
  padding: clamp(2rem, 4vw, 3rem);
  transition: transform 500ms var(--ease-out-expo);
}
.compare-card:hover { transform: translateY(-8px); }
.compare-card.accent {
  border-color: color-mix(in srgb, var(--brand-bright) 40%, transparent);
  background: var(--card);
  box-shadow: var(--shadow-card);
}
.compare-card .tag {
  font-family: var(--font-sans);
  font-size: var(--text-eyebrow);
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--muted-foreground);
}
.compare-card.accent .tag { color: var(--brand-bright); }
.compare-card .title {
  margin: 0.75rem 0 0;
  font-family: var(--font-serif);
  font-weight: var(--weight-semibold);
  font-size: clamp(2.25rem, 4vw, 3rem);
  color: var(--foreground);
}
.compare-card ul {
  list-style: none;
  margin: 2rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.compare-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: var(--text-base);
  line-height: var(--leading-body);
  color: var(--muted-foreground);
}
.compare-card li::before {
  content: '';
  margin-top: 0.6rem;
  height: 0.25rem;
  width: 0.25rem;
  flex-shrink: 0;
  border-radius: 9999px;
  background: var(--muted-foreground);
}
.compare-card.accent li::before { background: var(--brand-bright); }

.profile-card {
  position: relative;
  height: 56vh;
  min-height: 460px;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
}
.profile-card img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transform: scale(1);
  transition: filter 700ms ease, transform 700ms var(--ease-out-expo);
}
.profile-card:hover img { filter: grayscale(0); transform: scale(1.05); }
.profile-card .scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--ink), color-mix(in srgb, var(--ink) 60%, transparent) 40%, color-mix(in srgb, var(--ink) 10%, transparent));
}
.profile-card .scrim-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 500ms ease;
  background: linear-gradient(to top, color-mix(in srgb, var(--brand-bright) 45%, transparent), transparent 60%);
}
.profile-card:hover .scrim-hover { opacity: 1; }
.profile-card .content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
}
.profile-card .number {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-lg);
  color: color-mix(in srgb, var(--foreground) 70%, transparent);
}
.profile-card h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: var(--weight-semibold);
  font-size: clamp(1.875rem, 3vw, 2.25rem);
  color: var(--foreground);
}
.profile-card .desc {
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  font-size: var(--text-sm);
  line-height: var(--leading-body);
  color: color-mix(in srgb, var(--foreground) 90%, transparent);
  transition: max-height 500ms ease, opacity 500ms ease, margin-top 500ms ease;
}
.profile-card:hover .desc { max-height: 10rem; opacity: 1; margin-top: 0.75rem; }

.service-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--card) 40%, transparent);
  padding: clamp(2rem, 4vw, 3rem);
  transition: transform 500ms var(--ease-out-expo), border-color 500ms ease;
}
.service-tile:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--brand-bright) 50%, transparent); }
.service-tile .top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}
.service-tile .number {
  font-family: var(--font-serif);
  font-weight: var(--weight-bold);
  font-size: clamp(3.75rem, 7vw, 6rem);
  line-height: 1;
  color: color-mix(in srgb, var(--foreground) 10%, transparent);
  transition: color 500ms ease;
}
.service-tile:hover .number { color: color-mix(in srgb, var(--brand-bright) 40%, transparent); }
.service-tile .dot {
  margin-top: 0.5rem;
  height: 0.5rem;
  width: 0.5rem;
  flex-shrink: 0;
  border-radius: 9999px;
  background: var(--brand-bright);
  opacity: 0;
  transition: opacity 500ms ease;
}
.service-tile:hover .dot { opacity: 1; }
.service-tile h3 {
  margin: 1.5rem 0 0;
  font-family: var(--font-serif);
  font-weight: var(--weight-semibold);
  font-size: var(--text-2xl);
  color: var(--foreground);
}
.service-tile p {
  margin: 1rem 0 0;
  max-width: 28rem;
  font-size: var(--text-base);
  line-height: var(--leading-body);
  color: var(--muted-foreground);
}

.tag-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  line-height: 1;
  white-space: nowrap;
}
.tag-chip.outline { background: transparent; color: var(--muted-foreground); border: 1px solid var(--border); }
.tag-chip.solid { background: var(--brand-bright); color: var(--primary-foreground); border: 1px solid transparent; }
.tag-chip.ghost { background: color-mix(in srgb, var(--brand-bright) 14%, transparent); color: var(--brand-bright); border: 1px solid color-mix(in srgb, var(--brand-bright) 30%, transparent); }

.field { display: flex; flex-direction: column; gap: 0.625rem; }
.field label {
  font-family: var(--font-sans);
  font-size: var(--text-eyebrow);
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-foreground);
}
.field input,
.field textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--input);
  color: var(--foreground);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.25;
  outline: none;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.field textarea { resize: vertical; }
.field input:focus,
.field textarea:focus {
  border-color: var(--ring);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--ring) 22%, transparent);
}

section.kit-section {
  position: relative;
  padding: var(--section-py) clamp(24px, 5vw, 40px);
  border-top: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
}
.inner { position: relative; margin: 0 auto; max-width: var(--content-max); }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 128px clamp(24px, 5vw, 40px) 96px;
}
.hero h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--foreground);
  font-size: clamp(3.2rem, 10vw, 11rem);
}
.hero-foot {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  margin-top: 48px;
}
@media (min-width: 768px) { .hero-foot { flex-direction: row; align-items: center; justify-content: space-between; } }
.hero-foot p { max-width: 440px; margin: 0; color: var(--muted-foreground); font-size: 18px; line-height: 1.625; text-wrap: balance; }

.page-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 200px clamp(24px, 5vw, 40px) 96px;
}
.page-hero h1 {
  margin: 0;
  max-width: 64rem;
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--foreground);
  font-size: clamp(3rem, 8vw, 6rem);
  text-wrap: balance;
}
.page-hero .intro { margin-top: 40px; max-width: 720px; color: var(--muted-foreground); font-size: 20px; line-height: 1.625; }

.kit-page { animation: kitPage 500ms var(--ease-out-expo); }
@keyframes kitPage { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.grid-2 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.bento { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) {
  .bento { grid-template-columns: repeat(12, 1fr); }
  .bento .span-7 { grid-column: span 7; }
  .bento .span-5 { grid-column: span 5; }
  .bento .span-6 { grid-column: span 6; }
  .bento .span-4 { grid-column: span 4; }
}

.andrea-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .andrea-grid { grid-template-columns: 5fr 7fr; gap: 64px; } }
.andrea-photo {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--border);
  min-height: 520px;
}
.andrea-photo img { position: absolute; inset: 0; height: 100%; width: 100%; object-fit: cover; }
.andrea-photo .scrim { position: absolute; inset: 0; background: linear-gradient(to top, color-mix(in srgb, var(--ink) 80%, transparent), transparent 60%); }
.andrea-photo .glow { bottom: -80px; left: -80px; height: 256px; width: 256px; filter: blur(100px); background: var(--glow-bright); opacity: 0.5; }
.andrea-label {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--brand-bright);
}
.andrea-facts {
  margin-top: 40px;
  display: grid;
  gap: 1px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
}
.andrea-facts.two-col { grid-template-columns: 1fr 1fr; }
@media (max-width: 640px) { .andrea-facts.two-col { grid-template-columns: 1fr; } }
.andrea-facts > div { background: color-mix(in srgb, var(--card) 40%, transparent); padding: 32px; }
.andrea-facts p.fact-title { margin: 0; font-family: var(--font-serif); font-size: 20px; font-weight: 600; color: var(--foreground); }
.andrea-facts p.fact-desc { margin: 8px 0 0; font-size: 14px; color: var(--muted-foreground); line-height: 1.6; }

.service-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  border-top: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
  padding: 48px 0;
  transition: background 400ms;
}
.service-row:hover { background: color-mix(in srgb, var(--card) 30%, transparent); }
@media (min-width: 768px) { .service-row { grid-template-columns: repeat(12, 1fr); gap: 48px; padding: 64px 0; } }
.service-row .index-num {
  grid-column: span 3;
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1;
  color: color-mix(in srgb, var(--foreground) 10%, transparent);
  font-size: clamp(3.75rem, 6vw, 6rem);
}
.service-row .body { grid-column: span 5; }
.service-row .body h3 { margin: 0; font-family: var(--font-serif); font-weight: 600; line-height: 1.1; color: var(--foreground); font-size: clamp(1.875rem, 3vw, 2.25rem); }
.service-row .body p { margin-top: 20px; max-width: 460px; color: var(--muted-foreground); font-size: 16px; line-height: 1.625; }
.service-row ul { grid-column: span 4; list-style: none; display: flex; flex-direction: column; gap: 16px; }
.service-row li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; line-height: 1.6; color: color-mix(in srgb, var(--foreground) 80%, transparent); }
.service-row li::before { content: ''; margin-top: 7px; height: 6px; width: 6px; flex-shrink: 0; border-radius: 50%; background: var(--brand-bright); }

.diag-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--brand-bright) 40%, transparent);
  background: var(--card);
  box-shadow: var(--shadow-card);
  padding: clamp(32px, 5vw, 64px);
}
.diag-card .glow { top: -64px; right: -64px; height: 192px; width: 192px; filter: blur(80px); background: var(--glow-bright); opacity: 0.45; }
.diag-card .tags { position: relative; display: flex; flex-wrap: wrap; gap: 10px; }
.diag-card h3 { position: relative; margin: 24px 0 0; font-family: var(--font-serif); font-weight: 600; font-size: clamp(2rem, 4vw, 3rem); color: var(--foreground); }
.diag-card p { position: relative; margin: 20px 0 0; max-width: 720px; color: var(--muted-foreground); font-size: 18px; line-height: 1.625; }
.diag-card .price-row { position: relative; margin-top: 32px; display: flex; flex-wrap: wrap; align-items: center; gap: 28px; }
.diag-card .price { font-family: var(--font-serif); font-weight: 700; font-size: 40px; color: var(--foreground); }

.depo-grid { columns: 1; column-gap: 24px; margin-top: 72px; }
@media (min-width: 720px) { .depo-grid { columns: 2; } }
@media (min-width: 1100px) { .depo-grid { columns: 3; } }
.depo-grid figure {
  margin: 0 0 24px;
  break-inside: avoid;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--card) 40%, transparent);
  padding: clamp(24px, 3vw, 36px);
}
.depo-grid .quote-mark {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: 56px;
  line-height: 0.6;
  color: color-mix(in srgb, var(--brand-bright) 45%, transparent);
}
.depo-grid blockquote { margin: 12px 0 0; font-family: var(--font-serif); font-size: clamp(1.05rem, 1.5vw, 1.25rem); line-height: 1.5; color: var(--foreground); }
.depo-grid figcaption { margin-top: 24px; display: flex; flex-direction: column; gap: 4px; }
.depo-grid figcaption .name { font-family: var(--font-sans); font-size: 14px; font-weight: 600; color: var(--foreground); }
.depo-grid figcaption .role { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-foreground); }

.cta-final {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.cta-final .glow { left: 50%; top: 50%; height: 800px; width: 800px; transform: translate(-50%, -50%); filter: blur(160px); background: var(--glow-bright); opacity: 0.4; animation: kitPulse 7s ease-in-out infinite; }
.cta-final .label { font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.3em; color: var(--brand-bright); }
.cta-final h2 { margin: 32px 0 0; font-family: var(--font-serif); font-weight: 700; line-height: 1.02; letter-spacing: -0.02em; color: var(--foreground); font-size: clamp(2.5rem, 7vw, 6rem); }
.cta-final p { margin: 28px auto 0; max-width: 620px; color: var(--muted-foreground); font-size: 17px; line-height: 1.625; }
.cta-final .inner { position: relative; margin: 0 auto; max-width: 980px; }
.cta-final .btn-wrap { margin-top: 48px; display: flex; justify-content: center; }

.post-grid article {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--card) 40%, transparent);
  padding: clamp(28px, 3vw, 40px);
  cursor: pointer;
  transition: border-color 400ms;
}
.post-grid article:hover { border-color: color-mix(in srgb, var(--brand-bright) 50%, transparent); }
.post-grid .post-top { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.post-grid .read-time { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-foreground); }
.post-grid h2 { margin: 0; font-family: var(--font-serif); font-weight: 600; font-size: clamp(1.5rem, 2.4vw, 2rem); line-height: 1.15; color: var(--foreground); }
.post-grid p { margin: 16px 0 0; max-width: 460px; color: var(--muted-foreground); font-size: 15px; line-height: 1.6; }
.post-grid .read-link { margin-top: 28px; display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.18em; color: var(--brand-bright); }

.contato-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 900px) { .contato-grid { grid-template-columns: 5fr 7fr; align-items: start; } }
.contato-label { margin: 0; font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.28em; color: var(--brand-bright); }
.contato-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  border-bottom: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
}
.contato-line .value { font-family: var(--font-serif); font-size: clamp(1.4rem, 2.4vw, 2rem); color: var(--foreground); transition: color 250ms; }
.contato-line:hover .value { color: var(--brand-bright); }
.contato-line .label { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted-foreground); }
.contato-line .arrow { font-size: 22px; color: var(--brand-bright); transition: transform 250ms; }
.contato-line:hover .arrow { transform: translate(4px, -4px); }
.contato-form { display: flex; flex-direction: column; gap: 24px; }
.form-status { margin-top: 16px; font-size: 14px; color: var(--brand-bright); display: none; }
.form-status.show { display: block; }

.produto-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--card) 40%, transparent);
  padding: clamp(28px, 3vw, 44px);
}
.produto-card.accent { border-color: color-mix(in srgb, var(--brand-bright) 40%, transparent); background: var(--card); box-shadow: var(--shadow-card); }
.produto-card .glow { top: -64px; right: -64px; height: 192px; width: 192px; filter: blur(80px); background: var(--glow-bright); opacity: 0.4; }
.produto-card .body { position: relative; display: flex; flex-direction: column; flex: 1; }
.produto-card .eyebrow-tag { font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.24em; color: var(--muted-foreground); }
.produto-card.accent .eyebrow-tag { color: var(--brand-bright); }
.produto-card h3 { margin: 14px 0 0; font-family: var(--font-serif); font-weight: 600; font-size: clamp(1.75rem, 3vw, 2.5rem); color: var(--foreground); }
.produto-card p { margin: 18px 0 0; color: var(--muted-foreground); font-size: 16px; line-height: 1.625; }
.produto-card .foot { margin-top: auto; padding-top: 28px; display: flex; flex-direction: column; gap: 20px; }
.produto-card .meta { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--foreground); }

.prod-hero { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 900px) { .prod-hero { grid-template-columns: 1.1fr 0.9fr; gap: 64px; } }
.prod-hero img { width: 100%; max-width: 520px; height: auto; filter: drop-shadow(0 40px 80px rgba(0,0,0,0.55)); }

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

.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
  background: var(--ink);
  padding: 96px clamp(24px, 5vw, 40px) 48px;
}
.site-footer .glow { left: -128px; top: 0; height: 400px; width: 400px; filter: blur(140px); background: var(--glow-brand); opacity: 0.2; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 48px; border-bottom: 1px solid color-mix(in srgb, var(--border) 60%, transparent); padding-bottom: 64px; }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 5fr 7fr; } }
.footer-about { max-width: 380px; }
.footer-about p { margin-top: 20px; color: var(--muted-foreground); font-size: 16px; line-height: 1.625; }
.footer-about a.email { margin-top: 28px; display: inline-flex; font-family: var(--font-serif); font-style: italic; font-size: 24px; color: var(--foreground); }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (min-width: 640px) { .footer-cols { grid-template-columns: repeat(3, 1fr); } }
.footer-cols .col-title { font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted-foreground); margin: 0; }
.footer-cols ul { list-style: none; margin: 20px 0 0; display: flex; flex-direction: column; gap: 12px; }
.footer-cols li a { font-size: 14px; color: color-mix(in srgb, var(--foreground) 80%, transparent); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; padding-top: 32px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted-foreground); }

@media (max-width: 767px) {
  .bento .span-7, .bento .span-5, .bento .span-6, .bento .span-4 { grid-column: auto; }
}

.article-content { max-width: 720px; color: var(--muted-foreground); font-size: 18px; line-height: 1.75; }
.article-content h2 { margin: 56px 0 20px; font-family: var(--font-serif); font-weight: 600; font-size: clamp(1.5rem, 3vw, 2.125rem); line-height: 1.2; color: var(--foreground); }
.article-content h3 { margin: 36px 0 16px; font-family: var(--font-serif); font-weight: 600; font-size: 1.25rem; color: var(--foreground); }
.article-content p { margin: 0 0 20px; }
.article-content ul { margin: 0 0 20px; padding-left: 22px; list-style: disc; display: flex; flex-direction: column; gap: 8px; }
.article-content strong { color: var(--foreground); }
.article-content img.article-figure { width: 100%; max-width: 480px; border-radius: 16px; margin: 8px 0 40px; box-shadow: var(--shadow-card); }
.also-read { margin: 48px 0; color: var(--muted-foreground); font-size: 15px; }
.also-read a { color: var(--brand-bright); }
