﻿:root {
  --lp-color-bg: #02090a;
  --lp-color-surface-1: #051517;
  --lp-color-surface-2: #121c1e;
  --lp-color-surface-3: #0e0e10;
  --lp-color-text: #ffffff;
  --lp-color-text-muted: #a1a1aa;
  --lp-color-text-soft: #71717a;
  --lp-color-line: #ffffff1a;
  --lp-color-focus: #30deee;
  --lp-color-accent-green: #36f4a4;
  --lp-color-accent-cyan: #30deee;

  --lp-font-sans: Inter-Variable, Helvetica, Arial, sans-serif;

  --lp-text-body-sm: 0.875rem;
  --lp-text-body: 1rem;
  --lp-text-body-lg: 1.125rem;
  --lp-text-h3: 1.875rem;
  --lp-text-h2: 2.25rem;
  --lp-text-h1: 2.75rem;

  --lp-radius-md: 0.375rem;
  --lp-radius-lg: 0.5rem;
  --lp-radius-xl: 0.75rem;
  --lp-radius-2xl: 1rem;
  --lp-radius-pill: 9999px;

  --lp-space-xs: 0.25rem;
  --lp-space-sm: 0.5rem;
  --lp-space-md: 1rem;
  --lp-space-lg: 1.5rem;
  --lp-space-xl: 2rem;
  --lp-space-2xl: 2.5rem;
  --lp-space-3xl: 4rem;

  --lp-margin: 1rem;
  --lp-gutter: 1rem;
  --lp-max-width: 72rem;

  --lp-ease-in: cubic-bezier(0.4, 0, 1, 1);
  --lp-ease-out: cubic-bezier(0, 0, 0.2, 1);
  --lp-ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --lp-ease-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
}

@media (min-width: 640px) {
  :root {
    --lp-margin: 1.875rem;
  }
}

@media (min-width: 900px) {
  :root {
    --lp-margin: 3.125rem;
    --lp-text-h1: 3.375rem;
    --lp-text-h2: 3rem;
    --lp-text-h3: 2.25rem;
  }
}

@media (min-width: 1200px) {
  :root {
    --lp-margin: 5.625rem;
    --lp-gutter: 1.5rem;
    --lp-text-h1: 4rem;
    --lp-text-h2: 3.5rem;
    --lp-text-h3: 2.75rem;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--lp-color-bg);
  color: var(--lp-color-text);
  font-family: var(--lp-font-sans);
  font-size: var(--lp-text-body);
  line-height: 1.4;
}

.lp-container {
  width: min(100% - (var(--lp-margin) * 2), var(--lp-max-width));
  margin-inline: auto;
}

.lp-section {
  padding-block: var(--lp-space-3xl);
}

.lp-kicker {
  color: var(--lp-color-accent-green);
  font-size: var(--lp-text-body-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lp-h1 {
  margin: 0;
  font-size: var(--lp-text-h1);
  line-height: 1.08;
  letter-spacing: -0.01em;
  font-weight: 330;
}

.lp-h2 {
  margin: 0;
  font-size: var(--lp-text-h2);
  line-height: 1.12;
  letter-spacing: -0.005em;
  font-weight: 330;
}

.lp-body-muted {
  color: var(--lp-color-text-muted);
}

.lp-card {
  background: linear-gradient(180deg, var(--lp-color-surface-2), var(--lp-color-surface-1));
  border: 1px solid #19272a;
  border-radius: var(--lp-radius-2xl);
  box-shadow: 0 8px 48px rgba(24, 24, 27, 0.24), 0 4px 8px rgba(24, 24, 27, 0.16);
  padding: var(--lp-space-xl);
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: var(--lp-radius-pill);
  padding: 0.5rem 1.25rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 550;
  letter-spacing: 0;
  text-decoration: none;
  transition: background-color 200ms var(--lp-ease-out), color 200ms var(--lp-ease-out), border-color 200ms var(--lp-ease-out), transform 150ms var(--lp-ease-out);
}

.lp-btn:focus-visible {
  outline: 2px solid var(--lp-color-focus);
  outline-offset: 2px;
}

.lp-btn-dark-primary {
  color: #000;
  background: #fff;
}

.lp-btn-dark-primary:hover {
  background: #d4d4d8;
}

.lp-btn-dark-primary:active {
  background: #a1a1aa;
}

.lp-btn-dark-primary:disabled {
  color: #71717a;
  background: #52525b;
}

.lp-btn-light-primary {
  color: #fff;
  background: #000;
}

.lp-btn-light-primary:hover {
  background: #3f3f46;
}

.lp-btn-light-primary:active {
  background: #71717a;
}

.lp-btn-light-primary:disabled {
  color: #a1a1aa;
  background: #d4d4d8;
}

.lp-input-wrap {
  border-radius: var(--lp-radius-lg);
  background: #ffffff26;
  backdrop-filter: blur(8px);
  border: 1px solid #fff3;
  transition: border-color 200ms var(--lp-ease-out);
}

.lp-input-wrap:hover {
  border-color: #ffffff80;
}

.lp-input-wrap:focus-within {
  border-color: #fffc;
}

.lp-input {
  width: 100%;
  color: #fff;
  background: transparent;
  border: 0;
  padding: 1rem;
  outline: 0;
  font: inherit;
}

.lp-input::placeholder {
  color: #ffffffb3;
}

.lp-hero-glow {
  position: relative;
}

.lp-hero-glow::before {
  content: "";
  position: absolute;
  inset: auto 0 -20% 0;
  height: 140px;
  background: radial-gradient(156.58% 114.72% at 50% 100%, rgba(48, 222, 238, 0.28) 0%, rgba(0, 0, 0, 0) 100%);
  filter: blur(40px);
  pointer-events: none;
}
