:root {
  --bg: #ffffff;
  --bg-2: #f5f7fb;
  --panel: #ffffff;
  --panel-strong: #ffffff;
  --border: #dbe3ee;
  --text: #16253d;
  --muted: #64748b;
  --blue: #2563eb;
  --cyan: #0f766e;
  --purple: #475569;
  --orange: #d97706;
  --shadow: rgba(22, 37, 61, 0.12);
  --radius: 8px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background:
    linear-gradient(120deg, rgba(79, 140, 255, 0.09), transparent 26%),
    linear-gradient(240deg, rgba(249, 115, 22, 0.08), transparent 24%),
    linear-gradient(180deg, var(--bg), #070b19 44%, #050816);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.68), transparent 82%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent 0 74px, rgba(34, 211, 238, 0.025) 75px, transparent 76px);
  opacity: 0.72;
  animation: ambient-scan 18s linear infinite;
}

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

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

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.section-band {
  position: relative;
  padding: 88px 0;
}

.page-view {
  display: none;
}

.page-view.is-active {
  display: block;
  animation: page-enter 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--orange));
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.45);
  transition: width 120ms linear;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(5, 8, 22, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.52), rgba(79, 140, 255, 0.46), transparent);
  opacity: 0.62;
}

.nav-shell {
  width: min(1160px, calc(100% - 40px));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(79, 140, 255, 0.7);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(79, 140, 255, 0.28), rgba(34, 211, 238, 0.08));
  box-shadow: 0 0 26px rgba(79, 140, 255, 0.24);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
}

.brand-text {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand-text small {
  color: var(--muted);
  max-width: 240px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(248, 250, 252, 0.82);
  font-size: 0.86rem;
  font-weight: 600;
}

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

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--cyan);
}

.nav-links a.is-current {
  color: var(--cyan);
}

.nav-links a.is-current:not(.nav-cta) {
  position: relative;
}

.nav-links a.is-current:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.45);
}

.nav-cta {
  padding: 12px 16px;
  border: 1px solid rgba(34, 211, 238, 0.36);
  border-radius: 8px;
  background: rgba(34, 211, 238, 0.1);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.mobile-sticky-cta {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 80;
  display: none;
  padding: 13px 16px;
  border: 1px solid rgba(34, 211, 238, 0.34);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #031225;
  font-weight: 900;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.34), 0 0 32px rgba(34, 211, 238, 0.22);
}

.hero {
  padding-top: 54px;
  padding-bottom: 22px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.96fr) minmax(480px, 1.04fr);
  align-items: center;
  gap: 48px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", "Inter", sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 740px;
  font-size: 3.1rem;
  line-height: 1.03;
}

h2 {
  font-size: 2.65rem;
  line-height: 1.09;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.25;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 640px;
  margin: 18px 0 0;
  font-size: 1rem;
}

.hero-service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-service-list span {
  padding: 9px 12px;
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 8px;
  background: rgba(34, 211, 238, 0.075);
  color: rgba(248, 250, 252, 0.9);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button svg,
.nav-cta svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.button-primary {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #031225;
  box-shadow: 0 0 34px rgba(34, 211, 238, 0.25);
}

.button-secondary {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

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

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 0 42px rgba(79, 140, 255, 0.35);
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.proof-strip span {
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(248, 250, 252, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-width: 0;
  justify-self: end;
  width: min(100%, 620px);
}

.hero-visual img,
.audit-image img,
.portfolio-image {
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42), 0 0 38px rgba(79, 140, 255, 0.16);
}

.hero-visual img {
  max-height: 520px;
  padding: 10px;
  object-fit: contain;
}

.trust-band {
  padding: 28px 0 56px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.trust-grid div {
  min-height: 116px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1.05rem;
}

.trust-grid span {
  color: var(--muted);
  line-height: 1.6;
}

.home-overview {
  background: rgba(11, 16, 32, 0.24);
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.overview-card {
  position: relative;
  min-height: 236px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(79, 140, 255, 0.14), transparent 44%),
    linear-gradient(240deg, rgba(249, 115, 22, 0.1), transparent 35%),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.overview-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--orange));
  transform: scaleX(0.24);
  transform-origin: left center;
  transition: transform 240ms ease;
}

.overview-card:hover,
.overview-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(34, 211, 238, 0.36);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.3), 0 0 42px rgba(79, 140, 255, 0.16);
}

.overview-card:hover::before,
.overview-card:focus-visible::before {
  transform: scaleX(1);
}

.overview-card span {
  margin-bottom: auto;
  color: var(--cyan);
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
}

.overview-card p {
  margin-bottom: 0;
}

.home-service-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.home-service-band span {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.08), rgba(249, 115, 22, 0.055)),
    rgba(255, 255, 255, 0.045);
  color: rgba(248, 250, 252, 0.88);
  font-weight: 800;
  text-align: center;
}

.delivery-section {
  background: rgba(5, 8, 22, 0.18);
}

.delivery-grid,
.faq-grid,
.business-terms {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.delivery-card,
.faq-card,
.business-terms article {
  position: relative;
  min-height: 210px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(79, 140, 255, 0.1), rgba(249, 115, 22, 0.04)),
    rgba(255, 255, 255, 0.048);
  backdrop-filter: blur(16px);
}

.delivery-card::before,
.faq-card::before,
.business-terms article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--orange));
}

.delivery-card span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--cyan);
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

.delivery-card p,
.faq-card p,
.business-terms p {
  margin: 12px 0 0;
}

.tab-section {
  background: rgba(11, 16, 32, 0.3);
}

.tabs-shell {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(5, 8, 22, 0.68);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  padding: 14px;
}

.tab-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(5, 8, 22, 0.66);
}

.tab-button {
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: rgba(248, 250, 252, 0.72);
  cursor: pointer;
  font-weight: 800;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.tab-button:hover,
.tab-button:focus-visible,
.tab-button.is-active {
  border-color: rgba(34, 211, 238, 0.34);
  background: linear-gradient(135deg, rgba(79, 140, 255, 0.2), rgba(34, 211, 238, 0.1));
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.tab-panels {
  margin-top: 14px;
}

.tab-panel {
  min-height: 280px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 28px;
  align-items: start;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(79, 140, 255, 0.12), transparent 38%),
    linear-gradient(240deg, rgba(249, 115, 22, 0.08), transparent 32%),
    rgba(255, 255, 255, 0.045);
}

.tab-panel[hidden] {
  display: none;
}

.panel-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 10px;
  border: 1px solid rgba(249, 115, 22, 0.32);
  border-radius: 8px;
  background: rgba(249, 115, 22, 0.1);
  color: #ffd2b3;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tab-panel h3 {
  font-size: 1.8rem;
}

