/* ============================================================
   ALATLI — Aura-inspired design system (vanilla CSS, light + dark)
   - Tokens: shadcn-style HSL CSS variables on :root and .dark
   - Typography: Inter base (with stylistic sets + tracking) +
     Instrument Serif italic for editorial moments + Manrope display
   - No utility framework. Semantic, isolated, no global resets bleed.
   ============================================================ */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Instrument+Serif:ital,wght@0,400;1,400&family=Manrope:wght@400;500;600;700&display=swap');

/* ---------- Tokens (light) ---------- */
:root {
  --background: 0 0% 100%;
  --foreground: 0 0% 9%;
  --card: 0 0% 98%;
  --card-foreground: 0 0% 9%;
  --primary: 0 0% 9%;
  --primary-foreground: 0 0% 98%;
  --secondary: 0 0% 96%;
  --secondary-foreground: 0 0% 9%;
  --muted: 0 0% 96%;
  --muted-foreground: 0 0% 45%;
  --accent: 0 0% 96%;
  --border: 0 0% 90%;
  --input: 0 0% 90%;
  --ring: 0 0% 20%;
  --destructive: 0 84% 60%;
  --destructive-foreground: 0 0% 98%;

  /* brand accents */
  --accent-lime: #a6ff3f;
  --accent-blue: #2563eb;

  /* surfaces */
  --surface-soft: linear-gradient(180deg, #fff, #f7f7f9 42%, #f2f2f5);
  --surface-grid-line: #ececec;
  --hairline: #d8d8d0;
  --editorial-bg: #fdfdf9;

  /* radii */
  --radius: 0.5rem;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --pill: 9999px;

  /* shadows */
  --shadow-card: 0 1px 1px #00000008, 0 0 2px #0000001a, 0 5px 5px #00000008;
  --shadow-cta: 0 1px #0000000d, 0 4px 4px #0000001a, 0 10px 10px #00000026, inset 0 -1px #0000001a;
  --shadow-modal: 0 5px 10px #0000000d, 0 15px 30px #00000026, 0 20px 40px #00000040, inset 0 -1px #0000001a;
}

/* ---------- Tokens (dark) ---------- */
html.dark {
  --background: 0 0% 9%;
  --foreground: 0 0% 98%;
  --card: 0 0% 11%;
  --card-foreground: 0 0% 98%;
  --primary: 0 0% 98%;
  --primary-foreground: 0 0% 9%;
  --secondary: 0 0% 13%;
  --secondary-foreground: 0 0% 98%;
  --muted: 0 0% 13%;
  --muted-foreground: 0 0% 65%;
  --accent: 0 0% 13%;
  --border: 0 0% 20%;
  --input: 0 0% 20%;
  --ring: 0 0% 80%;
  --destructive: 0 63% 31%;

  --surface-soft: linear-gradient(180deg, #0a0a0c, #0d0d10 40%, #060608);
  --surface-grid-line: #1f1f1f;
  --hairline: #2a2a2a;
  --editorial-bg: #0f0f10;

  --shadow-card: 0 1px 1px #00000040, 0 0 2px #00000066, 0 5px 5px #00000033;
  --shadow-modal: 0 5px 10px #00000066, 0 15px 30px #00000099, 0 20px 40px #000000cc, inset 0 1px #ffffff0f;
}

/* ---------- Base ---------- */
html.aura {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
}
html.aura body {
  margin: 0;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: 'Inter', sans-serif;
  font-feature-settings: "salt", "ss01", "ss02", "rlig" 1, "calt" 1;
  letter-spacing: -0.01em;
  line-height: 1.5;
  min-height: 100vh;
  transition: background-color 0.3s ease, color 0.3s ease;
}
html.aura *,
html.aura *::before,
html.aura *::after { box-sizing: border-box; }
html.aura img, html.aura svg { display: block; max-width: 100%; }
html.aura a { color: inherit; text-decoration: none; }
html.aura button {
  font-family: inherit;
  font-feature-settings: inherit;
  letter-spacing: inherit;
  cursor: pointer;
  border: 0;
  background: transparent;
  color: inherit;
}
html.aura ::selection { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); }

.aura-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .aura-container { padding: 0 32px; } }
@media (min-width: 1024px) { .aura-container { padding: 0 40px; } }

