﻿:root {
  --bg: #040d11;
  --bg-elevated: #08161b;
  --bg-panel: rgba(10, 24, 31, 0.78);
  --bg-panel-strong: rgba(8, 18, 24, 0.9);
  --surface: #f5fbfd;
  --surface-2: #e8f1f4;
  --surface-3: #d7e5ea;
  --text: #0f222a;
  --text-soft: rgba(15, 34, 42, 0.72);
  --text-faint: rgba(15, 34, 42, 0.56);
  --white: #ffffff;
  --line: rgba(15, 34, 42, 0.10);
  --line-strong: rgba(255, 255, 255, 0.12);

  --emerald: #18c187;
  --emerald-deep: #0b6c55;
  --gold: #f0b94b;
  --gold-soft: #ffd98a;
  --cyan: #67d9ff;
  --cyan-soft: #c8f4ff;

  --gradient-brand: linear-gradient(135deg, #13b67f 0%, #0d7d65 50%, #55d8ff 100%);
  --gradient-hero: linear-gradient(145deg, #041015 0%, #07151b 38%, #0d222a 100%);
  --gradient-card: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  --gradient-light: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(232, 241, 244, 0.82));

  --shadow-sm: 0 18px 32px rgba(4, 13, 17, 0.08);
  --shadow-md: 0 28px 64px rgba(4, 13, 17, 0.16);
  --shadow-lg: 0 36px 96px rgba(4, 13, 17, 0.28);
  --shadow-glow: 0 0 0 1px rgba(103, 217, 255, 0.10), 0 30px 80px rgba(4, 13, 17, 0.26);

  --radius-sm: 18px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --radius-xl: 40px;
  --radius-pill: 999px;

  --container: 1240px;
  --nav-h: 86px;
  --section-pad: clamp(5rem, 8vw, 8rem);

  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-spring: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 220ms;
  --dur: 480ms;
  --dur-slow: 760ms;
}

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

html {
  scroll-behavior: smooth;
}

body.site {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  position: relative;
}

body.site::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(103, 217, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(103, 217, 255, 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.44), transparent 55%);
  pointer-events: none;
  opacity: 0.22;
  z-index: 0;
}

main,
.site-header,
.site-footer {
  position: relative;
  z-index: 1;
}

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

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

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

.hidden {
  display: none !important;
}

.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;
}

:focus-visible {
  outline: 3px solid rgba(103, 217, 255, 0.46);
  outline-offset: 3px;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(4.5rem, 7vw, 7.2rem) 0;
  overflow: clip;
}

.section--light {
  background:
    radial-gradient(900px 520px at 15% 0%, rgba(103, 217, 255, 0.10), transparent 58%),
    linear-gradient(180deg, #f8fcfd 0%, #edf5f7 100%);
}

.section--dark {
  background:
    radial-gradient(760px 420px at 15% 15%, rgba(24, 193, 135, 0.18), transparent 60%),
    radial-gradient(680px 420px at 90% 10%, rgba(103, 217, 255, 0.14), transparent 58%),
    var(--gradient-hero);
  color: var(--white);
}

.section--slate {
  background:
    radial-gradient(760px 440px at 10% 0%, rgba(24, 193, 135, 0.16), transparent 58%),
    linear-gradient(180deg, #07141a 0%, #0a1820 100%);
  color: var(--white);
}

.section--mesh::before,
.section--bridge::before,
.section--glow::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.section--mesh::before {
  background:
    linear-gradient(rgba(103, 217, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(103, 217, 255, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.28;
}

.section--bridge::before {
  background:
    radial-gradient(620px 280px at 85% 20%, rgba(24, 193, 135, 0.12), transparent 70%),
    radial-gradient(540px 320px at 20% 100%, rgba(103, 217, 255, 0.10), transparent 72%);
}

.section--glow::before {
  background:
    radial-gradient(600px 260px at 10% 0%, rgba(240, 185, 75, 0.12), transparent 68%),
    radial-gradient(600px 380px at 100% 10%, rgba(103, 217, 255, 0.12), transparent 70%);
}

.section__head {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
}

.section__head--center {
  max-width: 840px;
  margin-inline: auto;
  text-align: center;
}

.section__head--split {
  display: grid;
  gap: 1.25rem;
  align-items: end;
}

.eyebrow,
.eyebrow-pill,
.site-footer__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 800;
}

.eyebrow {
  color: var(--emerald-deep);
}

.eyebrow--gold {
  color: var(--gold-soft);
}

.eyebrow--cyan {
  color: var(--cyan-soft);
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 1.15rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 38px rgba(4, 13, 17, 0.18);
}

.eyebrow-pill__dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0.45rem rgba(240, 185, 75, 0.14);
  animation: pulse 1.8s ease-in-out infinite;
}

.h2,
.h3,
.hero__title,
.site-footer__title,
.story-card__signature,
.success__title {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  letter-spacing: -0.03em;
}

.h2 {
  margin: 0.85rem 0 0;
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  line-height: 0.98;
}

.h2--light {
  color: var(--white);
}

.h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.08;
}

.lede {
  margin: 0;
  max-width: 48rem;
  color: var(--text-soft);
  font-size: 1.05rem;
}

.lede--light {
  color: rgba(255, 255, 255, 0.74);
}

.section--dark .lede,
.section--slate .lede,
.section--dark .section__head .lede,
.section--slate .section__head .lede {
  color: rgba(255, 255, 255, 0.74);
}

.btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  border-radius: var(--radius-pill);
  font-weight: 800;
  line-height: 1;
  transition:
    transform var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out),
    background var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out),
    color var(--dur-fast) var(--ease-out);
}

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