.tab-panel p {
  margin: 14px 0 0;
}

.improvement-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.improvement-list li {
  position: relative;
  padding: 16px 16px 16px 42px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(248, 250, 252, 0.86);
  line-height: 1.5;
}

.improvement-list li::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 18px;
  width: 9px;
  height: 9px;
  border-radius: 3px;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.45);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  margin: 16px 0 0;
}

.services-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.profile-card,
.timeline-step,
.portfolio-card,
.why-card,
.contact-form {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  backdrop-filter: blur(16px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.service-card,
.profile-card,
.portfolio-card,
.why-card {
  padding: 24px;
}

.service-card:hover,
.profile-card:hover,
.portfolio-card:hover,
.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.32);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24), 0 0 34px var(--shadow);
}

.icon-wrap {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid rgba(79, 140, 255, 0.38);
  border-radius: 8px;
  background: rgba(79, 140, 255, 0.12);
  color: var(--blue);
}

.icon-wrap svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.accent-cyan {
  border-color: rgba(34, 211, 238, 0.38);
  background: rgba(34, 211, 238, 0.11);
  color: var(--cyan);
}

.accent-purple {
  border-color: rgba(168, 85, 247, 0.38);
  background: rgba(168, 85, 247, 0.12);
  color: var(--purple);
}

.accent-orange {
  border-color: rgba(249, 115, 22, 0.4);
  background: rgba(249, 115, 22, 0.11);
  color: var(--orange);
}

.service-card p,
.profile-card p,
.portfolio-card p,
.why-card p {
  margin: 12px 0 0;
}

.service-points,
.cloudflare-benefits {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-points li,
.cloudflare-benefits li {
  position: relative;
  padding-left: 20px;
  color: rgba(248, 250, 252, 0.82);
  line-height: 1.5;
}

.service-points li::before,
.cloudflare-benefits li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 3px;
  background: var(--cyan);
}

.section-note {
  max-width: 860px;
  margin: 24px 0 0;
  padding: 18px;
  border: 1px solid rgba(249, 115, 22, 0.22);
  border-radius: 8px;
  background: rgba(249, 115, 22, 0.07);
}

.split-section {
  background: rgba(11, 16, 32, 0.36);
}

.split-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: start;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.profile-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.profile-top p {
  margin: 4px 0 0;
  color: var(--cyan);
  font-weight: 700;
}

.profile-note {
  color: rgba(248, 250, 252, 0.78);
  font-weight: 700;
}

.avatar {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(34, 211, 238, 0.45);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(34, 211, 238, 0.2), rgba(79, 140, 255, 0.1));
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.avatar-alt {
  border-color: rgba(249, 115, 22, 0.45);
  background: linear-gradient(145deg, rgba(249, 115, 22, 0.2), rgba(168, 85, 247, 0.12));
}

.skill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.skill-list span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(248, 250, 252, 0.82);
  font-size: 0.86rem;
  font-weight: 700;
}

.cloudflare-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  align-items: center;
  margin-top: 18px;
  padding: 24px;
  border: 1px solid rgba(249, 115, 22, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(249, 115, 22, 0.13), rgba(34, 211, 238, 0.06)),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

.cloudflare-logo {
  min-height: 104px;
  display: grid;
  place-items: center;
  grid-template-rows: 48px auto;
  gap: 6px;
  overflow: hidden;
  padding: 12px 14px 10px;
  border: 1px solid rgba(249, 115, 22, 0.32);
  border-radius: 8px;
  background: rgba(5, 8, 22, 0.42);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.45rem;
}

.cloudflare-cloud {
  position: relative;
  width: 76px;
  height: 34px;
  align-self: end;
  border-radius: 34px;
  background: linear-gradient(135deg, #f97316, #facc15);
  box-shadow: 0 0 28px rgba(249, 115, 22, 0.32);
}

.cloudflare-cloud::before,
.cloudflare-cloud::after {
  content: "";
  position: absolute;
  bottom: 13px;
  border-radius: 50%;
  background: inherit;
}

.cloudflare-cloud::before {
  left: 13px;
  width: 31px;
  height: 31px;
}

.cloudflare-cloud::after {
  right: 13px;
  width: 39px;
  height: 39px;
}

.cloudflare-card p {
  margin: 10px 0 0;
}

.cloudflare-benefits strong {
  color: #fff;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 1px);
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(34, 211, 238, 0.42), rgba(249, 115, 22, 0.32), transparent);
}

.timeline-step {
  position: relative;
  padding: 22px 22px 22px 72px;
}

.timeline-step span {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(34, 211, 238, 0.5);
  border-radius: 8px;
  background: rgba(34, 211, 238, 0.1);
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 800;
}

.timeline-step p {
  margin: 10px 0 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.process-card {
  position: relative;
  min-height: 260px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(79, 140, 255, 0.12), rgba(34, 211, 238, 0.035)),
    rgba(255, 255, 255, 0.052);
  backdrop-filter: blur(16px);
  transition: transform 190ms ease, border-color 190ms ease, box-shadow 190ms ease, background 190ms ease;
}

.process-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--orange));
}

.process-card span {
  color: var(--cyan);
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.35rem;
  font-weight: 700;
}

.process-card small {
  display: block;
  margin: 12px 0 16px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.process-card p {
  margin: 12px 0 0;
}

.process-card:hover,
.process-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(34, 211, 238, 0.34);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 24px 78px rgba(0, 0, 0, 0.3), 0 0 38px rgba(79, 140, 255, 0.14);
}

.portfolio-section {
  background: rgba(11, 16, 32, 0.28);
}

.portfolio-grid,
.audit-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: start;
}

.portfolio-grid {
  display: block;
}

.portfolio-grid .section-heading {
  max-width: 760px;
}

.portfolio-image {
  margin-top: 28px;
  aspect-ratio: 4 / 3;
  max-height: 430px;
  object-fit: cover;
}

