/* Base reset-ish */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* If this file is standalone, you can uncomment this root block.
   If you're already loading your global theme file, you can remove it.*/

:root {
  --radius: 0.625rem;
  --background: oklch(0.98 0.005 180.0);
  --foreground: oklch(0.225 0.046 258.0);
  --card: oklch(0.995 0.003 180.0);
  --card-foreground: oklch(0.225 0.046 258.0);
  --popover: oklch(0.995 0.003 180.0);
  --popover-foreground: oklch(0.225 0.046 258.0);
  --primary: oklch(0.5 0.15 183.0);
  --primary-foreground: oklch(0.98 0.005 180.0);
  --secondary: oklch(0.92 0.015 183.0);
  --secondary-foreground: oklch(0.275 0.046 258.0);
  --muted: oklch(0.94 0.012 180.0);
  --muted-foreground: oklch(0.45 0.04 258.0);
  --accent: oklch(0.88 0.025 183.0);
  --accent-foreground: oklch(0.275 0.046 258.0);
  --destructive: oklch(0.62 0.22 25.0);
  --destructive-foreground: oklch(0.98 0.005 180.0);
  --border: oklch(0.89 0.015 180.0);
  --input: oklch(0.95 0.008 180.0);
  --ring: oklch(0.5 0.15 183.0);
  --chart-1: oklch(0.5 0.15 183.0);
  --chart-2: oklch(0.45 0.14 160.0);
  --chart-3: oklch(0.65 0.16 75.0);
  --chart-4: oklch(0.45 0.18 300.0);
  --chart-5: oklch(0.58 0.20 25.0);
  --sidebar: oklch(0.975 0.008 180.0);
  --sidebar-foreground: oklch(0.275 0.046 258.0);
  --sidebar-primary: oklch(0.5 0.15 183.0);
  --sidebar-primary-foreground: oklch(0.98 0.005 180.0);
  --sidebar-accent: oklch(0.88 0.025 183.0);
  --sidebar-accent-foreground: oklch(0.275 0.046 258.0);
  --sidebar-border: oklch(0.89 0.015 180.0);
  --sidebar-ring: oklch(0.5 0.15 183.0);
  --brand-from: #42E695;
  --brand-to: #3BB2B8;
  --brand-gradient: linear-gradient(90deg, var(--brand-from), var(--brand-to));
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  line-height: 1; /* keeps text tight */
}

.logo-img {
  height: 26px; /* slightly reduced gives perfect optical balance */
  width: auto;
  display: block;
}

.logo span {
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: lowercase;
  font-size: 1.2rem;
  color: var(--sidebar-foreground);
  display: flex;
  align-items: center; /* vertically center text with icon */
}


body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  color: var(--foreground);
  background: var(--background);
  line-height: 1.6;
}

/* Layout helpers */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in oklch, var(--sidebar) 85%, white 15%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sidebar-border, var(--border));
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  color: var(--sidebar-foreground);
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--foreground);
}

.nav-cta {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--sidebar-ring);
  background: color-mix(in oklch, var(--primary) 8%, white 92%);
}

.nav-app {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in oklch, var(--secondary) 65%, white 35%);
  color: var(--secondary-foreground);
  font-size: 0.9rem;
  cursor: not-allowed;
  opacity: 0.82;
}

.nav-app svg {
  width: 14px;
  height: 14px;
}

/* Hero */
.hero {
  padding: 4.5rem 0 3.5rem;
  background:
    radial-gradient(circle at top left,
      color-mix(in oklch, var(--primary) 12%, transparent 88%) 0,
      transparent 55%),
    var(--background);
}

#hero-dynamic {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