.btn--nav {
  display: none;
  min-height: 2.9rem;
  padding: 0 1.1rem;
  font-size: 0.85rem;
}

.btn--cta,
.btn--submit,
.btn--footer,
.btn--mobile {
  min-height: 3.7rem;
  padding: 0 1.45rem;
  font-size: 0.98rem;
}

.btn--primary {
  background: linear-gradient(135deg, #f0b94b 0%, #ffd98a 100%);
  color: #14232a;
  box-shadow: 0 20px 44px rgba(240, 185, 75, 0.22);
}

.btn--primary:hover {
  box-shadow: 0 26px 54px rgba(240, 185, 75, 0.28);
}

.btn--secondary,
.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

.btn--secondary:hover,
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(103, 217, 255, 0.28);
}

.btn--light {
  background: var(--white);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.btn--light:hover {
  box-shadow: var(--shadow-md);
}

.section--light .btn--secondary,
.section--bridge .btn--secondary {
  background: rgba(15, 34, 42, 0.05);
  color: var(--text);
  border-color: rgba(15, 34, 42, 0.10);
  backdrop-filter: none;
}

.section--light .btn--secondary:hover,
.section--bridge .btn--secondary:hover {
  background: rgba(15, 34, 42, 0.09);
  border-color: rgba(15, 34, 42, 0.18);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 1rem 0 0;
}

.site-header__shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--nav-h);
  padding: 0.9rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(7, 18, 24, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 46px rgba(4, 13, 17, 0.24);
  transition: background var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}

.site-header.is-scrolled .site-header__shell {
  background: rgba(7, 18, 24, 0.88);
  box-shadow: 0 24px 60px rgba(4, 13, 17, 0.34);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.brand__frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 24px rgba(103, 217, 255, 0.08);
}

.brand__mark {
  width: 2rem;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(240, 185, 75, 0.12));
}

.brand__lockup {
  display: none;
  height: 2.15rem;
  width: auto;
  filter:
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.34))
    drop-shadow(0 0 2px rgba(255, 255, 255, 0.18))
    drop-shadow(1px 0 0 rgba(255, 255, 255, 0.07))
    drop-shadow(-1px 0 0 rgba(255, 255, 255, 0.07))
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.07))
    drop-shadow(0 -1px 0 rgba(255, 255, 255, 0.07));
}

.site-nav {
  display: none;
  align-items: center;
  gap: 1.35rem;
  min-width: 0;
}

.site-nav__link {
  position: relative;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  transition: color var(--dur-fast) var(--ease-out);
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.6rem;
  height: 0.16rem;
  border-radius: 999px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--dur-fast) var(--ease-out);
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: #ffffff;
}

.site-nav__link:hover::after,
.site-nav__link.is-active::after {
  transform: scaleX(1);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-header__burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}

