:root {
  color-scheme: dark;
  --scroll-progress: 0;
  --ink: #0e0e12;
  --ink-2: #17171f;
  --text: #f8f8ff;
  --muted: #bbb7cc;
  --soft: #f8f8ff;
  --line: rgba(255, 255, 255, 0.14);
  --glass: rgba(255, 255, 255, 0.08);
  --lavender: #b49cff;
  --lavender-2: #8a67d9;
  --sky: #8fd5ff;
  --mint: #9de4c8;
  --warning: #f4d38b;
  --radius: 8px;
  --max: 1180px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 92px;
}

#builder {
  scroll-margin-top: 70px;
}

body {
  margin: 0;
  min-width: 320px;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background:
    radial-gradient(circle at 12% 12%, rgba(180, 156, 255, 0.2), transparent 28rem),
    radial-gradient(circle at 88% 30%, rgba(143, 213, 255, 0.12), transparent 25rem),
    var(--ink);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  cursor: pointer;
}

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

img,
canvas {
  display: block;
  max-width: 100%;
}

::selection {
  background: rgba(180, 156, 255, 0.42);
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.7rem 1rem;
  clip: auto;
  color: #09090d;
  background: #fff;
  border-radius: var(--radius);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  padding: 14px 18px;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--lavender), var(--sky), var(--mint));
  transform: scaleX(var(--scroll-progress));
  transform-origin: left center;
  opacity: 0.9;
}

.site-header.is-elevated {
  background: rgba(14, 14, 18, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(var(--max), calc(100vw - 32px));
  min-height: 58px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
}

.brand-sigil {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
    #15151b;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  overflow: hidden;
}

.brand-sigil::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(180, 156, 255, 0.28), transparent 42%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.brand-mark:hover .brand-sigil::before {
  opacity: 1;
}

.brand-sigil span {
  position: relative;
  z-index: 1;
}

.brand-sigil i {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lavender);
  box-shadow: 0 0 18px rgba(180, 156, 255, 0.8);
  animation: softPulse 2.8s ease-in-out infinite;
}

.brand-copy {
  display: grid;
  gap: 0.05rem;
}

.brand-copy strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff;
}

.language-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.lang-btn {
  min-width: 38px;
  min-height: 32px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
}

.lang-btn.is-active {
  color: #111116;
  background: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.hero-section {
  position: relative;
  min-height: 93svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 120px 18px 28px;
  border-bottom: 1px solid var(--line);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 14, 18, 0.32), rgba(14, 14, 18, 0.92)),
    linear-gradient(90deg, rgba(14, 14, 18, 0.94), rgba(14, 14, 18, 0.42) 48%, rgba(14, 14, 18, 0.92));
  pointer-events: none;
}

.hero-photo-orbit {
  position: absolute;
  top: 17%;
  right: max(28px, calc((100vw - var(--max)) / 2 + 52px));
  width: min(260px, 30vw);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 12px rgba(255, 255, 255, 0.03),
    0 26px 85px rgba(134, 93, 235, 0.36);
  opacity: 0.96;
}

.hero-photo-orbit img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.hero-photo-orbit::after {
  content: "";
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(180, 156, 255, 0.24);
  border-radius: 50%;
  border-left-color: transparent;
  animation: orbit 9s linear infinite;
}

.hero-content,
.hero-signal {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto;
}

.hero-content {
  padding-bottom: 4.2rem;
}

.eyebrow,
.section-kicker,
.mini-label {
  margin: 0 0 0.9rem;
  color: var(--lavender);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-content h1 {
  margin: 0;
  font-size: 5.8rem;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 690px;
  margin: 1.15rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.3rem;
}

.hero-actions,
.contact-actions,
.form-actions,
.preview-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.78rem;
  align-items: center;
}

.hero-actions {
  margin-top: 2.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.82rem 1.05rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: #fff;
  color: #111116;
  box-shadow: 0 16px 48px rgba(180, 156, 255, 0.24);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero-signal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
}

