/* KI-Webseite – design tokens & layout (1:1 from Lovable) */

:root {
  --font-display: "Fraunces", Georgia, serif;
  --font-sans: "Manrope", system-ui, sans-serif;

  --color-ink: #0b0d10;
  --color-panel: #16191e;
  --color-soft: #21262d;
  --color-accent: #f2c14e;
  --color-accent-soft: #f6d488;
  --color-mist: #b6bec9;
  --color-faint: #78818d;
  --color-white: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  background-color: var(--color-ink);
  color: var(--color-mist);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background-color: color-mix(in oklab, var(--color-accent) 30%, transparent);
  color: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

.font-display {
  font-family: var(--font-display);
}

.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseDot {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.85);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes aurora {
  0% {
    transform: translate3d(-6%, -4%, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(6%, 4%, 0) rotate(8deg);
  }
  100% {
    transform: translate3d(-6%, -4%, 0) rotate(0deg);
  }
}

.reveal {
  animation: fadeUp 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.reveal-1 {
  animation-delay: 0.05s;
}

.reveal-2 {
  animation-delay: 0.15s;
}

.reveal-3 {
  animation-delay: 0.25s;
}

.aurora-blob {
  animation: aurora 18s ease-in-out infinite;
}

.sparkle-dot {
  animation: pulseDot 3.4s ease-in-out infinite;
}

.glass {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.055),
    rgba(255, 255, 255, 0.02)
  );
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* Page shell */
.page {
  position: relative;
  min-height: 100vh;
  /* Only clip horizontal bleed from aurora blobs – vertical overflow:hidden
     breaks anchor scrolling (can't return to top after nav clicks). */
  overflow-x: clip;
  overflow-y: visible;
  background: var(--color-ink);
  color: var(--color-mist);
}

@supports not (overflow-x: clip) {
  .page {
    overflow-x: hidden;
  }
}

.aurora {
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.aurora__blob {
  position: absolute;
  border-radius: 9999px;
  filter: blur(110px);
}

.aurora__blob--1 {
  top: -8rem;
  left: -6rem;
  width: 520px;
  height: 520px;
  opacity: 0.55;
  background: radial-gradient(circle at 30% 30%, #2f5f5a 0%, transparent 62%);
}

.aurora__blob--2 {
  top: 6rem;
  right: -160px;
  width: 560px;
  height: 560px;
  opacity: 0.45;
  filter: blur(120px);
  background: radial-gradient(circle at 60% 40%, #463a6b 0%, transparent 60%);
  animation-delay: -6s;
}

.aurora__blob--3 {
  bottom: -180px;
  left: 33%;
  width: 520px;
  height: 520px;
  opacity: 0.4;
  filter: blur(120px);
  background: radial-gradient(circle at 50% 50%, #6b4a2f 0%, transparent 60%);
  animation-delay: -11s;
}

.aurora__grid {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
  background-size: 64px 64px;
}

.content {
  position: relative;
  z-index: 10;
}

.container {
  width: 100%;
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

@media (min-width: 640px) {
  .container {
    padding-inline: 2rem;
  }
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.logo__mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: color-mix(in oklab, var(--color-accent) 15%, transparent);
  box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--color-accent) 30%, transparent);
}

.logo__mark--sm {
  width: 2rem;
  height: 2rem;
}

.logo__letter {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent);
}

.logo__spark {
  position: absolute;
  top: -0.125rem;
  right: -0.125rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--color-accent);
}

.logo__text {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-white);
}

.logo__text--sm {
  font-size: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
  margin-inline: auto;
  background: rgba(11, 13, 16, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Keep container padding when sticky; header already has .container class */
.site-header.container {
  max-width: 72rem;
}

.nav {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-mist);
}

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

@media (min-width: 768px) {
  .nav {
    display: flex;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background-color 0.2s, color 0.2s, opacity 0.2s;
  box-shadow: inset 0 0 0 1px transparent;
}

.btn--accent {
  background: var(--color-accent);
  color: var(--color-ink);
  box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--color-accent) 40%, transparent);
}

.btn--accent:hover {
  background: var(--color-accent-soft);
}

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-white);
  font-weight: 500;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn--ink {
  background: var(--color-ink);
  color: var(--color-accent);
  box-shadow: inset 0 0 0 1px var(--color-ink);
}

.btn--ink:hover {
  background: color-mix(in oklab, var(--color-ink) 90%, white);
}

.btn--lg {
  padding: 0.75rem 1.5rem;
}

.btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* Hero */
.hero {
  padding: 2rem 0 3.5rem;
}

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

.hero__grid {
  display: grid;
  align-items: center;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1.15fr 1fr;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-mist);
}