/* ---------- Header (floating pill) ---------- */
.aura-header {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: calc(100% - 24px);
  max-width: 1100px;
  border-radius: 9999px;
  background: hsla(var(--background) / 0.72);
  border: 1px solid hsla(var(--border) / 0.7);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0 1px 1px hsla(0, 0%, 0%, 0.03), 0 8px 24px hsla(0, 0%, 0%, 0.06);
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
html.dark .aura-header {
  background: hsla(var(--background) / 0.6);
  border-color: hsla(var(--border) / 0.6);
  box-shadow: 0 1px 1px hsla(0, 0%, 0%, 0.4), 0 8px 24px hsla(0, 0%, 0%, 0.3);
}
.aura-header-inner {
  height: 56px;
  padding: 0 10px 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
/* Push page content below the fixed header */
body { padding-top: 84px; }
@media (max-width: 600px) {
  .aura-header { top: 10px; width: calc(100% - 16px); }
  body { padding-top: 76px; }
}
.aura-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: hsl(var(--foreground));
}
.aura-logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  background: transparent;
}
.aura-nav {
  display: none;
  gap: 28px;
  align-items: center;
}
@media (min-width: 768px) { .aura-nav { display: inline-flex; } }
.aura-nav-link {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: hsla(var(--foreground) / 0.32);
  transition: color 0.2s ease;
}
.aura-nav-link:hover { color: hsl(var(--foreground)); }

.aura-header-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ---------- Toggles (theme + lang) ---------- */
.aura-icon-btn {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--pill);
  border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground));
  background: transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.aura-icon-btn:hover {
  background: hsl(var(--muted));
}
.aura-icon-btn:active { transform: scale(0.96); }
.aura-icon-btn svg { width: 16px; height: 16px; }
.aura-icon-btn .sun { display: none; }
html.dark .aura-icon-btn .sun { display: inline; }
html.dark .aura-icon-btn .moon { display: none; }

.aura-lang-btn {
  height: 36px;
  padding: 0 12px;
  border-radius: var(--pill);
  border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground));
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.aura-lang-btn:hover { background: hsl(var(--muted)); }

/* ---------- Buttons (refined) ---------- */
.aura-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 42px;
  padding: 0 20px;
  border-radius: var(--pill);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.2s ease,
              border-color 0.2s ease,
              box-shadow 0.25s ease,
              color 0.2s ease;
}
.aura-btn:active { transform: translateY(0) scale(0.985); }

/* Primary — filled pill with subtle lift */
.aura-btn-primary {
  background: hsl(var(--foreground));
  color: hsl(var(--background));
  box-shadow:
    0 1px 2px hsla(0, 0%, 0%, 0.06),
    0 4px 14px hsla(0, 0%, 0%, 0.08),
    inset 0 1px 0 hsla(0, 0%, 100%, 0.08);
}
.aura-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 2px 4px hsla(0, 0%, 0%, 0.08),
    0 10px 22px hsla(0, 0%, 0%, 0.12),
    inset 0 1px 0 hsla(0, 0%, 100%, 0.10);
}
html.dark .aura-btn-primary {
  box-shadow:
    0 1px 2px hsla(0, 0%, 0%, 0.4),
    0 4px 14px hsla(0, 0%, 0%, 0.3),
    inset 0 1px 0 hsla(0, 0%, 100%, 0.06);
}
html.dark .aura-btn-primary:hover {
  box-shadow:
    0 2px 4px hsla(0, 0%, 0%, 0.5),
    0 10px 22px hsla(0, 0%, 0%, 0.4),
    inset 0 1px 0 hsla(0, 0%, 100%, 0.08);
}