.site-header__burger:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.mobile-menu {
  margin-top: 0.85rem;
  padding-bottom: 0.4rem;
}

.mobile-menu__inner {
  display: grid;
  gap: 0.75rem;
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  background: rgba(8, 18, 24, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
}

.mobile-menu__link {
  padding: 0.75rem 0.2rem;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu__actions {
  display: grid;
  gap: 0.75rem;
  padding-top: 0.4rem;
}

.hero {
  position: relative;
  min-height: calc(100vh - 1rem);
  padding: calc(var(--nav-h) + 2.2rem) 0 2.5rem;
  background: var(--gradient-hero);
  color: var(--white);
  overflow: clip;
}

.hero__backdrop,
.hero__glow,
.hero-dashboard__ring {
  position: absolute;
}

.hero__backdrop {
  inset: 0;
  pointer-events: none;
}

.hero__glow {
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.7;
}

.hero__glow--emerald {
  width: 34rem;
  height: 34rem;
  left: -10rem;
  top: 8rem;
  background: radial-gradient(circle, rgba(24, 193, 135, 0.42) 0%, rgba(24, 193, 135, 0) 72%);
}

.hero__glow--cyan {
  width: 28rem;
  height: 28rem;
  right: -8rem;
  top: 10rem;
  background: radial-gradient(circle, rgba(103, 217, 255, 0.30) 0%, rgba(103, 217, 255, 0) 72%);
}

.hero__glow--gold {
  width: 22rem;
  height: 22rem;
  left: 40%;
  bottom: 1rem;
  background: radial-gradient(circle, rgba(240, 185, 75, 0.18) 0%, rgba(240, 185, 75, 0) 72%);
}

.hero__inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero__intro,
.hero__visual,
.hero__footer,
.website-hero__content,
.website-hero__visual {
  opacity: 0;
  transform: translateY(1.2rem);
  transition:
    opacity var(--dur-slow) var(--ease-out),
    transform var(--dur-slow) var(--ease-out);
}

.hero--in .hero__intro,
.hero--in .hero__visual,
.hero--in .hero__footer,
.hero--in .website-hero__content,
.hero--in .website-hero__visual {
  opacity: 1;
  transform: translateY(0);
}

.hero__intro {
  display: grid;
  gap: 1.4rem;
}

.hero__title {
  margin: 0;
  font-size: clamp(3rem, 10vw, 6.4rem);
  line-height: 0.92;
}

.hero__title span,
.website-hero__title span {
  background: linear-gradient(135deg, #ffffff 0%, #b9f5ff 38%, #ffd98a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lede {
  max-width: 42rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.hero__actions {
  display: grid;
  gap: 0.85rem;
}

.hero__trust,
.problem-grid,
.value-grid,
.service-grid,
.promo-points,
.inquiry__points,
.website-card-grid,
.website-fit-grid,
.faq-grid {
  display: grid;
  gap: 1.15rem;
}

.trust-card,
.surface-card,
.metric-card,
.value-card,
.timeline__item,
.service-panel,
.promo-point,
.inquiry-point,
.inquiry__card,
.story-card,
.site-preview,
.website-cta-band,
.faq-item,
.website-metric,
.pricing-signal {
  border-radius: var(--radius-md);
}

.trust-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 20px 42px rgba(4, 13, 17, 0.16);
  backdrop-filter: blur(14px);
}

.trust-card strong,
.hero-stat__value,
.metric-card__value,
.site-preview__hero h3,
.story-card__signature,
.site-footer__title {
  font-weight: 700;
}

.trust-card p,
.surface-card p,
.value-card p,
.metric-card__label,
.timeline__item p,
.service-panel p,
.promo-point p,
.inquiry-point p,
.story-card__text,
.site-footer__text,
.site-footer__cta p,
.faq-item p,
.pricing-signal p,
.website-metric span {
  margin: 0;
  color: inherit;
}

.trust-card__icon,
.surface-card__icon,
.service-panel__badge,
.inquiry-point i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.10);
  color: var(--gold-soft);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.trust-card p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.3rem;
}

.hero__visual {
  justify-self: center;
}

.hero-dashboard {
  position: relative;
  width: min(100%, 31rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.hero-dashboard__ring {
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-dashboard__ring--outer {
  inset: 0.7rem;
  box-shadow: inset 0 0 80px rgba(103, 217, 255, 0.07);
  animation: spinSlow 18s linear infinite;
}

.hero-dashboard__ring--inner {
  inset: 12%;
  border-style: dashed;
  border-color: rgba(240, 185, 75, 0.26);
  animation: spinReverse 12s linear infinite;
}

.hero-dashboard__core {
  position: relative;
  z-index: 1;
  width: 44%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.18), rgba(8, 18, 24, 0.98) 68%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 60px rgba(24, 193, 135, 0.18),
    0 30px 80px rgba(4, 13, 17, 0.4);
}

.hero-dashboard__mark {
  width: 62%;
  filter: drop-shadow(0 0 18px rgba(240, 185, 75, 0.22));
}

.hero-float {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 0.25rem;
  min-width: 9rem;
  padding: 0.9rem 1rem;
  border-radius: 1.25rem;
  background: rgba(9, 24, 31, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: var(--shadow-glow);
  font-size: 0.9rem;
  backdrop-filter: blur(16px);
  animation: float 5.6s ease-in-out infinite;
}

.hero-float strong {
  font-weight: 800;
}

.hero-float__label {
  color: rgba(103, 217, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-float--one {
  top: 7%;
  left: -3%;
}

.hero-float--two {
  right: -4%;
  top: 28%;
  animation-delay: -1.8s;
}

.hero-float--three {
  left: 10%;
  bottom: 2%;
  animation-delay: -0.9s;
}

.hero__footer {
  display: grid;
  gap: 1rem;
  margin-top: 2.25rem;
}

.hero-stat {
  display: grid;
  gap: 0.3rem;
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(18px);
}

.hero-stat__value {
  color: var(--cyan-soft);
  font-size: 1.1rem;
}

.hero-stat__label {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
}

.surface-card,
.metric-card,
.timeline__item,
.inquiry__card,
.story-card,
.site-preview,
.faq-item,
.pricing-signal,
.website-metric {
  background: var(--gradient-light);
  border: 1px solid rgba(15, 34, 42, 0.08);
  box-shadow: var(--shadow-sm);
}

.surface-card,
.value-card,
.metric-card,
.timeline__item,
.service-panel,
.promo-point,
.inquiry-point,
.faq-item,
.website-metric {
  padding: 1.4rem;
}

.surface-card:hover,
.timeline__item:hover,
.service-panel:hover,
.story-card:hover,
.faq-item:hover,
.website-metric:hover,
.pricing-signal:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.surface-card,
.timeline__item,
.service-panel,
.story-card,
.faq-item,
.website-metric,
.pricing-signal {
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}

.surface-card__icon,
.service-panel__badge {
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(24, 193, 135, 0.16), rgba(103, 217, 255, 0.16));
  color: var(--emerald-deep);
}

.surface-card--problem {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
}

.surface-card--dark,
.value-card,
.metric-card,
.service-panel,
.story-card,
.website-cta-band,
.site-footer__cta {
  background: rgba(9, 24, 31, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: var(--shadow-glow);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.surface-card--dark .surface-card__icon,
.value-card i,
.metric-card__value,
.story-card__signature,
.site-footer__heading,
.site-footer__eyebrow {
  color: var(--cyan-soft);
}

.value-grid,
.problem-grid,
.service-grid,
.website-card-grid,
.website-fit-grid,
.faq-grid {
  position: relative;
  z-index: 1;
}

.split-layout {
  display: grid;
  gap: 1.2rem;
}

.metric-stack {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.metric-card__value {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.5rem;
  font-weight: 800;
}

.metric-card__label {
  color: rgba(255, 255, 255, 0.68);
}

.value-card i {
  font-size: 1.5rem;
  margin-bottom: 0.85rem;
}

.value-card p,
.surface-card--dark p,
.service-panel p,
.story-card__text,
.site-footer__cta p {
  color: rgba(255, 255, 255, 0.74);
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline__item {
  position: relative;
  padding-top: 3.2rem;
}

.timeline__num {
  position: absolute;
  left: 1.25rem;
  top: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, var(--emerald) 0%, var(--cyan) 100%);
  color: var(--bg);
  font-weight: 900;
  box-shadow: 0 18px 28px rgba(24, 193, 135, 0.24);
}

.timeline__item p,
.surface-card p {
  color: rgba(15, 34, 42, 0.82);
  margin-top: 0.8rem;
}

.promo-point p,
.faq-item p {
  color: rgba(15, 34, 42, 0.8);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.7rem;
}

.check-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.76);
}

.service-panel--light {
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  border: 1px solid rgba(15, 34, 42, 0.08);
  box-shadow: var(--shadow-sm);
}

.service-panel--light p,
.service-panel--light .check-list li {
  color: var(--text-soft);
}

.service-panel--light .service-panel__badge {
  color: var(--emerald-deep);
}

.promo-layout,
.inquiry {
  display: grid;
  gap: 1.75rem;
}

.promo-points {
  margin-top: 1.6rem;
}

.promo-point {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(15, 34, 42, 0.08);
  box-shadow: var(--shadow-sm);
}

.promo-point strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.site-preview {
  overflow: hidden;
}

.site-preview__topbar {
  display: flex;
  gap: 0.45rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid rgba(15, 34, 42, 0.08);
  background: rgba(255, 255, 255, 0.74);
}

.site-preview__topbar span,
.website-shell__topbar span {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: rgba(15, 34, 42, 0.16);
}

.site-preview__body {
  padding: 1.25rem;
}

.site-preview__hero {
  padding: 1.4rem;
  border-radius: 1.5rem;
  background: var(--gradient-hero);
  color: var(--white);
}

.site-preview__pill {
  display: inline-flex;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan-soft);
}

.site-preview__hero h3 {
  margin: 0.95rem 0 0.55rem;
  font-size: clamp(1.35rem, 4vw, 2rem);
  line-height: 1;
}

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

.site-preview__cards {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.site-preview__cards div {
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: rgba(15, 34, 42, 0.06);
  color: var(--text);
  font-weight: 700;
}

.story-card {
  display: grid;
  gap: 1.2rem;
  padding: 1.6rem;
}

.story-card__mark {
  display: grid;
  place-items: center;
  align-self: center;
  min-height: 100%;
}

.story-card__mark img {
  width: clamp(7.5rem, 24vw, 11.5rem);
  filter: drop-shadow(0 24px 56px rgba(240, 185, 75, 0.16));
}

.story-card__content {
  display: grid;
  gap: 0.9rem;
  align-content: center;
}

.story-card__signature {
  color: var(--gold-soft);
  font-size: 1.05rem;
}

.inquiry__intro,
.inquiry__card {
  position: relative;
  z-index: 1;
}

.inquiry__intro {
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: 1.35rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(15, 34, 42, 0.08);
  box-shadow: var(--shadow-sm);
}

.inquiry-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 34, 42, 0.08);
  box-shadow: var(--shadow-sm);
}

.inquiry-point i {
  background: linear-gradient(135deg, rgba(24, 193, 135, 0.16), rgba(103, 217, 255, 0.16));
  color: var(--emerald-deep);
}

.inquiry-point strong {
  display: block;
  margin-bottom: 0.2rem;
}

.inquiry-point p {
  color: var(--text-soft);
}

.inquiry__card {
  padding: 1.85rem;
  background: rgba(8, 18, 24, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-glow);
}

.inquiry__card-head {
  margin-bottom: 1.45rem;
}

.inquiry__card-head p {
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.inquiry__card .h3,
.inquiry__card-head .h3 {
  color: #ffffff;
}

.form,
.form__grid {
  display: grid;
  gap: 1rem;
}

.field label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.86);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 0.95rem 1rem;
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}

.field select {
  appearance: none;
  background: var(--white);
  color: var(--text);
}

.field select option {
  background: var(--white);
  color: var(--text);
}

.field textarea {
  min-height: 9rem;
  resize: vertical;
}

.inquiry .lede {
  color: rgba(15, 34, 42, 0.8);
}

.inquiry .h2 {
  max-width: 12ch;
}

.inquiry__points {
  margin-top: 0.25rem;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(103, 217, 255, 0.54);
  box-shadow: 0 0 0 4px rgba(103, 217, 255, 0.16);
  background: rgba(255, 255, 255, 0.11);
  outline: none;
}

.fineprint,
.success__text,
.site-footer__bottom {
  font-size: 0.9rem;
}

.fineprint {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  text-align: center;
}

.success {
  text-align: center;
  padding: 1.5rem 0 0;
}

.success__icon {
  font-size: 3.4rem;
  color: var(--gold-soft);
}

.success__title {
  margin: 0.8rem 0 0.4rem;
  color: var(--white);
  font-size: 2rem;
}

.success__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer {
  padding: 2rem 0 1.4rem;
  background: linear-gradient(180deg, #050f13 0%, #07161b 100%);
  color: var(--white);
  overflow: clip;
}

.site-footer__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(540px 220px at 10% 10%, rgba(24, 193, 135, 0.18), transparent 70%),
    radial-gradient(520px 280px at 100% 0%, rgba(103, 217, 255, 0.14), transparent 70%);
  pointer-events: none;
}

.site-footer__grid {
  position: relative;
  display: grid;
  gap: 1.2rem;
  padding: 2rem 0;
}

.site-footer__brand,
.site-footer__column,
.site-footer__cta {
  position: relative;
  z-index: 1;
}

.site-footer__title {
  margin: 0.6rem 0;
  font-size: clamp(1.9rem, 5vw, 3rem);
  line-height: 0.98;
}

.site-footer__text {
  color: rgba(255, 255, 255, 0.72);
  max-width: 30rem;
}

.site-footer__heading {
  margin-bottom: 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gold-soft);
}

.site-footer__column a {
  display: block;
  width: fit-content;
  margin-bottom: 0.6rem;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
  transition: color var(--dur-fast) var(--ease-out);
}

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

.site-footer__cta {
  padding: 1.4rem;
}

.site-footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}

.site-footer__social a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
}