.eyebrow__dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 9999px;
  background: var(--color-accent);
}

.hero h1 {
  margin-top: 1.5rem;
  max-width: 20ch;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--color-white);
}

.hero__lead {
  margin-top: 1.5rem;
  max-width: 46ch;
  font-size: 1rem;
  color: var(--color-mist);
}

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

.hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.hero__media {
  position: relative;
  overflow: visible;
}

.hero__frame {
  border-radius: 28px;
  padding: 0.75rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.hero__frame img {
  aspect-ratio: 1;
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.hero__badge {
  position: absolute;
  z-index: 2;
  display: block;
  max-width: min(11.5rem, calc(100% - 1.5rem));
  border-radius: 1rem;
  padding: 0.625rem 0.875rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.hero__badge p:first-child {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-white);
  white-space: nowrap;
}

.hero__badge p:last-child {
  font-size: 0.75rem;
  line-height: 1.25;
  color: var(--color-faint);
}

/* Mobile: badges sit inside the image so longer copy (~14 Tagen) never clips */
.hero__badge--left {
  left: 0.75rem;
  bottom: 0.75rem;
  right: auto;
}

.hero__badge--right {
  right: 0.75rem;
  top: 0.75rem;
  left: auto;
}

.hero__badge--right p:first-child {
  color: var(--color-accent);
}

@media (min-width: 640px) {
  .hero__badge {
    max-width: none;
    padding: 0.75rem 1rem;
  }

  .hero__badge--left {
    left: -0.5rem;
    bottom: 2rem;
  }

  .hero__badge--right {
    right: -0.25rem;
    top: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .hero__badge--left {
    left: -1rem;
  }

  .hero__badge--right {
    right: -0.75rem;
  }
}

.section,
.section--lg,
.hero {
  scroll-margin-top: 5.5rem;
}

.section {
  padding-block: 2rem;
}

.section--lg {
  padding-block: 3.5rem;
}

.section__intro {
  margin-bottom: 2.5rem;
  max-width: 36rem;
}

.section__intro--wide {
  max-width: 42rem;
}

.section h2,
.section--lg h2,
.about-copy h2,
.contact-copy h2 {
  max-width: 30ch;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-white);
}

.section__intro p {
  margin-top: 0.75rem;
  font-size: 1rem;
  color: var(--color-mist);
}

.panel {
  border-radius: 24px;
  padding: 2rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
  .panel {
    padding: 3rem;
  }
}

.panel h2 {
  max-width: 30ch;
}

.panel p {
  margin-top: 1.25rem;
  font-size: 1rem;
  color: var(--color-mist);
}

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

/* Feature cards */
.cards-3 {
  display: grid;
  gap: 1rem;
}

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

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

.card {
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: box-shadow 0.2s;
}

.card:hover {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.card__icon {
  margin-bottom: 1rem;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: color-mix(in oklab, var(--color-accent) 15%, transparent);
  box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--color-accent) 25%, transparent);
}

.card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
}

.card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-mist);
}

.card--accent {
  background: var(--color-accent);
  box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--color-accent) 40%, transparent);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card--accent h3 {
  color: var(--color-ink);
}

.card--accent p {
  color: rgba(11, 13, 16, 0.78);
}

/* Icon glyphs */
.glyph {
  position: relative;
  display: grid;
  place-items: center;
}

.glyph--dot {
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 9999px;
  background: color-mix(in oklab, var(--color-accent) 40%, transparent);
}

.glyph--dot::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 9999px;
  background: var(--color-accent);
}

.glyph--ring {
  width: 1rem;
  height: 1rem;
  border-radius: 9999px;
  border: 2px solid color-mix(in oklab, var(--color-accent) 70%, transparent);
}

.glyph--ring::after {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 9999px;
  background: var(--color-accent);
}