/* Outline — glassy with subtle border */
.aura-btn-outline {
  background: hsla(var(--background) / 0.55);
  color: hsl(var(--foreground));
  border-color: hsl(var(--border));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.aura-btn-outline:hover {
  transform: translateY(-1px);
  background: hsl(var(--card));
  border-color: hsla(var(--foreground) / 0.18);
}

/* Ghost — minimal, text-only with hover surface */
.aura-btn-ghost {
  background: transparent;
  color: hsla(var(--foreground) / 0.75);
}
.aura-btn-ghost:hover {
  color: hsl(var(--foreground));
  background: hsla(var(--foreground) / 0.05);
}

/* Sizes */
.aura-btn-lg { height: 50px; padding: 0 26px; font-size: 14.5px; }

/* ---------- Eyebrow chip ---------- */
.aura-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  border-radius: var(--pill);
  color: hsl(var(--muted-foreground));
}
.aura-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-lime);
  box-shadow: 0 0 0 4px hsla(81, 100%, 62%, 0.18);
}

/* ---------- Hero ---------- */
.aura-hero {
  position: relative;
  padding: 64px 0 64px;
  overflow: hidden;
}
@media (min-width: 768px) { .aura-hero { padding: 96px 0 80px; } }
.aura-hero-grid { display: none; }

/* Hero decorative background screenshot */
.aura-hero-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(720px, 92vw, 1280px);
  height: auto;
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  filter: contrast(1.05) saturate(0.8);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 35%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 35%, transparent 80%);
}
html.dark .aura-hero-bg {
  opacity: 0.16;
  filter: contrast(1.1) saturate(0.7);
}
.aura-hero-inner { z-index: 1; }
.aura-hero-inner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.aura-h1 {
  margin: 22px 0 0;
  font-size: clamp(44px, 8vw, 96px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: hsl(var(--foreground));
  text-wrap: balance;
}
.aura-h1 .italic {
  font-family: 'Instrument Serif', 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  color: hsl(var(--muted-foreground));
  letter-spacing: -0.015em;
}
.aura-lead {
  max-width: 620px;
  margin: 24px auto 0;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.6;
  color: hsl(var(--muted-foreground));
  text-wrap: pretty;
}
@media (min-width: 768px) { .aura-lead { font-size: 19px; } }
.aura-cta-row {
  margin-top: 36px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(8px); filter: blur(6px); transition: opacity 0.9s ease, transform 0.9s ease, filter 0.9s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); filter: blur(0); }
.reveal:nth-child(1) { transition-delay: 0.05s; }
.reveal:nth-child(2) { transition-delay: 0.15s; }
.reveal:nth-child(3) { transition-delay: 0.25s; }
.reveal:nth-child(4) { transition-delay: 0.35s; }

/* ---------- Section base ---------- */
.aura-section {
  padding: 80px 0;
}
@media (min-width: 768px) { .aura-section { padding: 120px 0; } }
.aura-section-head { max-width: 760px; margin: 0 0 56px; }
.aura-section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.aura-h2 {
  margin: 14px 0 0;
  font-size: clamp(32px, 5.5vw, 60px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: hsl(var(--foreground));
  text-wrap: balance;
}
.aura-h2 .italic {
  font-family: 'Instrument Serif', 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: hsl(var(--muted-foreground));
}
.aura-section-lead {
  margin: 16px 0 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  color: hsl(var(--muted-foreground));
  max-width: 540px;
}

/* ---------- Services (hairline grid, 2x3 on desktop) ---------- */
.aura-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: hsl(var(--border));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (min-width: 700px) { .aura-services { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .aura-services { grid-template-columns: repeat(3, 1fr); } }
.aura-service {
  background: hsl(var(--background));
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background-color 0.25s ease;
}
.aura-service:hover { background: hsl(var(--card)); }
.aura-service-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: hsl(var(--muted));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--foreground));
  font-weight: 700;
  font-size: 14px;
}
.aura-service-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 6px 0 0;
  color: hsl(var(--foreground));
}
.aura-service-text {
  font-size: 14.5px;
  line-height: 1.65;
  color: hsl(var(--muted-foreground));
  margin: 0;
}
.aura-service-meta {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground) / 0.7);
}

