:root {
  --background: oklch(0.13 0.018 265);
  --foreground: oklch(0.97 0.005 250);
  --surface: oklch(0.16 0.02 265);
  --surface-elevated: oklch(0.2 0.025 265);
  --card: oklch(0.18 0.022 265);
  --primary: oklch(0.72 0.18 232);
  --primary-foreground: oklch(0.12 0.02 265);
  --muted: oklch(0.22 0.025 265);
  --muted-foreground: oklch(0.68 0.02 260);
  --gold: oklch(0.82 0.13 85);
  --border: oklch(1 0 0 / 8%);
  --radius: 0.875rem;
  --font-display: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --shadow-glow: 0 0 60px -10px
    color-mix(in oklab, var(--primary) 55%, transparent);
  --shadow-elevated: 0 30px 80px -30px
    color-mix(in oklab, var(--primary) 40%, transparent);
  --gradient-aurora:
    radial-gradient(
      ellipse at top,
      color-mix(in oklab, var(--primary) 22%, transparent),
      transparent 60%
    ),
    radial-gradient(
      ellipse at bottom right,
      color-mix(in oklab, var(--gold) 14%, transparent),
      transparent 55%
    );
  --gradient-text: linear-gradient(
    135deg,
    var(--foreground) 0%,
    color-mix(in oklab, var(--primary) 80%, var(--foreground)) 60%,
    var(--gold) 100%
  );
  --gradient-card: linear-gradient(
    160deg,
    color-mix(in oklab, var(--surface-elevated) 95%, var(--primary)),
    var(--surface)
  );
}

*,
*::before,
*::after {
  box-sizing: border-box;
  border-color: var(--border);
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 600;
}
h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.02;
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}
p {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container--narrow {
  max-width: 780px;
}
.container--mid {
  max-width: 1024px;
}
.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.muted {
  color: var(--muted-foreground);
}
.small {
  font-size: 0.75rem;
}
.med {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
}
.big {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.6rem;
  margin-top: 0.25rem;
}
.lead {
  color: var(--muted-foreground);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 42rem;
}
.accent {
  color: var(--primary);
}
.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: color-mix(in oklab, var(--background) 60%, transparent);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
}
.brand__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  width: 28px;
  border-radius: 8px;
  background: color-mix(in oklab, var(--primary) 15%, transparent);
  outline: 1px solid color-mix(in oklab, var(--primary) 40%, transparent);
  color: var(--primary);
}
.nav__links {
  display: none;
  gap: 2rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.nav__links a:hover {
  color: var(--foreground);
}
@media (min-width: 768px) {
  .nav__links {
    display: flex;
  }
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.55rem 1.1rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s;
  font-family: inherit;
}
.btn--sm {
  padding: 0.4rem 0.9rem;
  font-size: 0.825rem;
}
.btn--lg {
  height: 48px;
  padding: 0 1.75rem;
  font-size: 0.95rem;
}
.btn--block {
  width: 100%;
}
.btn--primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-glow);
}
.btn--primary:hover {
  background: color-mix(in oklab, var(--primary) 90%, black);
}
.btn--outline {
  border-color: var(--border);
  background: color-mix(in oklab, var(--surface) 40%, transparent);
  color: var(--foreground);
}
.btn--outline:hover {
  background: var(--surface);
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 9rem 0 6rem;
}
@media (min-width: 768px) {
  .hero {
    padding: 10rem 0 8rem;
  }
}
.bg-aurora {
  position: absolute;
  inset: 0;
  background-image: var(--gradient-aurora);
  pointer-events: none;
}
.bg-aurora--soft {
  opacity: 0.6;
}
.grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image:
    linear-gradient(
      to right,
      color-mix(in oklab, var(--foreground) 5%, transparent) 1px,
      transparent 1px
    ),
    linear-gradient(
      to bottom,
      color-mix(in oklab, var(--foreground) 5%, transparent) 1px,
      transparent 1px
    );
  background-size: 56px 56px;
}
.hero__grid {
  position: relative;
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.hero__left > * + * {
  margin-top: 2rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--surface) 60%, transparent);
  backdrop-filter: blur(8px);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