.hero-signal span {
  position: relative;
  min-height: 72px;
  display: grid;
  align-items: center;
  padding: 1rem 1.2rem;
  border-right: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  overflow: hidden;
}

.hero-signal span::after {
  content: "";
  position: absolute;
  inset: auto 1rem 0.85rem 1rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--lavender), transparent);
  transform: translateX(-115%);
  animation: signalSweep 5.4s ease-in-out infinite;
}

.hero-signal span:nth-child(2)::after {
  animation-delay: 0.8s;
}

.hero-signal span:nth-child(3)::after {
  animation-delay: 1.6s;
}

.hero-signal span:last-child {
  border-right: 0;
}

.metric-band {
  width: min(var(--max), calc(100vw - 32px));
  margin: -1px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.metric {
  min-height: 150px;
  padding: 1.5rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  color: var(--lavender);
  font-size: 0.82rem;
  margin-bottom: 2rem;
}

.metric span {
  display: block;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
  font-weight: 800;
}

.section-shell {
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto;
  padding: 96px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  gap: 4rem;
  align-items: start;
}

.intro-copy h2,
.section-heading h2,
.builder-copy h2,
.contact-inner h2 {
  margin: 0;
  font-size: 3.25rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.intro-text p,
.builder-copy p,
.contact-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 330px;
  padding: 1.35rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.025);
  transform: translate3d(0, 0, 0);
  transition: transform 220ms ease, background 220ms ease;
  overflow: hidden;
}

.service-card::after,
.package-card::after,
.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.12) 42%, transparent 62%);
  transform: translateX(-120%);
  transition: transform 700ms ease;
  pointer-events: none;
}

.service-card:hover::after,
.package-card:hover::after,
.work-card:hover::after {
  transform: translateX(120%);
}

.service-card:hover {
  transform: translateY(-4px);
  background:
    linear-gradient(180deg, rgba(180, 156, 255, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.035);
}

.service-index {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--lavender);
  font-size: 0.82rem;
  font-weight: 800;
}