/* ---------- Work grid (mobile-screenshot portrait cards) ---------- */
.aura-work {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 700px) { .aura-work { grid-template-columns: repeat(4, 1fr); gap: 28px; } }
.aura-work {
  align-items: start;
}
.aura-work-card {
  position: relative;
  display: block;
  background: transparent;
  border: 0;
  border-radius: 22px;
  overflow: visible;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
  padding: 0;
}
.aura-work-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  filter:
    drop-shadow(0 10px 24px hsla(0, 0%, 0%, 0.10))
    drop-shadow(0 2px 6px hsla(0, 0%, 0%, 0.05));
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1), filter 0.3s ease;
}
html.dark .aura-work-card img {
  filter:
    drop-shadow(0 10px 24px hsla(0, 0%, 0%, 0.22))
    drop-shadow(0 2px 6px hsla(0, 0%, 0%, 0.14));
}
.aura-work-card:hover { transform: translateY(-6px); }
.aura-work-card:hover img {
  filter:
    drop-shadow(0 16px 32px hsla(0, 0%, 0%, 0.14))
    drop-shadow(0 4px 10px hsla(0, 0%, 0%, 0.07));
}
html.dark .aura-work-card:hover img {
  filter:
    drop-shadow(0 16px 32px hsla(0, 0%, 0%, 0.3))
    drop-shadow(0 4px 10px hsla(0, 0%, 0%, 0.18));
}

/* Hover overlay — pinned to image silhouette */
.aura-work-card .aura-work-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px 18px;
  color: #fff;
  border-radius: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.55) 85%, rgba(0,0,0,0.82) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.aura-work-card:hover .aura-work-overlay { opacity: 1; }
.aura-work-card .aura-work-overlay span {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.aura-work-card .aura-work-overlay strong {
  margin-top: 4px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* ---------- Pricing ---------- */
.aura-pricing-tabs {
  display: inline-flex;
  padding: 4px;
  margin: 0 auto 36px;
  border-radius: var(--pill);
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-card);
}
.aura-pricing-tab {
  padding: 8px 22px;
  border-radius: var(--pill);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: hsla(var(--foreground) / 0.6);
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.25s ease;
}
.aura-pricing-tab:hover { color: hsl(var(--foreground)); }
.aura-pricing-tab.is-active {
  background: hsl(var(--foreground));
  color: hsl(var(--background));
}

.aura-pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 800px) { .aura-pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.aura-pricing-card {
  position: relative;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-xl);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), border-color 0.25s ease, box-shadow 0.3s ease;
}
.aura-pricing-card:hover {
  transform: translateY(-3px);
  border-color: hsla(var(--foreground) / 0.18);
  box-shadow: var(--shadow-card);
}
.aura-pricing-card.is-featured {
  border-color: hsla(var(--foreground) / 0.22);
  background:
    linear-gradient(180deg, hsl(var(--card)), hsl(var(--background))),
    radial-gradient(circle at 100% 0%, hsla(81, 100%, 62%, 0.08), transparent 50%);
}
.aura-pricing-card .feature-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(var(--foreground));
  padding: 4px 10px;
  border-radius: var(--pill);
  background: hsla(var(--foreground) / 0.06);
  border: 1px solid hsla(var(--foreground) / 0.1);
}
.aura-pricing-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
}
.aura-pricing-title {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.018em;
  color: hsl(var(--foreground));
  line-height: 1.2;
}
.aura-pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 4px;
}
.aura-pricing-price .num {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
  color: hsl(var(--foreground));
}
.aura-pricing-price .per {
  font-size: 13px;
  color: hsl(var(--muted-foreground));
}
.aura-pricing[data-active-tier="customer"] [data-tier="agency"] { display: none; }
.aura-pricing[data-active-tier="agency"] [data-tier="customer"] { display: none; }
.aura-pricing-features {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.aura-pricing-features li {
  display: flex;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.5;
  color: hsla(var(--foreground) / 0.78);
}
.aura-pricing-features li::before {
  content: '';
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  margin-top: 5px;
  border-radius: 50%;
  background:
    hsla(var(--foreground) / 0.05) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M2.5 6.2 5 8.5l4.5-5'/></svg>") center / 9px no-repeat;
  border: 1px solid hsla(var(--foreground) / 0.1);
}
html.dark .aura-pricing-features li::before {
  background:
    hsla(var(--foreground) / 0.05) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M2.5 6.2 5 8.5l4.5-5'/></svg>") center / 9px no-repeat;
}
.aura-pricing-cta { margin-top: 8px; }

.aura-pricing-table {
  margin-top: 40px;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: hsl(var(--card));
}
.aura-pricing-table-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1px;
  background: hsl(var(--border));
}
.aura-pricing-table-head > div {
  background: hsl(var(--background));
  padding: 14px 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
}
.aura-pricing-table-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1px;
  background: hsl(var(--border));
  border-top: 1px solid hsl(var(--border));
}
.aura-pricing-table-row > div {
  background: hsl(var(--card));
  padding: 16px 20px;
  font-size: 14px;
  color: hsl(var(--foreground));
}
.aura-pricing-table-row > div:first-child { color: hsl(var(--muted-foreground)); }
.aura-pricing-table-row .price { font-variant-numeric: tabular-nums; font-weight: 500; }
.aura-pricing-foot {
  margin-top: 20px;
  font-size: 12.5px;
  color: hsl(var(--muted-foreground));
  text-align: center;
}