.portfolio-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.portfolio-card {
  min-height: 0;
  padding: 0;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.portfolio-card:hover,
.portfolio-card:focus-within {
  transform: translateY(-7px);
  border-color: rgba(34, 211, 238, 0.42);
  box-shadow: 0 28px 82px rgba(0, 0, 0, 0.32), 0 0 38px rgba(79, 140, 255, 0.16);
}

.portfolio-preview {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 8, 22, 0.68);
}

.portfolio-preview::after {
  content: "Open website";
  position: absolute;
  inset: auto 16px 16px auto;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(5, 8, 22, 0.84);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.portfolio-preview:hover::after,
.portfolio-preview:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 360ms ease;
}

.portfolio-preview:hover img,
.portfolio-preview:focus-visible img {
  transform: scale(1.045);
}

.portfolio-card-body {
  padding: 22px;
}

.portfolio-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.portfolio-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--cyan));
  opacity: 0.78;
}

.portfolio-card small {
  display: block;
  margin-top: 0;
  color: rgba(248, 250, 252, 0.72);
  font-weight: 800;
  line-height: 1.5;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.project-tags small {
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.card-link,
.book-cta {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  color: var(--cyan);
  font-weight: 900;
}

.portfolio-card .card-link {
  position: relative;
  z-index: 1;
}

.card-link:hover,
.card-link:focus-visible,
.book-cta:hover,
.book-cta:focus-visible {
  color: #fff;
}

.pricing-section {
  background:
    linear-gradient(180deg, rgba(79, 140, 255, 0.055), rgba(5, 8, 22, 0)),
    rgba(11, 16, 32, 0.24);
}

.book-phase,
.featured-label {
  display: inline-flex;
  width: fit-content;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 800;
}

.book-phase {
  margin-bottom: 16px;
  padding: 8px 10px;
  border: 1px solid rgba(34, 211, 238, 0.32);
  background: rgba(34, 211, 238, 0.1);
  color: var(--cyan);
  text-transform: uppercase;
}

.featured-label {
  margin: 0 0 14px;
  padding: 8px 10px;
  border: 1px solid rgba(249, 115, 22, 0.34);
  color: #ffd4b8;
  background: rgba(249, 115, 22, 0.12);
}

.pricing-note {
  max-width: 760px;
  margin: 24px 0 0;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.price-guide {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 24px;
  align-items: start;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.08), rgba(249, 115, 22, 0.06)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 74px rgba(0, 0, 0, 0.2);
}

.price-guide h3 {
  font-size: 1.45rem;
}

.price-guide p:not(.eyebrow) {
  margin: 12px 0 0;
}

.price-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.price-chip-grid span {
  min-height: 86px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(5, 8, 22, 0.42);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.price-chip-grid strong {
  display: block;
  margin-bottom: 8px;
  color: rgba(248, 250, 252, 0.74);
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.maintenance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.maintenance-card {
  position: relative;
  min-height: 330px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(79, 140, 255, 0.12), rgba(34, 211, 238, 0.05)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 22px 68px rgba(0, 0, 0, 0.22);
}

.maintenance-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--orange));
}

.maintenance-card.featured {
  border-color: rgba(34, 211, 238, 0.34);
  background:
    linear-gradient(145deg, rgba(34, 211, 238, 0.14), rgba(249, 115, 22, 0.08)),
    rgba(255, 255, 255, 0.06);
}

.maintenance-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.maintenance-card h3 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.maintenance-card p {
  margin: 12px 0 18px;
}

.maintenance-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.maintenance-card li {
  position: relative;
  padding-left: 20px;
  color: rgba(248, 250, 252, 0.84);
  line-height: 1.45;
}

.maintenance-card li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 3px;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(34, 211, 238, 0.32);
}

.book-library {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
  grid-auto-rows: 1fr;
}

.package-book {
  position: relative;
  min-height: 355px;
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(34, 211, 238, 0.13), transparent 18%),
    linear-gradient(145deg, rgba(79, 140, 255, 0.12), rgba(168, 85, 247, 0.08) 52%, rgba(249, 115, 22, 0.07)),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 24px 74px rgba(0, 0, 0, 0.26);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.package-book::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 12px;
  background: linear-gradient(180deg, var(--cyan), var(--purple), var(--orange));
}

.package-book::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 28%, rgba(255, 255, 255, 0.08), transparent 56%);
  opacity: 0;
  transform: translateX(-45%);
  transition: opacity 220ms ease, transform 360ms ease;
}

.package-book:hover,
.package-book:focus-visible,
.package-book:focus-within,
.package-book.is-open {
  transform: translateY(-7px);
  border-color: rgba(34, 211, 238, 0.42);
  background:
    linear-gradient(90deg, rgba(34, 211, 238, 0.18), transparent 19%),
    linear-gradient(145deg, rgba(79, 140, 255, 0.18), rgba(34, 211, 238, 0.08) 46%, rgba(249, 115, 22, 0.1)),
    rgba(255, 255, 255, 0.075);
  box-shadow: 0 32px 96px rgba(0, 0, 0, 0.36), 0 0 46px rgba(79, 140, 255, 0.18);
}

.package-book:hover::after,
.package-book:focus-visible::after,
.package-book:focus-within::after,
.package-book.is-open::after {
  opacity: 1;
  transform: translateX(36%);
}

.package-book.featured {
  border-color: rgba(34, 211, 238, 0.36);
  box-shadow: 0 26px 86px rgba(0, 0, 0, 0.32), 0 0 42px rgba(34, 211, 238, 0.14);
}

.book-cover,
.book-details {
  position: relative;
  z-index: 1;
}

.book-cover {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 26px 26px 24px 34px;
}

.book-cover h3 {
  margin-top: 4px;
  font-size: 1.4rem;
}

.book-cover p {
  margin: 14px 0 0;
}

.book-cover strong {
  display: block;
  margin-top: auto;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.32rem, 2vw, 1.78rem);
  line-height: 1.12;
}

.book-details {
  max-height: 0;
  margin: 0 20px 0 34px;
  padding: 0 0 0;
  opacity: 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0);
  transition: max-height 320ms ease, opacity 220ms ease, margin 220ms ease, padding 220ms ease, border-color 220ms ease;
}