.service-card h3 {
  margin: 4.4rem 0 0.8rem;
  font-size: 1.28rem;
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.packages-section {
  padding-top: 24px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.package-card {
  position: relative;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  transform: translate3d(0, 0, 0);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
  overflow: hidden;
}

.package-card:hover {
  transform: translateY(-4px);
  background:
    linear-gradient(180deg, rgba(180, 156, 255, 0.14), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.03);
}

.package-card.featured {
  background:
    linear-gradient(180deg, rgba(180, 156, 255, 0.2), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
}

.package-card.entry {
  background:
    linear-gradient(180deg, rgba(157, 228, 200, 0.13), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.025);
}

.package-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.package-topline strong {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.28rem 0.52rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: #111116;
  background: #fff;
  font-size: 0.72rem;
}

.package-card h3 {
  margin: 4.5rem 0 0.8rem;
  font-size: 1.45rem;
}

.price-line {
  display: inline-flex;
  align-items: baseline;
  gap: 0.36rem;
  width: fit-content;
  min-height: 34px;
  margin-bottom: 0.9rem;
  padding: 0.3rem 0.58rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-line strong {
  color: #fff;
  font-size: 1rem;
}

.package-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.package-card ul {
  display: grid;
  gap: 0.72rem;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 1rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.package-card li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lavender);
}

.engine-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.engine-grid article {
  min-height: 230px;
  padding: 1.25rem;
  border-right: 1px solid var(--line);
}

.engine-grid article:last-child {
  border-right: 0;
}

.engine-grid span {
  color: var(--lavender);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.engine-grid h3 {
  margin: 3.2rem 0 0.8rem;
  font-size: 1.22rem;
}

.engine-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
}

.builder-section {
  padding: 48px 18px 70px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    #f7f7fb;
  color: #121217;
}

.builder-section .section-kicker {
  color: #7253c7;
}

.builder-copy {
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto 1.25rem;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.9fr);
  gap: 1.3rem 3rem;
  align-items: start;
}

.builder-copy .section-kicker {
  grid-column: 1;
  margin-bottom: 0;
}

.builder-copy h2 {
  grid-column: 1;
  font-size: 2.42rem;
  max-width: 520px;
}

.builder-copy p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  max-width: 520px;
  color: rgba(18, 18, 23, 0.68);
}

.builder-workspace {
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(390px, 0.9fr);
  gap: 1rem;
  align-items: start;
}

.quote-form {
  display: grid;
  gap: 1rem;
}

.form-panel,
.site-preview {
  border: 1px solid rgba(18, 18, 23, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 70px rgba(20, 20, 30, 0.08);
}

.form-panel {
  padding: 1rem;
}

.panel-heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  color: #5a4e7a;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.project-dna-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.field,
.color-field {
  display: grid;
  gap: 0.42rem;
  margin-bottom: 0.8rem;
}

.field span,
.color-field span {
  color: #48444e;
  font-size: 0.84rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(18, 18, 23, 0.12);
  border-radius: var(--radius);
  background: #fff;
  color: #141419;
  outline: none;
  padding: 0.78rem 0.86rem;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #8f6fe5;
  box-shadow: 0 0 0 4px rgba(143, 111, 229, 0.14);
}

.palette-controls {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.56rem;
  margin-bottom: 0.9rem;
}

.palette-preset {
  min-height: 82px;
  display: grid;
  gap: 0.45rem;
  border: 1px solid rgba(18, 18, 23, 0.12);
  border-radius: var(--radius);
  background: #fff;
  color: #18181e;
  padding: 0.72rem;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 800;
}

.palette-preset.is-active {
  border-color: #8768dc;
  box-shadow: 0 0 0 4px rgba(135, 104, 220, 0.12);
}

.palette-preset:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(20, 20, 30, 0.1);
}

.swatch-set {
  display: flex;
}

.swatch-set i {
  width: 24px;
  height: 24px;
  margin-right: -5px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--sw);
  box-shadow: 0 0 0 1px rgba(18, 18, 23, 0.1);
}

.color-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}

.color-field {
  margin-bottom: 0.9rem;
  padding: 0.7rem;
  border: 1px solid rgba(18, 18, 23, 0.1);
  border-radius: var(--radius);
  background: #fff;
}

.color-field input {
  width: 100%;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
}

.harmony-block {
  margin: 0.2rem 0 0.85rem;
}

.harmony-swatches {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.45rem;
}

.harmony-swatches button {
  min-height: 42px;
  border: 1px solid rgba(18, 18, 23, 0.12);
  border-radius: var(--radius);
  background: var(--swatch);
}

.feature-picks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
  margin: 0 0 0.85rem;
  padding: 0;
  border: 0;
}

.feature-picks legend {
  grid-column: 1 / -1;
  margin-bottom: 0.2rem;
  color: #48444e;
  font-size: 0.84rem;
  font-weight: 900;
}

.feature-picks label {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  min-height: 40px;
  padding: 0.55rem 0.62rem;
  border: 1px solid rgba(18, 18, 23, 0.1);
  border-radius: var(--radius);
  background: #fff;
  color: #24242b;
  font-size: 0.8rem;
  font-weight: 800;
}

.feature-picks input {
  accent-color: #7f5dd7;
}

.hidden-field {
  display: none;
}

.form-actions {
  margin-top: 0.8rem;
}

.form-actions .btn {
  border: 0;
}

.form-actions .btn-secondary {
  border: 1px solid rgba(18, 18, 23, 0.14);
  background: #fff;
  color: #141419;
}

.form-note {
  min-height: 1.3em;
  margin: 0.85rem 0 0;
  color: rgba(18, 18, 23, 0.6);
  font-size: 0.9rem;
}