/* ---------- Tech stack marquee ---------- */
.aura-marquee {
  position: relative;
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid hsl(var(--border));
  border-bottom: 1px solid hsl(var(--border));
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.aura-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  animation: marquee-scroll 55s linear infinite;
  will-change: transform;
}
.aura-marquee:hover .aura-marquee-track { animation-play-state: paused; }
.aura-marquee-item {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(26px, 4vw, 48px);
  letter-spacing: -0.02em;
  color: hsl(var(--muted-foreground));
}
.aura-marquee-item.bold {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 600;
  color: hsl(var(--foreground));
}
.aura-marquee-item .sep {
  display: inline-block;
  margin-left: 40px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: hsl(var(--muted-foreground) / 0.35);
  vertical-align: middle;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- About ---------- */
.aura-about {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) { .aura-about { grid-template-columns: 1.1fr 1fr; gap: 80px; } }
.aura-about-portrait {
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, hsl(var(--card)), hsl(var(--muted)));
  border: 1px solid hsl(var(--border));
  overflow: hidden;
  position: relative;
}
.aura-about-portrait::after {
  content: 'A';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(120px, 18vw, 220px);
  color: hsl(var(--muted-foreground) / 0.35);
}

/* ---------- Closing CTA ---------- */
.aura-cta {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 64px 32px;
  text-align: center;
  background: var(--surface-soft);
  border: 1px solid hsl(var(--border));
  overflow: hidden;
}
.aura-cta::before {
  content: '';
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(circle at 20% 10%, hsla(81, 100%, 62%, 0.22), transparent 40%),
    radial-gradient(circle at 80% 90%, hsla(221, 83%, 53%, 0.18), transparent 45%);
  pointer-events: none;
}
html.dark .aura-cta::before {
  background:
    radial-gradient(circle at 20% 10%, hsla(81, 100%, 62%, 0.12), transparent 40%),
    radial-gradient(circle at 80% 90%, hsla(221, 83%, 53%, 0.16), transparent 45%);
}
.aura-cta > * { position: relative; }