.glyph--sq {
  width: 1rem;
  height: 1rem;
  border-radius: 0.375rem;
  border: 2px solid color-mix(in oklab, var(--color-accent) 70%, transparent);
}

.glyph--sq::after {
  content: "";
  position: absolute;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 9999px;
  background: var(--color-accent);
}

.glyph--sq-sm {
  border-radius: 0.125rem;
}

.glyph--sq-sm::after {
  right: 0;
  top: 0;
}

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

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.step__num {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-accent);
}

.step h3 {
  margin-top: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
}

.step p {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--color-mist);
}

.step--accent {
  background: var(--color-accent);
  box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--color-accent) 40%, transparent);
}

.step--accent .step__num {
  color: rgba(11, 13, 16, 0.7);
}

.step--accent h3 {
  color: var(--color-ink);
}

.step--accent p {
  color: rgba(11, 13, 16, 0.78);
}

/* Pricing */
.pricing-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

.price-main {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: var(--color-accent);
  padding: 2rem;
  box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--color-accent) 40%, transparent);
}

@media (min-width: 640px) {
  .price-main {
    padding: 2.5rem;
  }
}

.price-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badge {
  display: inline-flex;
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge--soft {
  background: color-mix(in oklab, var(--color-ink) 10%, transparent);
  color: var(--color-ink);
}

.badge--ink {
  background: var(--color-ink);
  color: var(--color-accent);
}

.badge--tiny {
  padding: 0.125rem 0.625rem;
  font-size: 0.6875rem;
}

.price-title-row {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.25rem 0.75rem;
}

.price-title-row h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-ink);
}

.price-now {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--color-ink);
}

.price-old {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(11, 13, 16, 0.55);
  text-decoration: line-through;
}

.price-main > .lead {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: rgba(11, 13, 16, 0.78);
}

.price-note {
  margin-top: 0.75rem;
  border-radius: 0.75rem;
  background: color-mix(in oklab, var(--color-ink) 10%, transparent);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-ink);
}

.price-list {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.price-list li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(11, 13, 16, 0.85);
}

.check {
  margin-top: 0.125rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  background: color-mix(in oklab, var(--color-ink) 10%, transparent);
  color: var(--color-ink);
  font-size: 0.75rem;
}

.price-main .btn {
  margin-top: 2rem;
}

.price-extra {
  border-radius: 24px;
  padding: 2rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.price-extra h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-white);
}

.price-extra > p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-mist);
}

.extra-list {
  margin-top: 1.5rem;
}

.extra-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.875rem;
}

.extra-list li:last-child {
  border-bottom: 0;
}

.extra-list > li > span:first-child {
  color: var(--color-mist);
}

.extra-list > li > span:last-child {
  font-weight: 600;
  color: var(--color-white);
  white-space: nowrap;
}

.extra-list__note {
  color: var(--color-faint);
  font-weight: 400;
  font-size: 0.85em;
}

.hosting-explain {
  margin-top: 1.5rem;
  border-radius: 24px;
  padding: 1.75rem 2rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.hosting-explain h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-white);
}

.hosting-explain__lead {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-mist);
}

.hosting-explain__grid {
  margin-top: 1.25rem;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .hosting-explain__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.hosting-explain h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
}

.hosting-explain__price {
  margin-top: 0.35rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-accent);
}

.hosting-explain__grid p:last-child {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-mist);
}

/* Cost cards */
.cards-4 {
  display: grid;
  gap: 1rem;
}

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

@media (min-width: 1024px) {
  .cards-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.cost-card .price {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-accent);
}

.cost-card--accent {
  background: var(--color-accent);
  box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--color-accent) 40%, transparent);
}

.cost-card--accent h3,
.cost-card--accent .price {
  color: var(--color-ink);
}

.cost-card--accent p {
  color: rgba(11, 13, 16, 0.78);
}

.cost-footnote {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--color-faint);
}

/* Compare */
.compare-grid {
  display: grid;
  gap: 1rem;
}

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

.compare-card h3 {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-white);
}

.compare-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-mist);
}

.compare-card--accent {
  background: var(--color-accent);
  box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--color-accent) 40%, transparent);
}

.compare-card--accent h3 {
  color: var(--color-ink);
}