.site-preview {
  position: sticky;
  top: 92px;
  overflow: hidden;
  padding: 0.75rem;
}

.preview-browser {
  min-height: 720px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--preview-bg, #101015);
  color: var(--preview-text, #ffffff);
  transition: background 380ms ease;
}

.browser-bar {
  display: grid;
  grid-template-columns: 12px 12px 12px 1fr;
  gap: 0.45rem;
  align-items: center;
  min-height: 46px;
  padding: 0 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

.browser-bar strong {
  justify-self: end;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
}

.preview-hero {
  position: relative;
  min-height: 420px;
  padding: 1.2rem;
  background:
    radial-gradient(circle at 78% 16%, color-mix(in srgb, var(--preview-accent, #8fd5ff), transparent 52%), transparent 13rem),
    radial-gradient(circle at 8% 20%, color-mix(in srgb, var(--preview-primary, #b49cff), transparent 54%), transparent 13rem);
  overflow: hidden;
}

.preview-hero::before,
.preview-hero::after {
  content: "";
  position: absolute;
  border: 1px solid color-mix(in srgb, var(--preview-primary, #b49cff), transparent 46%);
  border-radius: 999px;
  pointer-events: none;
}

.preview-hero::before {
  right: 9%;
  top: 18%;
  width: 150px;
  height: 150px;
  animation: floatShape 7s ease-in-out infinite;
}

.preview-hero::after {
  right: 18%;
  bottom: 18%;
  width: 92px;
  height: 92px;
  background: color-mix(in srgb, var(--preview-accent, #8fd5ff), transparent 82%);
  animation: floatShape 5.5s ease-in-out infinite reverse;
}

.preview-nav {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.4rem;
}

.preview-nav span {
  font-weight: 900;
}

.preview-nav i {
  width: 42px;
  height: 10px;
  border-radius: 999px;
  background: var(--preview-primary, #b49cff);
  box-shadow: 0 0 30px color-mix(in srgb, var(--preview-primary, #b49cff), transparent 38%);
  animation: pulseBar 2.8s ease-in-out infinite;
}

.preview-demo-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 1rem;
  padding: 0.32rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.preview-kicker {
  position: relative;
  z-index: 1;
  margin: 0 0 0.8rem;
  color: var(--preview-accent, #8fd5ff);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.preview-hero h3 {
  position: relative;
  z-index: 1;
  max-width: 440px;
  margin: 0;
  font-size: 2.12rem;
  line-height: 1.02;
}

.preview-hero p:not(.preview-kicker) {
  position: relative;
  z-index: 1;
  max-width: 390px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.preview-package {
  position: relative;
  z-index: 1;
  max-width: 390px;
  margin-top: 0.9rem;
  padding: 0.76rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.86rem;
}

.preview-cta-row {
  position: relative;
  z-index: 1;
  margin-top: 1.4rem;
}

.preview-cta-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.55rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
}

.preview-cta-row span:first-child {
  border-color: transparent;
  background: var(--preview-primary, #b49cff);
  color: #101015;
}

.preview-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.preview-panels div {
  min-height: 156px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.07);
}

.preview-panels strong,
.preview-panels span {
  display: block;
}

.preview-panels strong {
  margin-bottom: 3rem;
  color: var(--preview-accent, #8fd5ff);
}

.preview-panels span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.site-preview.is-refreshing .preview-hero h3,
.site-preview.is-refreshing .preview-package,
.site-preview.is-refreshing .preview-panels div {
  animation: previewPop 420ms ease both;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-step {
  min-height: 280px;
  padding: 1.3rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-step span {
  color: var(--lavender);
  font-size: 0.82rem;
  font-weight: 900;
}

.process-step h3 {
  margin: 4rem 0 0.8rem;
  font-size: 1.28rem;
}

.process-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
}

.contact-section {
  padding: 96px 18px;
  border-top: 1px solid var(--line);
  background: #111116;
}

.contact-inner {
  width: min(900px, calc(100vw - 32px));
  margin: 0 auto;
}

.contact-actions {
  margin-top: 2rem;
}

.risk-note {
  max-width: 780px;
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.9rem;
}

.site-footer {
  width: min(var(--max), calc(100vw - 32px));
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.72rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.66);
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
}

.cookie-banner {
  position: fixed;
  z-index: 120;
  right: 18px;
  bottom: 18px;
  width: min(520px, calc(100vw - 36px));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(14, 14, 18, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.cookie-banner[hidden],
.cookie-banner.is-dismissed {
  display: none;
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.cookie-banner div {
  display: flex;
  gap: 0.5rem;
}

.cookie-banner .btn {
  min-height: 38px;
  padding: 0.55rem 0.72rem;
}

.portfolio-main {
  padding-top: 98px;
}

.portfolio-hero {
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto;
  min-height: 62svh;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 0.7fr);
  gap: 3rem;
  align-items: center;
  padding: 72px 0 64px;
}

.portfolio-hero h1 {
  margin: 0;
  font-size: 4.8rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.portfolio-hero p {
  max-width: 670px;
  margin: 1.1rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.12rem;
}

.portfolio-showpiece {
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 22%, rgba(180, 156, 255, 0.28), transparent 12rem),
    rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.showpiece-bar {
  display: grid;
  grid-template-columns: 10px 10px 10px 1fr;
  gap: 0.42rem;
  align-items: center;
  min-height: 44px;
  padding: 0 0.9rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.showpiece-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
}

.showpiece-bar strong {
  justify-self: end;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
}

.showpiece-screen {
  padding: 1.2rem;
}

.showpiece-nav,
.showpiece-lines {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.showpiece-nav i,
.showpiece-lines i,
.screen-card i {
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.showpiece-nav i:first-child {
  width: 112px;
  height: 12px;
  background: var(--lavender);
}

.showpiece-nav i:last-child {
  width: 62px;
  height: 12px;
}

.showpiece-title {
  width: 72%;
  height: 86px;
  margin: 76px 0 1rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff, #b49cff);
}

.showpiece-lines {
  display: grid;
  gap: 0.6rem;
  max-width: 78%;
}

.showpiece-lines i {
  height: 10px;
}

.showpiece-lines i:nth-child(2) {
  width: 78%;
}

.showpiece-lines i:nth-child(3) {
  width: 58%;
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-top: 56px;
}

.screen-card {
  min-height: 96px;
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.screen-card i {
  height: 8px;
  margin-bottom: 0.55rem;
}

.screen-card i:first-child {
  width: 42%;
  background: var(--sky);
}

.screen-card i:last-child {
  width: 82%;
}

.portfolio-grid {
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.work-card {
  position: relative;
  min-height: 410px;
  display: flex;
  flex-direction: column;
  padding: 1.15rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.02);
  transform: translate3d(0, 0, 0);
  transition: transform 220ms ease, background 220ms ease;
  overflow: hidden;
}

.work-card:hover {
  transform: translateY(-4px);
  background:
    linear-gradient(180deg, rgba(180, 156, 255, 0.14), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.03);
}

.work-visual {
  min-height: 155px;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--work-bg);
}

.work-visual.has-image {
  position: relative;
  min-height: 0;
  background: #07080d;
}

.work-visual.has-image::before,
.work-visual.has-image::after {
  display: none;
}

.work-visual.has-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.05) contrast(1.05);
  transition: transform 500ms ease, filter 500ms ease;
}

.work-card-image:hover .work-visual.has-image img {
  transform: scale(1.045);
  filter: saturate(1.15) contrast(1.08);
}

.work-visual::before {
  content: "";
  display: block;
  height: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.work-visual::after {
  content: "";
  display: block;
  width: 62%;
  height: 48px;
  margin: 46px 0 0 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 62px 0 -20px rgba(255, 255, 255, 0.26),
    150px 62px 0 -20px rgba(255, 255, 255, 0.2);
}

.work-card h2 {
  margin: 1rem 0 0.7rem;
  font-size: 1.28rem;
}

.work-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
}

.work-link {
  width: fit-content;
  margin-top: 0.85rem;
  color: var(--sky);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
}

.work-link:hover,
.work-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.proof-strip {
  width: min(var(--max), calc(100vw - 32px));
  margin: 1.2rem auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1rem;
  align-items: stretch;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 20%, rgba(180, 156, 255, 0.18), transparent 32%),
    rgba(255, 255, 255, 0.045);
  overflow: hidden;
}

.proof-home {
  margin-top: 0;
  margin-bottom: 72px;
}

.proof-strip:hover .proof-story img {
  transform: scale(1.035);
  opacity: 0.9;
}

.proof-copy {
  padding: clamp(1.1rem, 2.2vw, 2rem);
}

.proof-copy h2 {
  max-width: 760px;
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4vw, 4.5rem);
  line-height: 0.95;
}

.proof-copy p {
  max-width: 680px;
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
}

.proof-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.proof-pills span {
  padding: 0.45rem 0.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 900;
}

.proof-story {
  position: relative;
  min-height: 420px;
  border-left: 1px solid var(--line);
  background: #09090d;
  overflow: hidden;
}

.proof-story img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 650ms ease, opacity 650ms ease;
}

.proof-story::after {
  content: "Instagram testimonials";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(9, 9, 13, 0.72);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  backdrop-filter: blur(18px);
}

.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin: auto 0 0;
  padding-top: 1.4rem;
}

.work-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.28rem 0.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  font-weight: 800;
}

.portfolio-note {
  width: min(var(--max), calc(100vw - 32px));
  margin: 1rem auto 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.portfolio-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.legal-main {
  width: min(920px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 140px 0 72px;
}

.legal-hero {
  margin-bottom: 2rem;
}

.legal-hero h1 {
  margin: 0;
  font-size: 3.4rem;
  line-height: 1.02;
}

.legal-hero p {
  max-width: 760px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.legal-content {
  display: grid;
  gap: 1rem;
}

.legal-card {
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.legal-card h2 {
  margin: 0 0 0.7rem;
  font-size: 1.18rem;
}

.legal-card p,
.legal-card li {
  color: rgba(255, 255, 255, 0.72);
}

.legal-card p {
  margin: 0.55rem 0;
}

.legal-card ul {
  margin: 0.5rem 0 0;
  padding-left: 1.15rem;
}

.legal-card a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.seo-main {
  padding-top: 104px;
}

.seo-hero {
  width: min(var(--max), calc(100vw - 32px));
  min-height: 68svh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
  gap: 3rem;
  align-items: center;
  padding: 72px 0;
}

.seo-hero h1 {
  margin: 0;
  font-size: 4.4rem;
  line-height: 1;
}

.seo-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.seo-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.seo-panel img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.seo-panel div {
  padding: 1rem;
}

.seo-panel strong,
.seo-panel span {
  display: block;
}

.seo-panel strong {
  margin-bottom: 0.2rem;
  color: #fff;
}

.seo-panel span {
  color: rgba(255, 255, 255, 0.64);
}

.seo-band {
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto 96px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.seo-band article {
  min-height: 230px;
  padding: 1.25rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.seo-band h2 {
  margin: 2.8rem 0 0.7rem;
  font-size: 1.24rem;
}

.seo-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js-reveal .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.js-reveal .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes softPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.82;
  }

  50% {
    transform: scale(1.28);
    opacity: 1;
  }
}

@keyframes signalSweep {
  0%,
  42% {
    transform: translateX(-115%);
    opacity: 0;
  }

  55% {
    opacity: 1;
  }

  82%,
  100% {
    transform: translateX(115%);
    opacity: 0;
  }
}

@keyframes floatShape {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
    opacity: 0.75;
  }

  50% {
    transform: translate3d(-12px, 14px, 0) rotate(8deg);
    opacity: 1;
  }
}

@keyframes pulseBar {
  0%,
  100% {
    transform: scaleX(1);
  }

  50% {
    transform: scaleX(1.18);
  }
}

@keyframes previewPop {
  0% {
    transform: translateY(8px);
    opacity: 0.55;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 1040px) {
  .hero-photo-orbit {
    top: 16%;
    width: 220px;
    opacity: 0.72;
  }

  .service-grid,
  .package-grid,
  .portfolio-grid,
  .proof-strip,
  .process-list,
  .engine-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-dna-grid {
    grid-template-columns: 1fr;
  }

  .builder-copy,
  .builder-workspace,
  .intro-grid,
  .portfolio-hero,
  .seo-hero {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .site-preview {
    position: static;
  }

  .feature-picks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-story {
    min-height: 320px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 10px 12px;
  }

  .nav-shell {
    width: calc(100vw - 24px);
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 68px 12px auto 12px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0.5rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(14, 14, 18, 0.95);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    min-height: 46px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
  }

  .language-switch {
    margin-top: 0.5rem;
  }

  .hero-section {
    min-height: 92svh;
    padding-top: 102px;
  }

  .hero-photo-orbit {
    top: 98px;
    right: 18px;
    width: 106px;
  }

  .hero-content {
    padding-bottom: 2rem;
  }

  .hero-content .eyebrow {
    max-width: calc(100% - 128px);
  }

  .hero-content h1 {
    font-size: 3.7rem;
  }

  .hero-lede {
    font-size: 1.07rem;
  }

  .hero-signal,
  .metric-band {
    grid-template-columns: 1fr;
  }

  .hero-signal span,
  .metric {
    min-height: 64px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric-band {
    width: calc(100vw - 32px);
  }

  .section-shell,
  .builder-section,
  .contact-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .intro-copy h2,
  .section-heading h2,
  .builder-copy h2,
  .contact-inner h2,
  .portfolio-hero h1,
  .legal-hero h1,
  .seo-hero h1 {
    font-size: 2.25rem;
  }

  .service-grid,
  .package-grid,
  .engine-grid,
  .portfolio-grid,
  .seo-band,
  .process-list,
  .field-grid,
  .palette-controls,
  .feature-picks,
  .proof-strip,
  .color-grid,
  .preview-panels {
    grid-template-columns: 1fr;
  }

  .service-card,
  .package-card,
  .process-step {
    min-height: 230px;
  }

  .service-card h3,
  .package-card h3,
  .process-step h3 {
    margin-top: 2.7rem;
  }

  .engine-grid article {
    min-height: 190px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .engine-grid article:last-child {
    border-bottom: 0;
  }

  .builder-workspace,
  .builder-copy {
    width: calc(100vw - 32px);
  }

  .builder-copy .section-kicker,
  .builder-copy h2,
  .builder-copy p:last-child {
    grid-column: 1;
    grid-row: auto;
  }

  .preview-browser {
    min-height: 600px;
  }

  .preview-hero h3 {
    font-size: 1.9rem;
  }

  .portfolio-main {
    padding-top: 82px;
  }

  .portfolio-hero {
    min-height: auto;
    padding: 44px 0;
  }

  .portfolio-showpiece {
    min-height: 360px;
  }

  .screen-grid,
  .portfolio-note {
    grid-template-columns: 1fr;
  }

  .portfolio-note .btn {
    width: 100%;
  }

  .proof-home {
    margin-bottom: 56px;
  }

  .proof-copy h2 {
    font-size: 2.25rem;
  }

  .proof-story {
    min-height: 260px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .brand-copy span {
    display: none;
  }

  .hero-content h1 {
    font-size: 3.15rem;
  }

  .btn {
    width: 100%;
  }

  .hero-actions,
  .contact-actions,
  .form-actions {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