/* ---------- Footer ---------- */
.aura-footer {
  padding: 56px 0 40px;
  border-top: 1px solid hsl(var(--border));
  background: hsl(var(--background));
}
.aura-footer-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .aura-footer-grid { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.aura-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13px;
  color: hsl(var(--muted-foreground));
}
.aura-footer-links a:hover { color: hsl(var(--foreground)); }
.aura-footer-bottom {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 12px;
  color: hsl(var(--muted-foreground));
}

/* ============================================================
   MODAL — Aura-styled overlay for the existing Get Offer flow
   IDs/classes (offerModal, offerForm, .modal-submit-btn, etc.)
   match the original markup so js/modal.js keeps working.
   ============================================================ */

html.aura .modal-overlay,
html.aura .success-modal-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: hsla(0, 0%, 0%, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 100;
  padding: 16px;
}
html.aura .modal-overlay.active,
html.aura .success-modal-overlay.active { opacity: 1; }

html.aura .modal-container,
html.aura .success-modal-container {
  width: 100%;
  max-width: 520px;
  max-height: calc(100vh - 32px);
  overflow: auto;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  border-radius: var(--radius-xl);
  border: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-modal);
  transform: translateY(12px) scale(0.98);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}
html.aura .modal-overlay.active .modal-container,
html.aura .success-modal-overlay.active .success-modal-container {
  transform: translateY(0) scale(1);
  opacity: 1;
}

html.aura .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px 0;
}
html.aura .modal-header h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
html.aura .modal-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: hsl(var(--muted-foreground));
  font-size: 22px;
  line-height: 1;
  transition: background-color 0.2s ease, color 0.2s ease;
}
html.aura .modal-close:hover {
  background: hsl(var(--muted));
  color: hsl(var(--foreground));
}

html.aura .modal-form { padding: 20px 28px 28px; display: flex; flex-direction: column; gap: 14px; }
html.aura .form-group { display: flex; flex-direction: column; gap: 6px; }
html.aura .form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
}
html.aura .form-group input,
html.aura .form-group select,
html.aura .form-group textarea {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--input));
  background: hsl(var(--card));
  color: hsl(var(--foreground));
  font-family: inherit;
  font-size: 14px;
  letter-spacing: -0.005em;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
html.aura .form-group textarea { height: auto; min-height: 110px; padding: 12px 14px; resize: vertical; }
html.aura .form-group input:focus,
html.aura .form-group select:focus,
html.aura .form-group textarea:focus {
  outline: none;
  border-color: hsl(var(--ring));
  box-shadow: 0 0 0 3px hsla(var(--ring) / 0.18);
}
html.aura .form-group input::placeholder,
html.aura .form-group textarea::placeholder {
  color: hsl(var(--muted-foreground) / 0.7);
}
html.aura .modal-submit-btn {
  margin-top: 6px;
  height: 48px;
  border-radius: var(--pill);
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease, transform 0.18s ease;
  box-shadow: var(--shadow-cta);
}
html.aura .modal-submit-btn:hover { background: hsl(var(--foreground) / 0.88); }
html.aura .modal-submit-btn:active { transform: scale(0.99); }

html.aura .success-modal-container {
  padding: 36px 28px 32px;
  text-align: center;
  max-width: 420px;
}
html.aura .success-icon { display: flex; justify-content: center; margin-bottom: 16px; }
html.aura .success-title {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
html.aura .success-message {
  margin: 0 0 22px;
  color: hsl(var(--muted-foreground));
  font-size: 14.5px;
  line-height: 1.55;
}
html.aura .success-btn {
  height: 44px;
  padding: 0 22px;
  border-radius: var(--pill);
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.18s ease;
}
html.aura .success-btn:hover { background: hsl(var(--foreground) / 0.88); }

/* ---------- Override conflicting legacy styles when this stylesheet is loaded ---------- */
html.aura .mobilbosluk,
html.aura .hamburger-menu,
html.aura .sadecemobile { display: none !important; }

/* Mobile spacing */
@media (max-width: 767px) {
  .aura-hero { padding: 56px 0 48px; }
  .aura-section { padding: 56px 0; }
  .aura-cta { padding: 48px 22px; }
}
