/* ==========================================================================
   DayWell marketing site — tokens mirror src/styles.css (the app's theme)
   so daywell.co.uk and app.daywell.co.uk feel like one product.
   ========================================================================== */

:root {
  --radius: 0.875rem;

  /* Hex fallbacks first (older browsers keep these), oklch overrides after —
     values match the app's :root tokens in src/styles.css exactly. */
  --background: #fcfaf4;
  --background: oklch(0.985 0.008 90);
  --foreground: #121e17;
  --foreground: oklch(0.22 0.02 160);
  --card: #ffffff;
  --card: oklch(1 0 0);
  --primary: #224c37;
  --primary: oklch(0.38 0.06 160);
  --primary-foreground: #fcfaf4;
  --primary-foreground: oklch(0.985 0.008 90);
  --secondary: #ecedde;
  --secondary: oklch(0.94 0.02 110);
  --secondary-foreground: #1b2e24;
  --secondary-foreground: oklch(0.28 0.03 160);
  --muted: #f2f0e7;
  --muted: oklch(0.955 0.012 100);
  --muted-foreground: #566158;
  --muted-foreground: oklch(0.48 0.02 150);
  --accent: #b3ddc0;
  --accent: oklch(0.86 0.06 155);
  --accent-foreground: #0e271b;
  --accent-foreground: oklch(0.25 0.04 160);
  --success: #5bac7a;
  --success: oklch(0.68 0.11 155);
  --border: #e0ded3;
  --border: oklch(0.9 0.015 100);

  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Instrument Serif", ui-serif, Georgia, serif;

  --shadow-soft: 0 1px 2px rgba(18, 30, 23, 0.04), 0 12px 32px -16px rgba(18, 30, 23, 0.18);
  --shadow-lift: 0 2px 4px rgba(18, 30, 23, 0.05), 0 24px 48px -20px rgba(18, 30, 23, 0.28);

  --container: 1160px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -0.015em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; padding: 0; }
svg { display: block; flex-shrink: 0; }

em {
  font-style: italic;
  font-family: var(--font-display);
  color: var(--primary);
}

.wrap {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius) 0;
  z-index: 200;
}
.skip-link:focus { left: 0; }

section { overflow: hidden; }

/* ---------- Scroll reveal ----------
   Content is fully visible by default (no CSS opacity:0 gate) so it never
   depends on JS running — no-JS, slow JS, print and share previews all see
   the full page. script.js applies the hidden starting state itself, only
   for elements it can guarantee it will also reveal. */
.reveal { transition: opacity 0.6s ease, transform 0.6s ease; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: calc(var(--radius) - 2px);
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-lift); }
.btn-outline {
  background: var(--card);
  color: var(--foreground);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--primary); transform: translateY(-1px); }
.btn-ghost { color: var(--foreground); }
.btn-ghost:hover { color: var(--primary); }
.btn-lg { padding: 0.875rem 1.75rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--background) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 4rem;
}
.brand { display: inline-flex; align-items: center; gap: 0.5rem; }
.brand-mark { border-radius: 8px; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--primary);
  letter-spacing: -0.01em;
}
.nav { display: none; }
.header-cta { display: none; }

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
}
.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--foreground);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  max-height: 0;
  overflow: hidden;
  border-top: 1px solid transparent;
  background: var(--background);
  transition: max-height 0.3s ease;
}
.mobile-nav.open { max-height: 24rem; border-top-color: var(--border); }
.mobile-nav a {
  display: block;
  padding: 0.9rem 1.25rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-cta {
  display: flex;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
}
.mobile-nav-cta .btn { flex: 1; }

@media (min-width: 900px) {
  .nav { display: flex; gap: 2rem; font-weight: 500; font-size: 0.9375rem; }
  .nav a:hover { color: var(--primary); }
  .header-cta { display: flex; align-items: center; gap: 0.75rem; }
  .menu-toggle, .mobile-nav { display: none; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding: 3rem 0 4rem; }
.hero-glow {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 32rem;
  background: radial-gradient(60% 60% at 50% 0%, var(--accent) 0%, transparent 70%);
  opacity: 0.5;
  filter: blur(40px);
  z-index: -1;
}
.hero-inner { display: flex; flex-direction: column; gap: 2.5rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--primary);
  background: var(--accent);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 7vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--foreground);
  max-width: 18ch;
}
.hero-sub {
  margin-top: 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--muted-foreground);
  max-width: 42ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}