.compare-card--accent p {
  color: rgba(11, 13, 16, 0.78);
}

/* About */
.about-grid {
  display: grid;
  align-items: center;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 0.85fr 1.15fr;
  }
}

.about-media {
  border-radius: 24px;
  padding: 0.75rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.about-media img {
  aspect-ratio: 4 / 5;
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.about-copy p {
  margin-top: 1.25rem;
  font-size: 1rem;
  color: var(--color-mist);
}

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

.about-copy p + p {
  margin-top: 1rem;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 0.85fr 1.15fr;
  }
}

.contact-copy h2 {
  max-width: 24ch;
}

.contact-copy > p {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--color-mist);
}

.promo-box {
  margin-top: 1.5rem;
  border-radius: 1rem;
  background: color-mix(in oklab, var(--color-accent) 10%, transparent);
  padding: 1.25rem;
  box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--color-accent) 30%, transparent);
}

.promo-box strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-white);
}

.promo-box p {
  margin-top: 0.375rem;
  font-size: 0.875rem;
  color: var(--color-mist);
}

.next-steps {
  margin-top: 1.5rem;
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.next-steps h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
}

.next-steps ol {
  margin-top: 0.875rem;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.5rem;
  list-style: decimal;
  font-size: 0.875rem;
  color: var(--color-mist);
}

.next-steps li::marker {
  color: var(--color-accent);
  font-weight: 600;
}

.next-steps strong {
  color: var(--color-white);
  font-weight: 600;
}

.next-steps__alt {
  margin-top: 0.875rem;
  font-size: 0.8125rem;
  color: var(--color-faint);
}

.next-steps__alt a {
  color: var(--color-accent);
}

.next-steps__alt a:hover {
  color: var(--color-accent-soft);
}

.success-steps {
  margin: 1rem auto 0;
  max-width: 46ch;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.5rem;
  list-style: decimal;
  text-align: left;
  font-size: 0.875rem;
  color: var(--color-mist);
}

.success-steps li::marker {
  color: var(--color-accent);
  font-weight: 600;
}

.success-steps strong {
  color: var(--color-white);
}

.success-alt {
  margin: 1rem auto 0;
  max-width: 46ch;
  font-size: 0.8125rem;
  color: var(--color-faint);
}

.success-alt a {
  color: var(--color-accent);
}

.contact-meta {
  margin-top: 2rem;
  display: grid;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.contact-meta p {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-mist);
}

.contact-meta__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-block: 2.5rem;
}

@media (min-width: 640px) {
  .site-footer__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.75rem;
  font-size: 0.875rem;
  color: var(--color-mist);
}

.footer-nav a:hover {
  color: var(--color-white);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--color-faint);
}

/* ========== Briefing form ========== */
.briefing-form,
.briefing-success {
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
  .briefing-form,
  .briefing-success {
    padding: 2rem;
  }
}

.briefing-success {
  text-align: center;
  box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--color-accent) 30%, transparent);
}

.briefing-success__icon {
  margin-inline: auto;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: color-mix(in oklab, var(--color-accent) 15%, transparent);
  color: var(--color-accent);
  font-size: 1.25rem;
  box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--color-accent) 30%, transparent);
}

.briefing-success h3 {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-white);
}

.briefing-success > p {
  margin: 0.5rem auto 0;
  max-width: 46ch;
  font-size: 0.875rem;
  color: var(--color-mist);
}

.briefing-success .price-summary {
  margin: 1.5rem auto 0;
  max-width: 42rem;
  text-align: left;
}

.briefing-success details {
  margin: 1.5rem auto 0;
  max-width: 42rem;
  text-align: left;
}

.briefing-success summary {
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-accent);
}

.progress {
  margin-bottom: 2rem;
}

.progress__meta {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--color-faint);
}

.progress__meta strong {
  font-weight: 500;
  color: var(--color-white);
}

.progress__bar {
  height: 0.375rem;
  width: 100%;
  overflow: hidden;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
}

.progress__fill {
  height: 100%;
  border-radius: 9999px;
  background: var(--color-accent);
  transition: width 0.5s ease;
}

.form-step {
  display: none;
}

.form-step.is-active {
  display: grid;
  gap: 1.25rem;
}