.site-footer__bottom {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.48);
}

.reveal {
  opacity: 0;
  transform: translateY(1.2rem);
  transition:
    opacity var(--dur) var(--ease-out),
    transform var(--dur) var(--ease-out);
}

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinReverse {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .hero__intro,
  .hero__visual,
  .hero__footer,
  .website-hero__content,
  .website-hero__visual {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (min-width: 720px) {
  .container {
    width: min(var(--container), calc(100% - 3rem));
  }

  .hero__actions,
  .hero__footer,
  .problem-grid,
  .value-grid,
  .service-grid,
  .website-card-grid,
  .website-fit-grid,
  .faq-grid,
  .form__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .brand {
    gap: 0;
  }

  .brand__frame {
    display: none;
  }

  .brand__lockup {
    display: block;
  }

  .site-nav {
    display: flex;
  }

  .site-header__burger,
  .mobile-menu {
    display: none !important;
  }

  .hero__inner,
  .promo-layout,
  .inquiry,
  .section__head--split,
  .split-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .story-card {
    grid-template-columns: 0.72fr 1.28fr;
    gap: 2rem;
    padding: 2.15rem 2.25rem;
    align-items: center;
  }

  .inquiry {
    gap: 2rem;
    align-items: start;
  }

  .hero__inner {
    gap: 3rem;
  }

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

  .problem-grid,
  .service-grid,
  .website-card-grid,
  .website-fit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .timeline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
  }

  .timeline__item::before {
    content: "";
    position: absolute;
    top: 2.15rem;
    right: -0.55rem;
    width: 1.1rem;
    height: 1px;
    background: rgba(15, 34, 42, 0.16);
  }

  .timeline__item:last-child::before {
    display: none;
  }

  .story-card {
    align-items: center;
    gap: 2rem;
  }

  .site-footer__grid {
    grid-template-columns: 1.7fr 0.8fr 0.8fr 1fr;
    gap: 1.5rem;
  }

  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 1120px) {
  .split-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1.5rem;
  }

  .split-layout__intro {
    position: sticky;
    top: calc(var(--nav-h) + 2rem);
    align-self: start;
  }

  .story-card {
    grid-template-columns: 0.62fr 1.38fr;
    gap: 2.4rem;
  }

  .story-card__mark img {
    width: clamp(9rem, 20vw, 13rem);
  }
}