.hero-note {
  margin-top: 1.1rem;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
}

/* Hero visual: stylised, non-literal UI mockup built from CSS shapes */
.hero-visual {
  position: relative;
  min-height: 320px;
}
.mock-window--main {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
}
.mock-window-bar {
  display: flex;
  gap: 6px;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid var(--border);
}
.mock-window-bar span { width: 9px; height: 9px; border-radius: 50%; background: var(--border); }
.mock-window-body { display: flex; }
.mock-sidebar {
  width: 3rem;
  background: var(--secondary);
  padding: 0.9rem 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.mock-side-item { display: block; height: 8px; border-radius: 4px; background: var(--border); }
.mock-side-item.active { background: var(--primary); }
.mock-content { flex: 1; padding: 1.1rem 1.2rem 1.4rem; display: flex; flex-direction: column; gap: 0.6rem; }
.mock-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; margin-top: 0.5rem; }
.mock-tile { height: 3.2rem; border-radius: 8px; background: var(--muted); border: 1px solid var(--border); }
.mock-tile--accent { background: var(--accent); border-color: transparent; }

.mock-line { display: block; height: 8px; border-radius: 4px; background: var(--border); }
.mock-line--sm { width: 40%; }
.mock-line--md { width: 65%; }
.mock-line--lg { width: 85%; height: 11px; }
.mock-line--muted { background: var(--muted); }

.mock-row { display: flex; align-items: center; gap: 0.55rem; }
.mock-check {
  width: 15px; height: 15px; border-radius: 5px;
  border: 1.6px solid var(--border);
  flex-shrink: 0;
}
.mock-check--done { background: var(--success); border-color: var(--success); }

.mock-dot { width: 8px; height: 8px; border-radius: 50%; }
.mock-dot--accent { background: var(--success); }

.mock-window--float-1, .mock-window--float-2 {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) - 2px);
  box-shadow: var(--shadow-lift);
  padding: 0.85rem;
  width: 11.5rem;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}
.mock-window--float-1 { top: -1.2rem; right: 1rem; }
.mock-window--float-2 { bottom: -1.5rem; left: -0.5rem; animation-delay: -3s; }
.mock-card { display: flex; flex-direction: column; gap: 0.55rem; }
.mock-card-head { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.15rem; }

.mock-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.mock-cal-grid span { aspect-ratio: 1; border-radius: 4px; background: var(--muted); }
.mock-cal-grid span.on { background: var(--primary); }
.mock-cal-grid span.on.soft { background: var(--accent); }
.mock-cal-grid--big span { border-radius: 3px; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@media (prefers-reduced-motion: reduce) {
  .mock-window--float-1, .mock-window--float-2 { animation: none; }
}

@media (min-width: 900px) {
  .hero-inner { flex-direction: row; align-items: center; gap: 3rem; padding-top: 1.5rem; }
  .hero-copy { flex: 1; }
  .hero-visual { flex: 1; }
}

/* ---------- Trust strip ---------- */
.trust-strip { padding: 1rem 0 2.5rem; }
.trust-inner p {
  text-align: center;
  color: var(--muted-foreground);
  font-size: 0.95rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

/* ---------- Section headings ---------- */
.section-head { max-width: 46ch; margin-bottom: 2.5rem; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.875rem, 4.5vw, 2.5rem);
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-top: 0.75rem;
}
.section-head p { margin-top: 0.85rem; color: var(--muted-foreground); font-size: 1.0625rem; }

/* ---------- Features ---------- */
.features { padding: 4rem 0; }
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-soft);
}
.feature-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 10px;
  background: var(--accent);
  color: var(--accent-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.feature-card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.feature-card p { color: var(--muted-foreground); font-size: 0.9375rem; line-height: 1.55; }

.feature-card--highlight {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
  position: relative;
}
.feature-card--highlight p { color: color-mix(in srgb, var(--primary-foreground) 78%, transparent); }
.feature-icon--on-dark { background: color-mix(in srgb, var(--primary-foreground) 16%, transparent); color: var(--primary-foreground); }
.badge {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: color-mix(in srgb, var(--primary-foreground) 18%, transparent);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}

@media (min-width: 640px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .card-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Screenshots ---------- */
.screens { padding: 4rem 0; background: var(--muted); }
.screen-tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  margin-bottom: 1.75rem;
}
.screen-tab {
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted-foreground);
  background: var(--card);
  border: 1px solid var(--border);
  white-space: nowrap;
}
.screen-tab.active { background: var(--primary); color: var(--primary-foreground); border-color: var(--primary); }