.form-step[data-step="1"].is-active,
.form-step[data-step="2"].is-active,
.form-step[data-step="3"].is-active {
  gap: 1.5rem;
}

.field label,
.field-label {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-white);
}

.req {
  color: var(--color-accent);
}

.briefing-form .control,
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="url"],
.field textarea,
.page-block textarea,
.page-block input[type="text"],
.page-block input[type="url"] {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(11, 13, 16, 0.72);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--color-white);
  color-scheme: dark;
  resize: vertical;
}

.briefing-form .control::placeholder,
.field input::placeholder,
.field textarea::placeholder,
.page-block textarea::placeholder,
.page-block input::placeholder {
  color: var(--color-faint);
}

.briefing-form .control:focus,
.field input:focus,
.field textarea:focus,
.page-block textarea:focus,
.page-block input:focus {
  outline: none;
  border-color: rgba(242, 193, 78, 0.6);
  box-shadow: 0 0 0 1px rgba(242, 193, 78, 0.35);
}

.hint {
  margin-top: 0.375rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #a8b0bb;
}

.noscript-banner {
  background: #1c2430;
  color: #f7f4ee;
  text-align: center;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
}

.noscript-banner a {
  color: var(--color-accent, #f2c14e);
  text-decoration: underline;
}

.legal-page {
  padding-block: 2.5rem 4rem;
  max-width: 48rem;
}

.legal-page h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--color-white);
}

.legal-page h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-white);
}

.legal-page h3 {
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  color: var(--color-white);
}

.legal-page p,
.legal-page li {
  color: var(--color-mist);
  line-height: 1.65;
  margin-bottom: 0.85rem;
}

.legal-page a {
  color: var(--color-accent-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 100;
  background: #111827;
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
}

.skip-link:focus {
  top: 1rem;
}

.grid-2 {
  display: grid;
  gap: 1.25rem;
}

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

.grid-3 {
  display: grid;
  gap: 1rem;
}

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

.grid-4 {
  display: grid;
  gap: 0.75rem;
}

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

.check-row {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--color-mist);
}

.check-row input,
.option-row input,
.privacy-row input {
  accent-color: var(--color-accent);
}

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

.chip {
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-mist);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  transition: background-color 0.2s, color 0.2s;
}

.chip:hover {
  color: var(--color-white);
}

.chip.is-active {
  background: var(--color-accent);
  color: var(--color-ink);
  box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--color-accent) 40%, transparent);
}

.page-block {
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.page-block + .page-block {
  margin-top: 1rem;
}

.link-btn {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-accent);
}

.link-btn:hover {
  color: var(--color-accent-soft);
}

.other-page-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.other-page-row .btn-remove {
  flex-shrink: 0;
  border-radius: 9999px;
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  color: var(--color-faint);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.other-page-row .btn-remove:hover {
  color: var(--color-white);
}

.info-tip {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
  margin-left: 0.25rem;
}

.info-tip__btn {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-mist);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.info-tip__btn:hover,
.info-tip__btn:focus-visible {
  color: var(--color-ink);
  background: var(--color-accent);
  border-color: var(--color-accent);
  outline: none;
}

.info-tip__panel {
  position: absolute;
  left: 0;
  top: calc(100% + 0.5rem);
  z-index: 20;
  width: min(18rem, 70vw);
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  background: #1c2129;
  color: var(--color-mist);
  font-size: 0.8125rem;
  line-height: 1.45;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.info-tip__panel a {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--color-accent-soft);
}

.privacy-note {
  margin: 1.25rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #a8b0bb;
}

.privacy-note a {
  color: var(--color-accent-soft);
}

.color-picker {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem 0.75rem;
  align-items: center;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: color-mix(in oklab, var(--color-ink) 40%, transparent);
  padding: 0.5rem 0.75rem;
}

.color-picker__swatch {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--swatch, #ffffff);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  flex-shrink: 0;
}

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

.color-picker__hex {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--color-white);
  font-size: 0.875rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  outline: none;
}

.color-picker__hex::placeholder {
  color: var(--color-faint);
}