.dot {
  height: 6px;
  width: 6px;
  border-radius: 999px;
  background: var(--primary);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  50% {
    opacity: 0.5;
  }
}
.cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .cta-row {
    flex-direction: row;
  }
}
.bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.hero__right {
  position: relative;
}
.hero__card {
  position: relative;
  aspect-ratio: 5/6;
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  outline: 1px solid var(--border);
}
.hero__card img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top right,
    color-mix(in oklab, var(--background) 80%, transparent),
    transparent 60%
  );
}
.float-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: color-mix(in oklab, var(--background) 70%, transparent);
  backdrop-filter: blur(8px);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  border: 1px solid var(--border);
}
.ping {
  position: relative;
  display: inline-block;
  height: 8px;
  width: 8px;
  border-radius: 999px;
  background: var(--primary);
}
.ping::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--primary);
  opacity: 0.75;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes ping {
  75%,
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}
.float-stat {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-elevated);
  width: 11rem;
}
.float-chip {
  display: none;
  position: absolute;
  left: -1.5rem;
  top: 33%;
  align-items: center;
  gap: 0.75rem;
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-elevated);
  animation: float 6s ease-in-out infinite;
}
@media (min-width: 768px) {
  .float-chip {
    display: inline-flex;
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.float-chip__icon {
  height: 36px;
  width: 36px;
  border-radius: 12px;
  background: color-mix(in oklab, var(--primary) 15%, transparent);
  outline: 1px solid color-mix(in oklab, var(--primary) 40%, transparent);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* MARQUEE */
.marquee {
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: color-mix(in oklab, var(--surface) 40%, transparent);
  padding: 1.25rem 0;
  overflow: hidden;
}
.marquee__track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-foreground);
  animation: marquee 30s linear infinite;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
.marquee__track span {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
}
.marquee__track .star {
  color: color-mix(in oklab, var(--primary) 60%, transparent);
}

/* SECTIONS */
.section {
  position: relative;
  padding: 6rem 0;
}
@media (min-width: 768px) {
  .section {
    padding: 8rem 0;
  }
}
.section--alt {
  background: color-mix(in oklab, var(--surface) 30%, transparent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-header {
  max-width: 48rem;
}
.section-header h2 {
  margin-top: 1.25rem;
}
.section-header .lead {
  margin-top: 1.25rem;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--primary);
}
.eyebrow.center {
  justify-content: center;
  display: flex;
}

/* USE CASES */
.usecases {
  margin-top: 4rem;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .usecases {
    grid-template-columns: 1fr 1fr;
  }
}
.usecase {
  position: relative;
  overflow: hidden;
  border-radius: 1.75rem;
  border: 1px solid var(--border);
  background: var(--gradient-card);
  transition: border-color 0.5s;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .usecase {
    grid-template-columns: 1fr 180px;
  }
}
.usecase:hover {
  border-color: color-mix(in oklab, var(--primary) 40%, transparent);
}
.usecase__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}
.usecase__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary);
}
.usecase h3 {
  margin-top: 0.75rem;
  font-size: 1.4rem;
  line-height: 1.3;
}
.usecase__desc {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}
.usecase__more {
  font-size: 0.875rem;
  color: color-mix(in oklab, var(--foreground) 80%, transparent);
}
.usecase__more:hover {
  color: var(--primary);
}
.usecase__img {
  position: relative;
  height: 12rem;
  overflow: hidden;
}
@media (min-width: 640px) {
  .usecase__img {
    height: auto;
  }
}
.usecase__img img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.usecase:hover .usecase__img img {
  transform: scale(1.1);
}

/* CATALOG */
.catalog {
  margin-top: 4rem;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .catalog {
    grid-template-columns: 1.1fr 1fr;
  }
}
.catalog__img {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 1.75rem;
  overflow: hidden;
  outline: 1px solid var(--border);
  box-shadow: var(--shadow-elevated);
}
.catalog__img img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.catalog__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.product {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--gradient-card);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: border-color 0.2s;
}
.product:hover {
  border-color: color-mix(in oklab, var(--primary) 40%, transparent);
}
.product h3 {
  font-size: 1.2rem;
}
.product__row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.product__badge {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: color-mix(in oklab, var(--primary) 15%, transparent);
  color: var(--primary);
  border: 1px solid color-mix(in oklab, var(--primary) 30%, transparent);
}
.product__desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.4rem;
  max-width: 24rem;
}
.product__price {
  font-size: 0.875rem;
  margin-top: 0.75rem;
  font-weight: 500;
}
.product__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border-radius: 999px;
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.product:hover .product__btn {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

/* DESIGN */
.design__inner {
  position: relative;
  text-align: center;
}
.design__inner .lead {
  margin: 1.5rem auto 0;
}
.features-grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 1rem;
  text-align: left;
}
@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.feature {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--gradient-card);
  padding: 1.5rem;
}
.feature__title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
}
.feature__desc {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* STEPS */
.steps {
  margin-top: 4rem;
  display: grid;
  gap: 1px;
  background: var(--border);
  border-radius: 1.75rem;
  overflow: hidden;
  border: 1px solid var(--border);
}
@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}
.step {
  background: var(--background);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 200px;
}
.step__n {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 0.75rem;
  color: var(--primary);
}
.step__t {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
}
.step__d {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* SOFTWARE */
.software {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .software {
    grid-template-columns: 1fr 1fr;
  }
}
.software .lead {
  margin-top: 1.25rem;
}
.checklist {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
}
.checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.checkdot {
  height: 20px;
  width: 20px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--primary) 15%, transparent);
  border: 1px solid color-mix(in oklab, var(--primary) 40%, transparent);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