/* Reserve space for the longest phrase so the line never shrinks */
#hero-dynamic::after {
  content: "made transparent."; /* longest of your phrases */
  visibility: hidden;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  gap: 3rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.3rem, 3vw + 1.2rem, 3.3rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.accent {
  background-image: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  max-width: 34rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.hero-note {
  font-size: 0.85rem;
  color: var(--muted-foreground);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.7rem 1.3rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn.primary {
  background-image: var(--brand-gradient);
  color: var(--primary-foreground);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06),
    0 6px 20px rgba(59, 178, 184, 0.24);
}

.btn.primary:hover {
  filter: brightness(0.98);
}

.btn.ghost {
  background: color-mix(in oklch, var(--secondary) 55%, white 45%);
  color: var(--secondary-foreground);
  border-color: var(--border);
}

.btn.ghost:hover {
  background: color-mix(in oklch, var(--secondary) 70%, white 30%);
}

.btn.full-width {
  width: 100%;
}

/* Hero mockup */
.hero-panel {
  display: flex;
  justify-content: flex-end;
}

.card {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
  color: var(--card-foreground);
}

.mockup {
  width: 100%;
  max-width: 380px;
}

.mockup-header {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.mockup-header .dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: color-mix(in oklch, var(--muted-foreground) 40%, white 60%);
}

.mockup-body h3 {
  margin-bottom: 0.25rem;
}

.mockup-body p {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.mockup-list {
  list-style: none;
  font-size: 0.85rem;
  color: var(--foreground);
}

.mockup-list li + li {
  margin-top: 0.3rem;
}

/* Social proof */
.social-proof {
  padding: 1.5rem 0 1.25rem;
  background: color-mix(in oklch, var(--background) 90%, white 10%);
  color: var(--muted-foreground);
  border-top: 1px solid var(--border);
}

.social-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 0.75rem;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.logo-pill {
  font-size: 0.8rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--secondary);
  color: var(--secondary-foreground);
}

/* Sections */
.section {
  padding: 3.5rem 0;
  background: var(--background);
  color: var(--foreground);
}

.section.alt {
  background:
    radial-gradient(circle at top right,
      color-mix(in oklch, var(--accent) 18%, transparent 82%) 0,
      transparent 55%),
    var(--background);
}

.section h2 {
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--muted-foreground);
  max-width: 32rem;
  margin-bottom: 2rem;
}

/* Features */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.grid-3 .card {
  background: color-mix(in oklch, var(--card) 94%, white 6%);
  border-color: var(--border);
  box-shadow: none;
}

.grid-3 .card h3 {
  margin-bottom: 0.5rem;
}

/* Steps */
.steps {
  display: grid;
  gap: 1.5rem;
}

.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid var(--ring);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--primary);
  flex-shrink: 0;
  background: var(--secondary);
}

/* Pricing */
.pricing-wrapper {
  max-width: 360px;
}

.pricing-card {
  text-align: left;
}

.badge {
  display: inline-flex;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: color-mix(in oklch, var(--primary) 10%, var(--secondary) 90%);
  color: var(--primary);
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

.price {
  font-size: 2.1rem;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.price span {
  font-size: 0.95rem;
  color: var(--muted-foreground);
}

.pricing-list {
  list-style: none;
  font-size: 0.9rem;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.pricing-list li + li {
  margin-top: 0.3rem;
}

.pricing-note {
  font-size: 0.8rem;
  color: var(--muted-foreground);
  margin-top: 0.5rem;
}

/* CTA */
.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cta-form input {
  flex: 1;
  min-width: 0;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--input);
  color: var(--foreground);
}

.cta-form input::placeholder {
  color: var(--muted-foreground);
}

.cta-footnote {
  font-size: 0.8rem;
  color: var(--muted-foreground);
}

/* Footer */
.footer {
  padding: 1.5rem 0 2rem;
  background: color-mix(in oklch, var(--background) 96%, var(--secondary) 4%);
  border-top: 1px solid var(--border);
  color: var(--muted-foreground);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a {
  color: var(--muted-foreground);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--foreground);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-panel {
    justify-content: flex-start;
  }

  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .nav-links {
    display: none; /* simple mobile behaviour for now */
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 3.5rem;
  }

  .section {
    padding: 2.5rem 0;
  }
}