.screen-panel { display: none; }
.screen-panel.active { display: block; }

.browser-frame {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  background: var(--secondary);
}
.browser-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--border); }
.browser-url {
  margin-left: 0.75rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  background: var(--card);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
}

/* Real product screenshots: object-fit: cover keeps a consistent frame size
   across tabs regardless of each screenshot's native resolution, cropping
   from the top edge (never distorting) rather than the more common bottom. */
.browser-photo {
  background: var(--muted);
  aspect-ratio: 8 / 5;
  overflow: hidden;
}
.browser-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* The AI-extraction and Vault screenshots are portrait/mobile-shaped —
   a narrower frame with a taller crop shows them without huge side gutters. */
.browser-frame--phone {
  max-width: 22rem;
  margin-inline: auto;
}
.browser-photo--tall { aspect-ratio: 9 / 15; }

/* ---------- Founder story ---------- */
.story { padding: 4.5rem 0; }
.story .section-head { margin-inline: auto; text-align: center; max-width: 34rem; }

.story-body { max-width: 42rem; margin-inline: auto; }

.story-byline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
}
.story-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  flex-shrink: 0;
}
.story-byline > div { display: flex; flex-direction: column; text-align: left; }
.story-name { font-weight: 600; font-size: 0.9375rem; }
.story-role { font-size: 0.8125rem; color: var(--muted-foreground); }

.story-text p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--foreground);
  margin: 0 0 1.35rem;
}
.story-text p:last-child { margin-bottom: 0; }

.story-text .story-pull {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.375rem;
  line-height: 1.5;
  color: var(--primary);
  margin: 1.75rem 0;
  letter-spacing: -0.005em;
}

.story-questions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 0 0 1.35rem;
  padding: 1.25rem 1.5rem;
  background: var(--muted);
  border-radius: calc(var(--radius) - 2px);
  border-left: 3px solid var(--primary);
}
.story-questions li { font-size: 1rem; font-style: italic; color: var(--foreground); }

.story-text .story-signoff {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: 1.125rem;
  line-height: 1.5;
}

@media (min-width: 640px) {
  .story-text p { font-size: 1.125rem; }
}

/* ---------- Pricing ---------- */
.pricing { padding: 4rem 0; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 46rem;
  margin-inline: auto;
}
.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card--featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-lift);
}
.price-ribbon {
  position: absolute;
  top: -0.7rem;
  left: 1.75rem;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
}
.price-head h3 { font-size: 1.375rem; }
.price-tagline { color: var(--muted-foreground); margin-top: 0.35rem; font-size: 0.9375rem; }
.price-amount { margin: 1.25rem 0 1.5rem; display: flex; align-items: baseline; gap: 0.35rem; }
.price-num { font-family: var(--font-display); font-size: 2.75rem; font-weight: 400; letter-spacing: -0.02em; }
.price-period { color: var(--muted-foreground); font-size: 0.9375rem; }
.price-features { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 0.75rem; }
.price-features li {
  padding-left: 1.6rem;
  position: relative;
  font-size: 0.9375rem;
  color: var(--foreground);
}
.price-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--success);
}
.pricing-note { text-align: center; margin-top: 2rem; color: var(--muted-foreground); font-size: 0.875rem; }