/* PHONE */
.phone-wrap {
  position: relative;
}
.phone {
  position: relative;
  margin: 0 auto;
  width: 280px;
  height: 560px;
  border-radius: 44px;
  border: 1px solid var(--border);
  background: var(--gradient-card);
  padding: 12px;
  box-shadow: var(--shadow-elevated);
}
.phone__glow {
  position: absolute;
  inset: -1.5rem;
  background: color-mix(in oklab, var(--primary) 10%, transparent);
  filter: blur(60px);
  border-radius: 999px;
  z-index: -1;
}
.phone__screen {
  height: 100%;
  width: 100%;
  border-radius: 34px;
  background: var(--background);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone__notch {
  height: 4px;
  width: 64px;
  background: var(--border);
  border-radius: 999px;
  margin: 0.75rem auto 0;
}
.phone__head {
  padding: 1rem 1.25rem 0;
  text-align: center;
}
.phone__avatar {
  margin: 0 auto;
  height: 64px;
  width: 64px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), oklch(0.65 0.2 295));
  outline: 2px solid var(--border);
}
.phone__head .med {
  margin-top: 0.75rem;
}
.phone__links {
  padding: 1.25rem 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.phone__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--surface) 60%, transparent);
  padding: 0.85rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 500;
}
.phone__foot {
  margin-top: auto;
  padding: 1rem;
  text-align: center;
}

/* ROADMAP */
.roadmap {
  margin-top: 3.5rem;
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .roadmap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .roadmap {
    grid-template-columns: repeat(4, 1fr);
  }
}
.roadmap__item {
  position: relative;
  border-radius: 1rem;
  border: 1px dashed var(--border);
  background: color-mix(in oklab, var(--background) 40%, transparent);
  padding: 1.5rem;
  transition: border-color 0.2s;
}
.roadmap__item:hover {
  border-color: color-mix(in oklab, var(--primary) 50%, transparent);
}
.roadmap__q {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted-foreground);
}
.roadmap__t {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}
.roadmap__d {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.roadmap__tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: color-mix(in oklab, var(--primary) 80%, transparent);
}

/* TESTIMONIALS */
.testimonials {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .testimonials {
    grid-template-columns: repeat(3, 1fr);
  }
}
.testimonial {
  border-radius: 1.75rem;
  border: 1px solid var(--border);
  background: var(--gradient-card);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.stars {
  color: var(--primary);
  letter-spacing: 2px;
}
.testimonial blockquote {
  margin: 0;
  line-height: 1.65;
}
.testimonial__name {
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: auto;
}
.testimonial__role {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* FAQ */
.faq {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
}
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  color: inherit;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  padding: 1.25rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}
.faq__q:hover {
  color: var(--primary);
}
.faq__q .arrow {
  transition: transform 0.3s;
  font-size: 0.85rem;
  color: var(--muted-foreground);
}
.faq__item.open .faq__q {
  color: var(--primary);
}
.faq__item.open .faq__q .arrow {
  transform: rotate(180deg);
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  color: var(--muted-foreground);
  line-height: 1.65;
}
.faq__a-inner {
  padding: 0 0 1.25rem;
}

/* FINAL CTA */
.final-cta {
  overflow: hidden;
}
.final-cta__card {
  position: relative;
  border-radius: 2rem;
  border: 1px solid var(--border);
  background: var(--gradient-card);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-elevated);
  padding: 2rem;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .final-cta__card {
    padding: 3.5rem;
  }
}
@media (min-width: 1024px) {
  .final-cta__card {
    grid-template-columns: 1.1fr 1fr;
  }
}
.final-cta h2 {
  margin-top: 1rem;
}
.final-cta .lead {
  margin-top: 1.25rem;
  max-width: 28rem;
}
.form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.form input,
.form select {
  width: 100%;
  height: 48px;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--surface) 60%, transparent);
  padding: 0 1rem;
  font-size: 0.875rem;
  color: var(--foreground);
  font-family: inherit;
}
.form input::placeholder {
  color: var(--muted-foreground);
}
.form input:focus,
.form select:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--primary);
}
.form-success {
  border-radius: 1rem;
  border: 1px solid color-mix(in oklab, var(--primary) 40%, transparent);
  background: color-mix(in oklab, var(--primary) 10%, transparent);
  padding: 1.5rem;
  text-align: center;
}
.check-big {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 700;
}

/* FOOTER */
.footer {
  position: relative;
  border-top: 1px solid var(--border);
  background: color-mix(in oklab, var(--surface) 40%, transparent);
}
.footer__grid {
  padding: 3.5rem 1.5rem;
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}
.footer__brand p {
  margin-top: 1rem;
  font-size: 0.875rem;
  max-width: 24rem;
}
.footer__list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
}
.footer__list a:hover {
  color: var(--primary);
}
.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
  }
}
.footer__legal {
  display: flex;
  gap: 1.25rem;
}
.footer__legal a:hover {
  color: var(--foreground);
}

/* Sello "By Axobit" junto a los logos */
.brand .by-axobit {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.55;
  white-space: nowrap;
  color: inherit;
  text-decoration: none;
}