.package-book:hover .book-details,
.package-book:focus-visible .book-details,
.package-book:focus-within .book-details,
.package-book.is-open .book-details {
  max-height: 520px;
  margin-top: -10px;
  padding: 18px 0 24px;
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.12);
}

.book-details h4 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 1rem;
}

.book-details ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.book-details li {
  position: relative;
  min-height: 24px;
  padding-left: 18px;
  color: rgba(248, 250, 252, 0.84);
  line-height: 1.45;
}

.book-details li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 3px;
  background: var(--orange);
  box-shadow: 0 0 14px rgba(249, 115, 22, 0.34);
}

.book-cta {
  margin-top: 16px;
}

.package-showcase {
  position: relative;
  z-index: 0;
  margin-top: 30px;
  padding: 18px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(79, 140, 255, 0.12), transparent 42%),
    linear-gradient(315deg, rgba(249, 115, 22, 0.08), transparent 34%),
    rgba(5, 8, 22, 0.6);
  box-shadow: 0 28px 92px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.package-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(34, 211, 238, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.78), transparent 76%);
}

.package-showcase::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 160px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 22px rgba(34, 211, 238, 0.7);
  animation: package-scan 7s ease-in-out infinite;
}

.package-carousel-head,
.package-carousel-actions,
.package-carousel-copy,
.package-dots {
  display: flex;
  align-items: center;
}

.package-carousel-head {
  justify-content: space-between;
  gap: 18px;
  min-height: 54px;
  padding: 0 4px 14px;
}

.package-carousel-copy {
  min-width: 0;
  gap: 12px;
}

.package-carousel-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 7px 9px;
  border: 1px solid rgba(34, 211, 238, 0.24);
  border-radius: 8px;
  background: rgba(34, 211, 238, 0.08);
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.package-carousel-copy strong {
  overflow: hidden;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.package-carousel-actions {
  flex: 0 0 auto;
  gap: 9px;
}

.package-counter {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  min-width: 58px;
  color: rgba(248, 250, 252, 0.56);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
}

.package-counter strong {
  color: var(--cyan);
  font-size: 1.05rem;
}

.package-nav {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.package-nav:hover,
.package-nav:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(34, 211, 238, 0.56);
  background: rgba(34, 211, 238, 0.12);
  box-shadow: 0 0 22px rgba(34, 211, 238, 0.16);
}

.package-carousel-viewport {
  position: relative;
  overflow: hidden;
  touch-action: pan-y;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(3, 6, 18, 0.36);
  outline: none;
}

.package-carousel-viewport:focus-visible {
  border-color: rgba(34, 211, 238, 0.6);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.1);
}

.package-showcase .book-library {
  display: flex;
  gap: 0;
  align-items: stretch;
  grid-auto-rows: auto;
  transition: transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.package-showcase .package-book {
  flex: 0 0 100%;
  min-height: 468px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(105deg, rgba(34, 211, 238, 0.1), transparent 30%),
    linear-gradient(145deg, rgba(79, 140, 255, 0.17), rgba(168, 85, 247, 0.07) 54%, rgba(249, 115, 22, 0.09)),
    rgba(255, 255, 255, 0.04);
  box-shadow: none;
  transform: translateZ(0);
}

.package-showcase .package-book::before {
  width: 5px;
}

.package-showcase .package-book::after {
  background: linear-gradient(115deg, transparent 16%, rgba(255, 255, 255, 0.1), transparent 44%);
}

.package-showcase .package-book:hover,
.package-showcase .package-book:focus-visible,
.package-showcase .package-book:focus-within,
.package-showcase .package-book.is-open {
  transform: translateZ(0);
  border-color: transparent;
  box-shadow: none;
}

.package-showcase .package-book.is-open::after {
  opacity: 1;
  transform: translateX(70%);
  transition-duration: 900ms;
}

.package-showcase .package-book.featured {
  border-color: transparent;
  box-shadow: none;
}

.package-showcase .book-cover {
  min-height: 468px;
  padding: 42px 42px 36px 48px;
}

.package-showcase .book-cover::after {
  content: "";
  position: absolute;
  right: 42px;
  bottom: 34px;
  left: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), rgba(79, 140, 255, 0.34), transparent);
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.25);
}

.package-showcase .book-cover h3 {
  max-width: 430px;
  margin-top: 12px;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.04;
}

.package-showcase .book-cover p {
  max-width: 460px;
  font-size: 1.02rem;
  line-height: 1.7;
}

.package-showcase .book-cover strong {
  margin-bottom: 22px;
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
}

.package-showcase .book-details {
  min-height: 100%;
  max-height: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 42px;
  overflow: hidden;
  border-top: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(3, 6, 18, 0.3);
  opacity: 0;
  pointer-events: none;
  transform: translateX(44px);
  transition: opacity 440ms ease 120ms, transform 620ms cubic-bezier(0.22, 1, 0.36, 1) 100ms, background 260ms ease;
}

.package-showcase .package-book:not(.is-open):hover .book-details,
.package-showcase .package-book:not(.is-open):focus-visible .book-details,
.package-showcase .package-book:not(.is-open):focus-within .book-details {
  margin: 0;
  padding: 42px;
  opacity: 0;
  transform: translateX(44px);
}

.package-showcase .package-book.is-open .book-details {
  max-height: none;
  margin: 0;
  padding: 42px;
  border-color: rgba(34, 211, 238, 0.18);
  background: rgba(5, 8, 22, 0.46);
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.package-showcase .book-details h4 {
  color: var(--cyan);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
}

.package-showcase .book-details li {
  padding-left: 22px;
}

.package-showcase .book-details li::before {
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(34, 211, 238, 0.42);
}

.package-showcase .book-cta {
  align-self: flex-start;
  padding: 11px 13px;
  border: 1px solid rgba(34, 211, 238, 0.32);
  border-radius: 8px;
  background: rgba(34, 211, 238, 0.08);
}

.package-dots {
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 14px 0 0;
}

.package-dots button {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.5);
  cursor: pointer;
  transition: width 220ms ease, flex-basis 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.package-dots button:hover,
.package-dots button:focus-visible,
.package-dots button.is-active {
  width: 30px;
  flex-basis: 30px;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.5);
}

.business-terms {
  margin-top: 22px;
}

.business-terms article {
  min-height: 170px;
}