@media (min-width: 720px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); max-width: none; }
}

/* ---------- FAQ ---------- */
.faq { padding: 4rem 0 5rem; }
.faq-list { max-width: 46rem; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
}
.faq-caret { transition: transform 0.2s ease; color: var(--muted-foreground); }
.faq-question[aria-expanded="true"] .faq-caret { transform: rotate(180deg); color: var(--primary); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-answer p { padding-bottom: 1.25rem; color: var(--muted-foreground); line-height: 1.6; max-width: 60ch; }
.faq-answer a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Final CTA ---------- */
.final-cta { padding: 1rem 0 5rem; }
.final-cta-inner {
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: calc(var(--radius) + 8px);
  padding: 3.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.final-cta-inner h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  max-width: 20ch;
}
.final-cta-inner p { color: color-mix(in srgb, var(--primary-foreground) 78%, transparent); }
.final-cta-inner .btn-primary {
  background: var(--primary-foreground);
  color: var(--primary);
  margin-top: 0.5rem;
}

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); padding: 3.5rem 0 2rem; }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
}
.footer-brand p { margin-top: 0.75rem; color: var(--muted-foreground); font-size: 0.9375rem; max-width: 26ch; }
.footer-col h4 { font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted-foreground); margin-bottom: 1rem; }
.footer-col a { display: block; padding: 0.4rem 0; font-size: 0.9375rem; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.footer-bottom p { color: var(--muted-foreground); font-size: 0.8125rem; }

@media (min-width: 720px) {
  .footer-inner { grid-template-columns: 1.4fr 1fr 1fr; }
}

/* ---------- Dark mode ---------- */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --background: #172420;
    --background: oklch(0.19 0.02 160);
    --foreground: #f5f2e8;
    --foreground: oklch(0.96 0.01 100);
    --card: #212f28;
    --card: oklch(0.24 0.02 160);
    --primary: #d3ecd9;
    --primary: oklch(0.82 0.09 150);
    --primary-foreground: #182920;
    --primary-foreground: oklch(0.2 0.03 160);
    --secondary: #283630;
    --secondary: oklch(0.28 0.02 160);
    --secondary-foreground: #f5f2e8;
    --secondary-foreground: oklch(0.96 0.01 100);
    --muted: #26332d;
    --muted: oklch(0.26 0.02 160);
    --muted-foreground: #b3beb4;
    --muted-foreground: oklch(0.72 0.02 130);
    --accent: #38493f;
    --accent: oklch(0.34 0.05 155);
    --accent-foreground: #f5f2e8;
    --accent-foreground: oklch(0.96 0.01 100);
    --success: #5bac7a;
    --success: oklch(0.68 0.11 155);
    --border: rgba(255, 255, 255, 0.1);
    --border: oklch(1 0 0 / 10%);
  }
}
:root[data-theme="dark"] {
  --background: oklch(0.19 0.02 160);
  --foreground: oklch(0.96 0.01 100);
  --card: oklch(0.24 0.02 160);
  --primary: oklch(0.82 0.09 150);
  --primary-foreground: oklch(0.2 0.03 160);
  --secondary: oklch(0.28 0.02 160);
  --secondary-foreground: oklch(0.96 0.01 100);
  --muted: oklch(0.26 0.02 160);
  --muted-foreground: oklch(0.72 0.02 130);
  --accent: oklch(0.34 0.05 155);
  --accent-foreground: oklch(0.96 0.01 100);
  --success: oklch(0.68 0.11 155);
  --border: oklch(1 0 0 / 10%);
}