.color-picker__panel {
  grid-column: 1 / -1;
  display: grid;
  gap: 0.75rem;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.color-picker__panel[hidden] {
  display: none !important;
}

.color-picker__native {
  width: 100%;
  height: 2.75rem;
  padding: 0;
  border: 0;
  border-radius: 0.5rem;
  background: transparent;
  cursor: pointer;
}

.color-picker__presets {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0.4rem;
}

.color-picker__preset {
  aspect-ratio: 1;
  border-radius: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--swatch);
  cursor: pointer;
  padding: 0;
}

.color-picker__preset:hover,
.color-picker__preset:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 1px;
}

.palette-grid {
  display: grid;
  gap: 0.75rem;
}

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

.palette-card {
  border-radius: 1rem;
  padding: 1rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: background-color 0.2s;
}

.palette-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.palette-card.is-active {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--color-accent) 60%, transparent);
}

.palette-swatches {
  display: flex;
  gap: 0.375rem;
}

.palette-swatches span {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.375rem;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
}

.palette-card strong {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-white);
}

.palette-card small {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--color-faint);
}

.style-card {
  border-radius: 1rem;
  padding: 1rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.style-card.is-active {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--color-accent) 60%, transparent);
}

.style-card .emoji {
  display: block;
  font-size: 1.5rem;
  color: var(--color-accent);
}

.style-card span:last-child {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-white);
}

.file-input {
  margin-top: 0.75rem;
  display: block;
  width: 100%;
  border-radius: 0.75rem;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  background: color-mix(in oklab, var(--color-ink) 40%, transparent);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--color-mist);
}

.file-input::file-selector-button {
  margin-right: 0.75rem;
  border: 0;
  border-radius: 9999px;
  background: var(--color-accent);
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-ink);
  cursor: pointer;
}

.option-row {
  display: flex;
  cursor: pointer;
  align-items: flex-start;
  gap: 0.75rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--color-mist);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.option-row + .option-row {
  margin-top: 0.5rem;
}

.option-row input {
  margin-top: 0.25rem;
}

.option-row__body {
  flex: 1;
}

.option-row__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.option-row__top strong {
  font-weight: 400;
  color: var(--color-white);
}

.option-row__price {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent);
}

.option-row__note {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--color-faint);
}

.option-check {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--color-mist);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.option-check span:first-child {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.price-summary {
  border-radius: 1rem;
  background: color-mix(in oklab, var(--color-accent) 10%, transparent);
  padding: 1.25rem;
  box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--color-accent) 30%, transparent);
}

.price-summary h4 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-white);
}

.price-summary ul {
  margin-top: 1rem;
}

.price-summary li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.625rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
}

.price-summary li span:first-child {
  color: var(--color-mist);
}

.price-summary li span:last-child {
  flex-shrink: 0;
  font-weight: 600;
  color: var(--color-white);
}

.price-summary__total {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1rem;
}

.price-summary__total span:first-child {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-white);
}

.price-summary__total span:last-child {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-accent);
}

.price-summary__yearly {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-white);
}

.price-summary__running {
  margin-top: 1rem;
  display: grid;
  gap: 0.375rem;
}

.price-summary__running li {
  border: 0;
  padding: 0;
  font-size: 0.75rem;
  color: var(--color-faint);
}

.price-summary__running li span:last-child {
  font-weight: 400;
  color: var(--color-faint);
}

.price-summary__save {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--color-mist);
}

.summary-box {
  border-radius: 1rem;
  background: color-mix(in oklab, var(--color-ink) 50%, transparent);
  padding: 1.25rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.summary-box h4 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-white);
}

.summary-box pre {
  margin: 0.75rem 0 0;
  white-space: pre-wrap;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--color-mist);
}

.privacy-row {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.75rem;
  color: var(--color-faint);
}

.privacy-row input {
  margin-top: 0.125rem;
}

.form-error {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: var(--color-accent);
}

.form-error:empty {
  display: none;
}

.form-nav {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.form-nav .btn--outline {
  border-radius: 9999px;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-mist);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.form-nav .btn--outline:hover:not(:disabled) {
  color: var(--color-white);
}

/* Honeypot: visually hidden but present for bots */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.details-box {
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.details-box summary {
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-white);
}

.hidden {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-1,
  .reveal-2,
  .reveal-3,
  .aurora-blob,
  .sparkle-dot {
    animation: none !important;
  }

  .progress__fill {
    transition: none;
  }
}