.why-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.why-card {
  position: relative;
  min-height: 265px;
  overflow: hidden;
  padding: 32px;
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--orange));
  transform: scaleX(0.2);
  transform-origin: left center;
  transition: transform 260ms ease;
}

.why-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 12%, rgba(255, 255, 255, 0.06), transparent 38%);
  transform: translateX(-120%);
  transition: transform 420ms ease;
}

.why-card > * {
  position: relative;
  z-index: 1;
}

.why-card:hover,
.why-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(34, 211, 238, 0.42);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.32), 0 0 44px rgba(79, 140, 255, 0.17);
}

.why-card:hover::before,
.why-card:focus-within::before {
  transform: scaleX(1);
}

.why-card:hover::after,
.why-card:focus-within::after {
  transform: translateX(120%);
}

.why-number {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--cyan);
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
}

.why-detail {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 18px;
  color: rgba(248, 250, 252, 0.76);
  font-weight: 700;
  line-height: 1.55;
}

.audit-section {
  background: linear-gradient(180deg, rgba(79, 140, 255, 0.06), rgba(249, 115, 22, 0.05));
}

.audit-grid {
  align-items: center;
}

.audit-image {
  justify-self: end;
  width: min(100%, 620px);
}

.audit-copy p:not(.eyebrow) {
  max-width: 600px;
  margin: 18px 0 26px;
}

.audit-image img {
  max-height: 500px;
  padding: 10px;
  object-fit: contain;
}

.contact-section {
  padding-bottom: 110px;
}

.contact-note {
  margin-top: 26px;
  padding: 18px;
  border-left: 3px solid var(--orange);
  border-radius: 8px;
  background: rgba(249, 115, 22, 0.08);
  color: rgba(248, 250, 252, 0.82);
  line-height: 1.65;
}

.contact-actions,
.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 22px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(248, 250, 252, 0.88);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form .honeypot {
  display: none;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(5, 8, 22, 0.64);
  color: var(--text);
  outline: none;
  padding: 13px 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(148, 163, 184, 0.76);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(34, 211, 238, 0.55);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.1);
}

.contact-form input:invalid:not(:placeholder-shown) {
  border-color: rgba(249, 115, 22, 0.58);
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--cyan);
  font-weight: 700;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 6, 18, 0.86);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.72fr 0.9fr 1.15fr;
  gap: 26px;
  padding: 48px 0;
}

.footer-grid h2 {
  margin: 0 0 14px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
}

.footer-grid p {
  max-width: 320px;
  margin: 14px 0 0;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--cyan);
}

.footer-bottom {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(148, 163, 184, 0.82);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease var(--reveal-delay, 0ms), transform 520ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}

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

@keyframes page-enter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ambient-scan {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 0 150px;
  }
}

@keyframes package-scan {
  0%,
  18% {
    transform: translateX(-170px);
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  62%,
  100% {
    transform: translateX(calc(100vw + 170px));
    opacity: 0;
  }
}

@media (max-width: 820px) {
  .package-showcase {
    padding: 12px;
  }

  .package-carousel-head {
    align-items: flex-start;
    padding: 4px 2px 14px;
  }

  .package-carousel-copy {
    display: grid;
    gap: 7px;
  }

  .package-carousel-copy strong {
    max-width: 180px;
  }

  .package-showcase .package-book {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .package-showcase .book-cover {
    min-height: 310px;
    padding: 30px 28px 28px 38px;
  }

  .package-showcase .book-cover::after {
    right: 28px;
    bottom: 24px;
    left: 38px;
  }

  .package-showcase .book-cover h3 {
    font-size: clamp(1.85rem, 8vw, 2.6rem);
  }

  .package-showcase .book-details,
  .package-showcase .package-book:not(.is-open):hover .book-details,
  .package-showcase .package-book:not(.is-open):focus-visible .book-details,
  .package-showcase .package-book:not(.is-open):focus-within .book-details,
  .package-showcase .package-book.is-open .book-details {
    min-height: 0;
    margin: 0;
    padding: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    border-left: 0;
  }
}

@media (max-width: 560px) {
  .package-carousel-head {
    gap: 10px;
  }

  .package-carousel-actions {
    gap: 6px;
  }

  .package-counter {
    display: none;
  }

  .package-showcase .book-cover {
    min-height: 282px;
    padding: 26px 22px 24px 32px;
  }

  .package-showcase .book-cover::after {
    right: 22px;
    bottom: 20px;
    left: 32px;
  }

  .package-showcase .book-details,
  .package-showcase .package-book:not(.is-open):hover .book-details,
  .package-showcase .package-book:not(.is-open):focus-visible .book-details,
  .package-showcase .package-book:not(.is-open):focus-within .book-details,
  .package-showcase .package-book.is-open .book-details {
    padding: 24px 22px 28px 32px;
  }
}

@media (max-width: 1080px) {
  h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-grid,
  .split-grid,
  .portfolio-grid,
  .audit-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 860px;
    justify-self: center;
  }

  .hero-visual img,
  .audit-image img,
  .portfolio-image {
    max-height: none;
  }

  .audit-image {
    justify-self: center;
  }

  .services-grid,
  .overview-grid,
  .home-service-band,
  .delivery-grid,
  .faq-grid,
  .business-terms,
  .book-library,
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .price-guide {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: var(--header-height);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(5, 8, 22, 0.96);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.36);
  }

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

  .nav-links a {
    padding: 14px 12px;
    border-radius: 8px;
  }

  .nav-links a.is-current:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .mobile-sticky-cta {
    display: inline-flex;
  }

  .hero {
    padding-top: 72px;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

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

  .tab-panel {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .trust-grid,
  .profile-grid,
  .portfolio-list,
  .services-grid,
  .overview-grid,
  .home-service-band,
  .delivery-grid,
  .faq-grid,
  .business-terms,
  .process-grid,
  .price-chip-grid,
  .maintenance-grid,
  .book-library,
  .why-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 16px;
  }

  .timeline-step {
    padding-left: 64px;
  }

  .timeline-step span {
    left: 16px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .cloudflare-card {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container,
  .nav-shell,
  .footer-bottom {
    width: min(100% - 28px, 1160px);
  }

  .section-band {
    padding: 64px 0;
  }

  .hero {
    padding-top: 54px;
    padding-bottom: 36px;
  }

  h1 {
    font-size: 2.18rem;
    line-height: 1.08;
  }

  h2 {
    font-size: 1.72rem;
    line-height: 1.14;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-grid,
  .audit-grid,
  .portfolio-grid {
    gap: 24px;
  }

  .hero-visual {
    display: block;
    width: 100%;
    margin-top: 6px;
  }

  .hero-visual img,
  .audit-image img {
    padding: 6px;
  }

  .portfolio-image {
    margin-top: 20px;
  }

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

  .button {
    padding-left: 14px;
    padding-right: 14px;
  }

  .proof-strip span {
    width: 100%;
  }

  .hero-service-list span {
    width: 100%;
  }

  .mobile-sticky-cta {
    right: 14px;
    left: 14px;
    justify-content: center;
  }

  .tabs-shell {
    padding: 10px;
  }

  .tab-list {
    grid-template-columns: 1fr;
  }

  .tab-panel {
    min-height: 0;
    padding: 20px;
  }

  .tab-panel h3 {
    font-size: 1.35rem;
  }

  .overview-card {
    min-height: 210px;
  }

  .price-guide {
    padding: 20px;
  }

  .package-book {
    min-height: 0;
    transform: none;
  }

  .book-cover {
    min-height: 0;
    padding: 22px 22px 24px 32px;
  }

  .book-details {
    max-height: none;
    margin: 0 20px 0 32px;
    padding: 18px 0 24px;
    opacity: 1;
    overflow: visible;
  }

  .package-book:hover .book-details,
  .package-book:focus-visible .book-details,
  .package-book:focus-within .book-details,
  .package-book.is-open .book-details {
    max-height: none;
    margin: 0 20px 0 32px;
    padding: 18px 0 24px;
  }

  .service-card,
  .profile-card,
  .why-card,
  .contact-form {
    padding: 20px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }

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

  .page-view.is-active {
    animation: none;
  }
}

/* White visual system */
body {
  color: var(--text);
  background: #ffffff;
}

body::before {
  background-image:
    linear-gradient(#e9eef5 1px, transparent 1px),
    linear-gradient(90deg, #e9eef5 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: none;
  opacity: 0.52;
}

body::after {
  display: none;
}

::selection {
  background: #dbeafe;
  color: #172554;
}

.page-view.is-active {
  background: #ffffff;
}

.section-band::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: #eef2f7;
}

.section-heading {
  position: relative;
}

.section-heading::after {
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  margin-top: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.section-heading h2,
h1,
h2,
h3,
h4 {
  color: var(--text);
}

.site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: #e4eaf2;
  box-shadow: 0 8px 28px rgba(22, 37, 61, 0.05);
  backdrop-filter: blur(18px);
}

.site-header::after {
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.34), transparent);
}

.brand,
.nav-links,
.nav-links a,
.footer-grid h2 {
  color: var(--text);
}

.brand-mark {
  border-color: #b9c8dc;
  background: #ffffff;
  box-shadow: 0 7px 18px rgba(37, 99, 235, 0.13);
  color: var(--blue);
}

.brand-text small,
.nav-links,
.footer-grid a,
.footer-grid span,
.footer-bottom {
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-current,
.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--blue);
}

.nav-links a.is-current:not(.nav-cta)::after {
  background: var(--blue);
  box-shadow: none;
}

.nav-cta,
.button-primary,
.mobile-sticky-cta {
  border-color: #1d4ed8;
  background: #1d4ed8;
  box-shadow: 0 10px 22px rgba(29, 78, 216, 0.18);
  color: #ffffff !important;
}

.nav-links a.nav-cta,
.nav-links a.nav-cta:hover,
.nav-links a.nav-cta:focus-visible {
  color: #ffffff !important;
  font-weight: 800;
}

.nav-cta:hover,
.nav-cta:focus-visible,
.button-primary:hover,
.button-primary:focus-visible,
.mobile-sticky-cta:hover,
.mobile-sticky-cta:focus-visible {
  border-color: #1e40af;
  background: #1e40af;
  box-shadow: 0 13px 28px rgba(29, 78, 216, 0.24);
}

.button-secondary {
  border-color: #cbd5e1;
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(22, 37, 61, 0.05);
  color: #1e3a5f;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: #93c5fd;
  background: #eff6ff;
  color: #1d4ed8;
}

.hero,
.split-section,
.tab-section,
.home-overview,
.portfolio-section,
.pricing-section,
.faq-section,
.why-section,
.delivery-section,
.audit-section {
  background: #ffffff;
}

.home-overview,
.delivery-section,
.portfolio-section,
.pricing-section,
.faq-section {
  background: #f7f9fc;
}

.hero-copy h1 {
  max-width: 760px;
  color: #12213a;
}

.hero-text,
.section-heading p,
.hero-service-list span,
.proof-strip span,
.contact-note,
.profile-note,
.section-note {
  color: var(--muted);
}

.eyebrow,
.book-phase,
.package-carousel-kicker,
.process-card small,
.portfolio-card span,
.maintenance-card span {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: #1d4ed8;
}

.hero-visual,
.audit-image {
  position: relative;
  padding: 10px;
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(22, 37, 61, 0.12);
}

.hero-visual::after,
.audit-image::after {
  content: "";
  position: absolute;
  inset: auto 18px 14px auto;
  width: 72px;
  height: 3px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 6px #fff7ed;
}

.trust-grid div,
.overview-card,
.delivery-card,
.faq-card,
.business-terms article,
.service-card,
.profile-card,
.process-card,
.portfolio-card,
.why-card,
.maintenance-card,
.price-guide,
.price-chip-grid span,
.cloudflare-card,
.tabs-shell,
.tab-panel,
.contact-form {
  border-color: #dbe3ee;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(22, 37, 61, 0.07);
}

.trust-grid div,
.overview-card,
.delivery-card,
.faq-card,
.business-terms article,
.service-card,
.profile-card,
.process-card,
.portfolio-card,
.why-card,
.maintenance-card,
.cloudflare-card,
.tab-panel {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.overview-card::before,
.delivery-card::before,
.faq-card::before,
.business-terms article::before,
.process-card::before,
.why-card::before,
.maintenance-card::before,
.portfolio-card::before {
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--orange));
}

.overview-card:hover,
.overview-card:focus-visible,
.delivery-card:hover,
.delivery-card:focus-visible,
.service-card:hover,
.service-card:focus-visible,
.profile-card:hover,
.profile-card:focus-visible,
.process-card:hover,
.process-card:focus-within,
.portfolio-card:hover,
.portfolio-card:focus-within,
.why-card:hover,
.why-card:focus-within,
.maintenance-card:hover,
.maintenance-card:focus-within {
  border-color: #b9c8dc;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(22, 37, 61, 0.12);
}

.overview-card span,
.delivery-card span,
.process-card span,
.why-number {
  color: var(--blue);
}

.overview-card p,
.delivery-card p,
.faq-card p,
.business-terms p,
.service-card p,
.profile-card p,
.process-card p,
.why-detail,
.maintenance-card p,
.price-guide p,
.price-chip-grid strong {
  color: var(--muted);
}

.home-service-band span,
.proof-strip span,
.hero-service-list span,
.skill-list span,
.project-tags small,
.price-chip-grid span {
  border-color: #dbe3ee;
  background: #f8fafc;
  color: #334155;
}

.service-points li,
.improvement-list li,
.maintenance-card li,
.book-details li {
  color: #475569;
}

.service-points li::before,
.improvement-list li::before,
.maintenance-card li::before,
.book-details li::before {
  background: var(--cyan);
  box-shadow: none;
}

.tabs-shell {
  padding: 14px;
}

.tab-list {
  border-color: #e2e8f0;
  background: #f8fafc;
}

.tab-button {
  color: #64748b;
}

.tab-button:hover,
.tab-button:focus-visible,
.tab-button.is-active {
  border-color: #bfdbfe;
  background: #ffffff;
  box-shadow: 0 5px 14px rgba(22, 37, 61, 0.06);
  color: #1d4ed8;
}

.tab-panel {
  background: #ffffff;
}

.panel-kicker,
.featured-label {
  border-color: #fed7aa;
  background: #fff7ed;
  color: #b45309;
}

.portfolio-preview {
  border-bottom-color: #dbe3ee;
  background: #f8fafc;
}

.portfolio-preview::after {
  border-color: #dbe3ee;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(22, 37, 61, 0.1);
  color: #1d4ed8;
}

.portfolio-card .card-link,
.card-link,
.book-cta {
  color: #1d4ed8;
}

.card-link:hover,
.card-link:focus-visible,
.book-cta:hover,
.book-cta:focus-visible {
  color: #1e40af;
}

.package-showcase {
  border-color: #dbe3ee;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(22, 37, 61, 0.09);
}

.package-showcase::before {
  background-image:
    linear-gradient(#e8eef7 1px, transparent 1px),
    linear-gradient(90deg, #e8eef7 1px, transparent 1px);
  mask-image: none;
  opacity: 0.72;
}

.package-showcase::after {
  background: var(--blue);
  box-shadow: none;
}

.package-carousel-copy strong {
  color: #1e3a5f;
}

.package-counter {
  color: #94a3b8;
}

.package-counter strong {
  color: var(--blue);
}

.package-nav {
  border-color: #cbd5e1;
  background: #ffffff;
  box-shadow: none;
  color: #1e3a5f;
}

.package-nav:hover,
.package-nav:focus-visible {
  border-color: #93c5fd;
  background: #eff6ff;
  box-shadow: none;
  color: #1d4ed8;
}

.package-carousel-viewport {
  border-color: #dbe3ee;
  background: #ffffff;
}

.package-showcase .package-book {
  background: #ffffff;
}

.package-showcase .package-book::before {
  background: linear-gradient(180deg, var(--blue), var(--cyan), var(--orange));
}

.package-showcase .package-book::after {
  background: linear-gradient(115deg, transparent 20%, rgba(37, 99, 235, 0.08), transparent 52%);
}

.package-showcase .book-cover {
  background: #f4f8ff;
}

.package-showcase .book-cover::after {
  background: linear-gradient(90deg, var(--blue), var(--cyan), transparent);
  box-shadow: none;
}

.package-showcase .book-cover h3,
.package-showcase .book-cover strong {
  color: #16253d;
}

.package-showcase .book-cover p {
  color: var(--muted);
}

.package-showcase .book-details,
.package-showcase .package-book.is-open .book-details {
  border-color: #dbe3ee;
  background: #ffffff;
}

.package-showcase .book-details h4 {
  color: #0f766e;
}

.package-showcase .book-cta {
  border-color: #93c5fd;
  background: #eff6ff;
  color: #1d4ed8;
}

.package-showcase .book-cta:hover,
.package-showcase .book-cta:focus-visible {
  border-color: #60a5fa;
  background: #dbeafe;
}

.package-dots button {
  background: #cbd5e1;
}

.package-dots button:hover,
.package-dots button:focus-visible,
.package-dots button.is-active {
  background: var(--blue);
  box-shadow: none;
}

.price-guide,
.maintenance-card,
.maintenance-card.featured {
  background: #ffffff;
}

.maintenance-card.featured {
  border-color: #bfdbfe;
}

.pricing-note,
.contact-note {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: #31506f;
}

.cloudflare-card {
  background: #ffffff;
}

.cloudflare-cloud {
  background: #fff7ed;
}

.cloudflare-logo {
  border-color: #fed7aa;
  background: #ffffff;
}

.cloudflare-benefits li {
  color: #475569;
}

.contact-form {
  background: #ffffff;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border-color: #cbd5e1;
  background: #ffffff;
  color: #16253d;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #94a3b8;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #60a5fa;
  box-shadow: 0 0 0 4px #dbeafe;
}

.contact-form input:invalid:not(:placeholder-shown) {
  border-color: #f59e0b;
}

.form-status {
  color: #0f766e;
}

.site-footer {
  border-top-color: #dbe3ee;
  background: #f7f9fc;
}

.footer-bottom {
  border-top-color: #dbe3ee;
}

@media (max-width: 820px) {
  .nav-links {
    border-color: #dbe3ee;
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(22, 37, 61, 0.13);
  }

  .mobile-sticky-cta {
    box-shadow: 0 12px 28px rgba(29, 78, 216, 0.22);
  }
}

@media (prefers-reduced-motion: reduce) {
  .package-showcase::after {
    animation: none;
  }
}

/* Cloudflare wordmark treatment */
.cloudflare-logo {
  min-height: 148px;
  display: grid;
  grid-template-rows: 62px auto auto;
  gap: 7px;
  padding: 18px 16px 14px;
  border: 1px solid #fed7aa;
  border-radius: 8px;
  background: #fffaf5;
  box-shadow: inset 0 0 0 1px rgba(255, 237, 213, 0.72);
  color: #1e3a5f;
}

.cloudflare-cloud {
  width: 106px;
  height: 46px;
  align-self: end;
  border-radius: 46px;
  background: linear-gradient(135deg, #f6821f, #f6a832);
  box-shadow: 0 12px 24px rgba(246, 130, 31, 0.24);
}

.cloudflare-cloud::before,
.cloudflare-cloud::after {
  bottom: 16px;
  background: inherit;
}

.cloudflare-cloud::before {
  left: 18px;
  width: 40px;
  height: 40px;
}

.cloudflare-cloud::after {
  right: 17px;
  width: 48px;
  height: 48px;
}

.cloudflare-logo strong {
  color: #1e3a5f;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
  line-height: 1;
}

.cloudflare-logo small {
  color: #b45309;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

@media (max-width: 820px) {
  .cloudflare-logo {
    min-height: 132px;
  }
}

/* SEO routes and premium motion layer */
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 160;
  padding: 11px 14px;
  border: 2px solid #1d4ed8;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(22, 37, 61, 0.18);
  color: #1d4ed8;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.mobile-sticky-cta {
  transition: opacity 180ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 180ms ease, background 180ms ease;
}

.mobile-sticky-cta.is-hidden {
  pointer-events: none;
  opacity: 0;
  transform: translateY(calc(100% + 24px));
}

.route-flash {
  position: fixed;
  inset: 0;
  z-index: 140;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(37, 99, 235, 0.12) 36%, rgba(15, 118, 110, 0.2) 50%, rgba(217, 119, 6, 0.1) 64%, transparent 82%),
    repeating-linear-gradient(0deg, transparent 0 16px, rgba(37, 99, 235, 0.08) 17px, transparent 18px);
  transform: translateX(-110%);
}

.route-flash.is-running {
  animation: route-scan 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-view.is-active {
  animation: page-unfold 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
  transform-origin: 50% 0;
}

.section-heading h1 {
  font-size: 2.65rem;
  line-height: 1.09;
}

.section-heading::after {
  transform-origin: left center;
  animation: heading-line 760ms cubic-bezier(0.22, 1, 0.36, 1) 160ms both;
}

.hero-copy h1 {
  animation: hero-copy-enter 760ms cubic-bezier(0.16, 1, 0.3, 1) 80ms both;
}

.hero-visual[data-hero-motion] {
  --hero-tilt-x: 0deg;
  --hero-tilt-y: 0deg;
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  isolation: isolate;
  transform: perspective(1200px) rotateX(var(--hero-tilt-x)) rotateY(var(--hero-tilt-y)) translate3d(var(--hero-shift-x), var(--hero-shift-y), 0);
  transform-style: preserve-3d;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-visual[data-hero-motion]::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border: 2px solid transparent;
  border-radius: 10px;
  background: conic-gradient(from var(--trace-angle), #2563eb, #0f766e, transparent 26%, transparent 68%, #d97706, #2563eb) border-box;
  mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0.72;
  animation: hero-border-trace 8s linear infinite;
}

.hero-visual[data-hero-motion] img {
  transform: translateZ(22px);
}

.hero-signal {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  border: 1px solid #dbe3ee;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 28px rgba(22, 37, 61, 0.13);
  color: #1e3a5f;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  transform: translateZ(48px);
  backdrop-filter: blur(12px);
}

.hero-signal-top {
  top: 24px;
  right: -12px;
}

.hero-signal-bottom {
  bottom: 28px;
  left: -16px;
  border-color: #fed7aa;
  color: #9a4d06;
}

.hero-signal span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0f766e;
  box-shadow: 0 0 0 5px rgba(15, 118, 110, 0.12);
  animation: signal-pulse 2.4s ease-in-out infinite;
}

.motion-surface {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --shine-x: 50%;
  --shine-y: 50%;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(115deg, transparent 30%, rgba(37, 99, 235, 0.055) 48%, rgba(15, 118, 110, 0.045) 53%, transparent 70%);
  background-position: var(--shine-x) var(--shine-y);
  background-size: 230% 230%;
  transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  will-change: transform;
}

.motion-surface:hover,
.motion-surface:focus-within {
  transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-5px);
}

.motion-surface > * {
  position: relative;
  z-index: 1;
}

.package-showcase .package-book.is-active .book-cover {
  background-image:
    linear-gradient(90deg, rgba(37, 99, 235, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(37, 99, 235, 0.055) 1px, transparent 1px);
  background-size: 28px 28px;
}

.package-showcase .package-book.is-active .book-details {
  box-shadow: inset 4px 0 0 rgba(15, 118, 110, 0.18);
}

.package-showcase .book-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.package-showcase .book-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg, transparent 25%, rgba(255, 255, 255, 0.86) 48%, transparent 70%);
  transform: translateX(-150%);
  transition: transform 520ms ease;
}

.package-showcase .book-cta:hover::after,
.package-showcase .book-cta:focus-visible::after {
  transform: translateX(150%);
}

@property --trace-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@keyframes hero-border-trace {
  to {
    --trace-angle: 360deg;
  }
}

@keyframes signal-pulse {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes route-scan {
  0% {
    opacity: 0;
    transform: translateX(-110%);
  }
  32% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(110%);
  }
}

@keyframes page-unfold {
  0% {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
  }
}

@keyframes heading-line {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes hero-copy-enter {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 820px) {
  .section-heading h1 {
    font-size: 2rem;
  }

  .hero-signal-top {
    top: 18px;
    right: 14px;
  }

  .hero-signal-bottom {
    bottom: 20px;
    left: 14px;
  }

  .motion-surface,
  .motion-surface:hover,
  .motion-surface:focus-within {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .route-flash,
  .hero-visual[data-hero-motion]::before,
  .hero-signal span,
  .section-heading::after,
  .hero-copy h1,
  .page-view.is-active {
    animation: none !important;
  }

  .hero-visual[data-hero-motion],
  .motion-surface,
  .motion-surface:hover,
  .motion-surface:focus-within {
    transform: none !important;
  }
}
