:root {
  --accent: #f05a1a;
  --accent-dark: #c9430d;
  --accent-soft: #fff1ea;
  --ink: #111111;
  --ink-muted: #5f646d;
  --ink-soft: #8c929d;
  --line: #ece7e1;
  --surface: #ffffff;
  --surface-warm: #fffaf6;
  --shadow-soft: 0 24px 80px rgba(17, 17, 17, 0.08);
  --shadow-card: 0 22px 60px rgba(17, 17, 17, 0.1);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(240, 90, 26, 0.09), transparent 32rem),
    linear-gradient(180deg, #ffffff 0%, #fffaf6 48%, #ffffff 100%);
  color: var(--ink);
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: rgba(240, 90, 26, 0.18);
  color: var(--ink);
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--ink);
  color: #ffffff;
  padding: 10px 18px;
  transition: transform 180ms ease;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(22px);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 38px rgba(17, 17, 17, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.brand-logo {
  display: block;
  width: 150px;
  height: auto;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(240, 90, 26, 0.92), rgba(255, 137, 84, 0.95));
  color: #ffffff;
  font-size: 0.82rem;
  box-shadow: 0 12px 30px rgba(240, 90, 26, 0.28);
}

.brand-text {
  font-size: 1.05rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  padding: 7px;
  box-shadow: 0 12px 36px rgba(17, 17, 17, 0.05);
}

.nav-links a {
  border-radius: 999px;
  color: var(--ink-muted);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 10px 15px;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.nav-links a:hover {
  background: var(--accent-soft);
  color: var(--ink);
  transform: translateY(-1px);
}

.nav-links .nav-cta {
  background: var(--ink);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.nav-links .nav-cta:hover {
  background: var(--accent);
  color: #ffffff;
}

.nav-toggle {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.08);
}

.nav-toggle span:not(.sr-only) {
  position: absolute;
  left: 13px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition:
    transform 180ms ease,
    top 180ms ease;
}

.nav-toggle span:nth-child(2) {
  top: 17px;
}

.nav-toggle span:nth-child(3) {
  top: 25px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  top: 21px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.section-pad {
  padding: 112px 0 76px;
}

.section {
  padding: 112px 0;
  position: relative;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: -8vw;
  bottom: -18vw;
  width: 44vw;
  height: 44vw;
  min-width: 360px;
  min-height: 360px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(240, 90, 26, 0.12), transparent 65%);
  content: "";
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(20px);
  opacity: 0.55;
  pointer-events: none;
}

.hero-orb-one {
  top: 70px;
  right: 9%;
  width: 180px;
  height: 180px;
  background: rgba(240, 90, 26, 0.24);
  animation: drift 9s ease-in-out infinite alternate;
}

.hero-orb-two {
  bottom: 14%;
  left: 4%;
  width: 220px;
  height: 220px;
  background: rgba(255, 191, 161, 0.32);
  animation: drift 11s ease-in-out infinite alternate-reverse;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 76px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.82);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.3rem, 7vw, 6.9rem);
  font-weight: 900;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 4.3vw, 4.8rem);
  font-weight: 900;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.25rem, 1.8vw, 1.8rem);
  font-weight: 850;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--ink-muted);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  overflow: hidden;
  border-radius: 999px;
  border: 0;
  padding: 0 24px;
  font-weight: 850;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.btn::after {
  position: absolute;
  inset: 0;
  transform: translateX(-120%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  content: "";
  transition: transform 650ms ease;
}

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

.btn:hover::after {
  transform: translateX(120%) skewX(-18deg);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #ff8c52);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(240, 90, 26, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 22px 52px rgba(240, 90, 26, 0.36);
}

.btn-secondary {
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.07);
}

.btn-dark {
  background: var(--ink);
  color: #ffffff;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin: 0;
}

.hero-metrics div {
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
  padding: 18px;
  box-shadow: 0 14px 36px rgba(17, 17, 17, 0.05);
}

.hero-metrics dt {
  margin-bottom: 4px;
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.hero-metrics dd {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.88rem;
  font-weight: 650;
}

.hero-visual {
  position: relative;
  min-height: 610px;
  perspective: 1200px;
}

.browser-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 246, 0.96));
  box-shadow: var(--shadow-card);
  transform: rotateX(4deg) rotateY(-7deg);
  transition:
    transform 300ms ease,
    box-shadow 300ms ease;
}

.browser-card:hover {
  box-shadow: 0 34px 90px rgba(17, 17, 17, 0.14);
  transform: rotateX(0deg) rotateY(0deg) translateY(-6px);
}

.browser-card::before {
  position: absolute;
  inset: -40% -40% auto auto;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: rgba(240, 90, 26, 0.14);
  content: "";
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.07);
  padding: 18px 22px;
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.16);
}

.browser-bar span:first-child {
  background: var(--accent);
}

.browser-content {
  position: relative;
  padding: 42px;
}

.visual-pill {
  display: inline-flex;
  margin-bottom: 28px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 900;
}

.visual-heading,
.visual-body,
.visual-card-row div {
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.1), rgba(17, 17, 17, 0.04));
}

.visual-heading {
  width: 82%;
  height: 42px;
  margin-bottom: 12px;
}

.visual-heading.short {
  width: 58%;
  margin-bottom: 28px;
}

.visual-body {
  width: 90%;
  height: 14px;
  margin-bottom: 12px;
}

.visual-body.narrow {
  width: 68%;
  margin-bottom: 38px;
}

.visual-card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.visual-card-row div {
  height: 122px;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(240, 90, 26, 0.16), rgba(255, 255, 255, 0.9));
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.06);
}

.floating-card {
  position: absolute;
  display: grid;
  gap: 2px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  padding: 16px 18px;
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.12);
  backdrop-filter: blur(20px);
  animation: float 6s ease-in-out infinite;
}

.floating-card span {
  color: var(--ink-muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.floating-card strong {
  font-size: 1.35rem;
  letter-spacing: -0.05em;
}

.floating-card-top {
  top: 64px;
  right: -8px;
}

.floating-card-bottom {
  bottom: 68px;
  left: -18px;
  animation-delay: -2s;
}

.trust-strip {
  padding: 22px 0 72px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.trust-grid div {
  display: grid;
  gap: 6px;
  padding: 26px;
}

.trust-grid div + div {
  border-left: 1px solid rgba(17, 17, 17, 0.07);
}

.trust-grid strong {
  font-size: 1.05rem;
  letter-spacing: -0.04em;
}

.trust-grid span {
  color: var(--ink-muted);
  font-size: 0.92rem;
  font-weight: 650;
}

.section-transition::before,
.services::before,
.process::before {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 90, 26, 0.24), transparent);
  content: "";
}

.split-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: start;
}

.section-intro {
  position: sticky;
  top: 130px;
}

.rich-copy {
  display: grid;
  gap: 24px;
  color: var(--ink-muted);
  font-size: clamp(1.08rem, 1.5vw, 1.24rem);
  line-height: 1.8;
}

.rich-copy p {
  margin-bottom: 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 48px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--ink-muted);
  font-size: 1.08rem;
}

.card-grid {
  display: grid;
  gap: 22px;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: var(--radius-lg);
  background: #ffffff;
  padding: 32px;
  box-shadow: 0 16px 52px rgba(17, 17, 17, 0.06);
  transition:
    border-color 240ms ease,
    box-shadow 240ms ease,
    transform 240ms ease;
}

.service-card::before {
  position: absolute;
  inset: auto -18% -38% -18%;
  height: 220px;
  background: radial-gradient(circle, rgba(240, 90, 26, 0.18), transparent 68%);
  content: "";
  opacity: 0;
  transition: opacity 240ms ease;
}

.service-card:hover {
  border-color: rgba(240, 90, 26, 0.24);
  box-shadow: 0 26px 70px rgba(17, 17, 17, 0.1);
  transform: translateY(-8px);
}

.service-card:hover::before {
  opacity: 1;
}

.card-number {
  display: inline-flex;
  margin-bottom: 80px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 900;
}

.service-card h3,
.service-card p,
.service-card a {
  position: relative;
  z-index: 1;
}

.service-card p {
  color: var(--ink-muted);
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--accent);
  font-weight: 850;
}

.service-card a::after {
  content: "->";
  transition: transform 180ms ease;
}

.service-card a:hover::after {
  transform: translateX(4px);
}

.portfolio {
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fff8f3 100%);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.portfolio-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: 0 18px 56px rgba(17, 17, 17, 0.07);
  transition:
    transform 240ms ease,
    box-shadow 240ms ease;
}

.portfolio-card:hover {
  box-shadow: 0 30px 80px rgba(17, 17, 17, 0.12);
  transform: translateY(-7px);
}

.portfolio-large {
  grid-row: span 2;
}

.portfolio-preview {
  min-height: 230px;
  margin: 18px;
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(17, 17, 17, 0.92), #2a201c);
}

.portfolio-large .portfolio-preview {
  min-height: 470px;
}

.premium-preview {
  position: relative;
  overflow: hidden;
}

.premium-preview::before {
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.24), transparent 34%),
    radial-gradient(circle at 70% 20%, rgba(240, 90, 26, 0.52), transparent 24%);
  content: "";
}

.premium-preview span {
  position: absolute;
  left: 58px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.premium-preview span:nth-child(1) {
  top: 86px;
  width: 42%;
}

.premium-preview span:nth-child(2) {
  top: 118px;
  width: 28%;
}

.premium-preview span:nth-child(3) {
  bottom: 72px;
  width: 62%;
  background: rgba(240, 90, 26, 0.76);
}

.orange-preview {
  background: linear-gradient(145deg, rgba(240, 90, 26, 0.92), rgba(255, 146, 87, 0.88));
}

.clean-preview {
  background: linear-gradient(145deg, rgba(255, 241, 234, 0.98), rgba(255, 255, 255, 0.96));
  box-shadow: inset 0 0 0 1px rgba(240, 90, 26, 0.12);
}

.portfolio-content {
  padding: 0 28px 30px;
}

.portfolio-content p {
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portfolio-content span {
  color: var(--ink-muted);
  font-weight: 650;
}

.proof-panel {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 48px;
  align-items: center;
  overflow: hidden;
  border-radius: 38px;
  background:
    radial-gradient(circle at top right, rgba(240, 90, 26, 0.2), transparent 34rem),
    linear-gradient(135deg, #181411, #0f0f0f);
  color: #ffffff;
  padding: clamp(34px, 6vw, 72px);
  box-shadow: 0 30px 90px rgba(17, 17, 17, 0.16);
}

.proof-copy h2 {
  margin-bottom: 0;
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.proof-stats div {
  min-height: 170px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  padding: 22px;
  backdrop-filter: blur(18px);
}

.proof-stats strong {
  display: block;
  margin-bottom: 42px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.proof-stats span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 650;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: var(--radius-lg);
  background: rgba(17, 17, 17, 0.07);
  box-shadow: var(--shadow-soft);
}

.process-step {
  min-height: 290px;
  background: rgba(255, 255, 255, 0.92);
  padding: 30px;
  transition: background 220ms ease;
}

.process-step:hover {
  background: var(--surface-warm);
}

.process-step span {
  display: inline-flex;
  margin-bottom: 86px;
  color: var(--accent);
  font-weight: 900;
}

.process-step p {
  margin-bottom: 0;
  color: var(--ink-muted);
}

.cta-band {
  padding-block: 70px;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.82fr);
  gap: 44px;
  align-items: center;
  overflow: hidden;
  border-radius: 38px;
  background:
    radial-gradient(circle at 88% 0%, rgba(255, 255, 255, 0.28), transparent 22rem),
    linear-gradient(135deg, var(--accent), #ff8a50);
  color: #ffffff;
  padding: clamp(34px, 6vw, 66px);
  box-shadow: 0 30px 90px rgba(240, 90, 26, 0.28);
}

.cta-panel h2 {
  max-width: 780px;
}

.cta-panel p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.cta-form {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.16);
  padding: 18px;
  backdrop-filter: blur(22px);
}

.cta-form label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.86rem;
  font-weight: 850;
}

.cta-form div {
  display: flex;
  gap: 10px;
}

.cta-form input {
  min-width: 0;
  width: 100%;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  padding: 0 18px;
  outline: none;
}

.cta-form input:focus {
  box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.14);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 72px;
  align-items: start;
}

.faq .section-heading {
  position: sticky;
  top: 130px;
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 12px 38px rgba(17, 17, 17, 0.05);
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 24px;
  text-align: left;
  font-weight: 850;
  letter-spacing: -0.025em;
}

.faq-item button span {
  position: relative;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  margin-left: 18px;
  border-radius: 999px;
  background: var(--accent-soft);
}

.faq-item button span::before,
.faq-item button span::after {
  position: absolute;
  top: 16px;
  left: 10px;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  content: "";
  transition: transform 180ms ease;
}

.faq-item button span::after {
  transform: rotate(90deg);
}

.faq-item.is-open button span::after {
  transform: rotate(0deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
}

.faq-answer p {
  margin: 0;
  color: var(--ink-muted);
  padding: 0 24px 24px;
}

.site-footer {
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  padding: 42px 0;
  background: #ffffff;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer-grid p {
  margin: 16px 0 0;
  color: var(--ink-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: var(--ink-muted);
  font-weight: 750;
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

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

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(24px, -18px, 0) scale(1.08);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

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

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

@media (max-width: 1060px) {
  .hero-grid,
  .split-section,
  .proof-panel,
  .cta-panel,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 48px;
  }

  .hero-visual {
    min-height: auto;
  }

  .floating-card-top {
    right: 12px;
  }

  .floating-card-bottom {
    left: 12px;
  }

  .service-grid,
  .proof-stats {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .card-number,
  .process-step span {
    margin-bottom: 48px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .portfolio-large {
    grid-row: auto;
  }

  .portfolio-large .portfolio-preview {
    min-height: 360px;
  }

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

  .section-intro,
  .faq .section-heading {
    position: static;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .nav {
    min-height: 72px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset: 82px 14px auto;
    display: grid;
    gap: 6px;
    border-radius: 28px;
    padding: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 14px 16px;
  }

  .section-pad {
    padding: 76px 0 48px;
  }

  .section {
    padding: 78px 0;
  }

  .hero-actions,
  .cta-form div {
    flex-direction: column;
  }

  .btn,
  .cta-form input {
    width: 100%;
    min-height: 56px;
  }

  .hero-metrics,
  .trust-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .trust-grid div + div {
    border-top: 1px solid rgba(17, 17, 17, 0.07);
    border-left: 0;
  }

  .browser-card {
    border-radius: 28px;
    transform: none;
  }

  .browser-content {
    padding: 28px;
  }

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

  .visual-card-row div {
    height: 76px;
  }

  .floating-card {
    position: relative;
    display: inline-grid;
    margin-top: 14px;
  }

  .floating-card-top,
  .floating-card-bottom {
    inset: auto;
  }

  .proof-panel,
  .cta-panel {
    border-radius: 28px;
  }

  .portfolio-preview,
  .portfolio-large .portfolio-preview {
    min-height: 260px;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 540px) {
  h1 {
    font-size: clamp(2.8rem, 15vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2.05rem, 11vw, 3.2rem);
  }

  .hero-lead,
  .section-heading p:not(.eyebrow),
  .rich-copy,
  .cta-panel p:not(.eyebrow) {
    font-size: 1rem;
  }

  .service-card,
  .process-step,
  .proof-stats div {
    padding: 24px;
  }

  .cta-panel,
  .proof-panel {
    padding: 26px;
  }

  .portfolio-content {
    padding: 0 22px 24px;
  }
}

/* Premium refinement layer */
body {
  position: relative;
  min-height: 100vh;
}

.page-grain {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(17, 17, 17, 0.08) 1px, transparent 0),
    radial-gradient(circle at 11px 17px, rgba(240, 90, 26, 0.05) 1px, transparent 0);
  background-size:
    22px 22px,
    31px 31px;
  mix-blend-mode: multiply;
}

.ambient {
  position: fixed;
  z-index: 0;
  width: 38vw;
  height: 38vw;
  min-width: 320px;
  min-height: 320px;
  border-radius: 999px;
  filter: blur(42px);
  opacity: 0.38;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
}

.ambient-one {
  top: -16vw;
  right: -10vw;
  background: radial-gradient(circle, rgba(240, 90, 26, 0.28), transparent 66%);
  animation: ambientDrift 18s ease-in-out infinite alternate;
}

.ambient-two {
  bottom: 16%;
  left: -14vw;
  background: radial-gradient(circle, rgba(255, 187, 151, 0.28), transparent 68%);
  animation: ambientDrift 22s ease-in-out infinite alternate-reverse;
}

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

.site-header {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.68)),
    rgba(255, 255, 255, 0.74);
}

.nav {
  position: relative;
}

.nav-links {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(24px);
}

.nav-backdrop {
  display: none;
}

.hero {
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 7% 2% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 90, 26, 0.32), transparent);
  content: "";
  opacity: 0.9;
}

.hero-orb-one {
  background:
    radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.58), transparent 30%),
    radial-gradient(circle, rgba(240, 90, 26, 0.32), transparent 68%);
}

.hero-orb-two {
  background:
    radial-gradient(circle at 42% 34%, rgba(255, 255, 255, 0.5), transparent 30%),
    radial-gradient(circle, rgba(255, 191, 161, 0.42), transparent 68%);
}

.hero-grid {
  grid-template-columns: minmax(0, 0.94fr) minmax(410px, 1.06fr);
}

.hero-copy {
  padding-block: 22px;
}

.hero-lead {
  max-width: 610px;
}

.btn {
  isolation: isolate;
}

.btn::before {
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent 44%);
  content: "";
  opacity: 0;
  transition: opacity 220ms ease;
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  box-shadow:
    0 18px 40px rgba(240, 90, 26, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.012);
}

.btn-secondary:hover {
  border-color: rgba(240, 90, 26, 0.22);
  box-shadow: 0 22px 54px rgba(17, 17, 17, 0.1);
}

.hero-metrics div {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 250, 246, 0.72)),
    rgba(255, 255, 255, 0.72);
}

.hero-metrics div::after {
  position: absolute;
  inset: auto 14px 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, rgba(240, 90, 26, 0), rgba(240, 90, 26, 0.86), rgba(240, 90, 26, 0));
  content: "";
  transform: translateY(1px);
}

.hero-visual {
  min-height: 650px;
  display: grid;
  align-items: center;
}

.mockup-halo {
  position: absolute;
  inset: 8% 0 auto 10%;
  width: 72%;
  height: 72%;
  border-radius: 999px;
  background:
    conic-gradient(from 160deg, rgba(240, 90, 26, 0.04), rgba(240, 90, 26, 0.28), rgba(255, 255, 255, 0.08), rgba(240, 90, 26, 0.04)),
    radial-gradient(circle, rgba(240, 90, 26, 0.08), transparent 64%);
  filter: blur(4px);
  animation: slowSpin 24s linear infinite;
}

.browser-card {
  z-index: 2;
  width: min(100%, 620px);
  margin-left: auto;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 250, 246, 0.9)),
    rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(24px);
}

.browser-card::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), transparent 34%),
    linear-gradient(315deg, rgba(240, 90, 26, 0.08), transparent 42%);
  content: "";
  pointer-events: none;
}

.browser-bar {
  position: relative;
  z-index: 1;
}

.browser-url {
  flex: 1;
  min-width: 0;
  margin-left: 8px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.04);
  color: var(--ink-soft);
  padding: 7px 14px;
  font-size: 0.76rem;
  font-weight: 800;
  text-align: center;
}

.browser-content {
  z-index: 1;
}

.visual-topline,
.visual-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.visual-score {
  border: 1px solid rgba(240, 90, 26, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--accent);
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 900;
}

.visual-layout {
  align-items: flex-start;
  margin-bottom: 28px;
}

.visual-layout > div:first-child {
  flex: 1;
}

.visual-radar {
  position: relative;
  display: grid;
  flex: 0 0 124px;
  width: 124px;
  height: 124px;
  place-items: center;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.92) 0 32%, transparent 33%),
    conic-gradient(from 40deg, rgba(240, 90, 26, 0.92), rgba(255, 190, 153, 0.24), rgba(240, 90, 26, 0.92));
  box-shadow: inset 0 0 0 1px rgba(240, 90, 26, 0.14);
}

.visual-radar span {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(240, 90, 26, 0.12);
  border-radius: inherit;
}

.visual-radar span:nth-child(2) {
  inset: 26px;
}

.visual-radar strong {
  color: var(--ink);
  font-size: 1.22rem;
  letter-spacing: -0.05em;
}

.visual-card-row div {
  display: grid;
  align-content: space-between;
  padding: 16px;
  min-height: 124px;
}

.visual-card-row div span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
}

.visual-card-row div strong {
  align-self: end;
  letter-spacing: -0.04em;
}

.visual-chart {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 90px;
  margin-top: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
  padding: 16px;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.06);
}

.visual-chart span {
  flex: 1;
  height: var(--height);
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, rgba(240, 90, 26, 0.88), rgba(240, 90, 26, 0.18));
  transform-origin: bottom;
  animation: chartRise 1600ms ease both;
}

.glass-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 250, 246, 0.62)),
    rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(24px);
}

.floating-card {
  z-index: 3;
}

.floating-card-side {
  right: 22px;
  bottom: 194px;
  animation-delay: -3.4s;
}

.logo-section {
  padding: 0 0 86px;
}

.logo-panel {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 28px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 250, 246, 0.72)),
    rgba(255, 255, 255, 0.74);
  padding: 18px 22px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}

.logo-panel p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.logo-row {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logo-row span {
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 999px;
  background: #ffffff;
  color: rgba(17, 17, 17, 0.54);
  padding: 12px 18px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.05);
}

.section-divider {
  position: absolute;
  inset: 0 auto auto 50%;
  width: min(920px, calc(100% - 40px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(240, 90, 26, 0.32), rgba(17, 17, 17, 0.08), transparent);
}

.section-divider-offset {
  top: 16px;
}

.service-card,
.portfolio-card,
.testimonial-card {
  isolation: isolate;
}

.service-card::after,
.testimonial-card::after {
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.72), transparent 46%);
  content: "";
  pointer-events: none;
}

.portfolio-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 246, 0.72)),
    #ffffff;
}

.portfolio-preview {
  position: relative;
  overflow: hidden;
}

.preview-nav {
  position: absolute;
  top: 34px;
  left: 34px;
  right: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.preview-hero {
  position: absolute;
  top: 96px;
  left: 34px;
  width: 54%;
  height: 156px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.08);
}

.preview-grid {
  position: absolute;
  right: 34px;
  bottom: 34px;
  left: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.preview-grid i {
  height: 86px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
}

.preview-phone {
  position: absolute;
  inset: 28px auto 28px 50%;
  width: min(42%, 148px);
  transform: translateX(-50%) rotate(-6deg);
  border: 10px solid rgba(255, 255, 255, 0.32);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 241, 234, 0.74)),
    #ffffff;
  box-shadow: 0 24px 58px rgba(17, 17, 17, 0.18);
}

.preview-phone::before,
.preview-phone::after {
  position: absolute;
  left: 18px;
  right: 18px;
  border-radius: 999px;
  content: "";
}

.preview-phone::before {
  top: 28px;
  height: 12px;
  background: rgba(17, 17, 17, 0.12);
}

.preview-phone::after {
  top: 58px;
  height: 42%;
  background: linear-gradient(180deg, rgba(240, 90, 26, 0.24), rgba(240, 90, 26, 0.08));
}

.preview-proof {
  position: absolute;
  inset: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.preview-proof span {
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 241, 234, 0.7)),
    #ffffff;
  box-shadow:
    inset 0 0 0 1px rgba(240, 90, 26, 0.12),
    0 18px 38px rgba(17, 17, 17, 0.06);
}

.proof-panel {
  position: relative;
}

.proof-panel::before {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(240, 90, 26, 0.34), transparent 28%);
  content: "";
  pointer-events: none;
}

.proof-copy,
.proof-stats {
  position: relative;
  z-index: 1;
}

.testimonials {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(240, 90, 26, 0.08), transparent 34rem),
    linear-gradient(180deg, #ffffff, #fffaf6 58%, #ffffff);
}

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

.testimonial-card {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 246, 0.72)),
    #ffffff;
  padding: 32px;
  box-shadow: 0 18px 56px rgba(17, 17, 17, 0.07);
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.testimonial-card:hover {
  border-color: rgba(240, 90, 26, 0.22);
  box-shadow: 0 30px 80px rgba(17, 17, 17, 0.12);
  transform: translateY(-7px);
}

.testimonial-card.featured {
  background:
    radial-gradient(circle at 80% 10%, rgba(240, 90, 26, 0.18), transparent 22rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 241, 234, 0.84)),
    #ffffff;
}

.quote-mark {
  margin-bottom: 42px;
  color: var(--accent);
  font-size: 4rem;
  font-weight: 900;
  line-height: 0.8;
  opacity: 0.42;
}

.testimonial-card p {
  color: var(--ink-muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.testimonial-card div:last-child {
  display: grid;
  gap: 2px;
  margin-top: 34px;
}

.testimonial-card strong {
  letter-spacing: -0.04em;
}

.testimonial-card span {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 750;
}

.cta-panel {
  grid-template-columns: 1fr minmax(190px, 0.42fr) minmax(320px, 0.72fr);
  position: relative;
}

.cta-panel::before {
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent 36%),
    radial-gradient(circle at 20% 92%, rgba(17, 17, 17, 0.18), transparent 26rem);
  content: "";
  pointer-events: none;
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-visual {
  display: grid;
  gap: 10px;
  justify-items: start;
  align-self: stretch;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.14);
  padding: 20px;
  backdrop-filter: blur(20px);
}

.cta-visual span {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.72), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.cta-visual strong {
  margin-top: auto;
  font-size: 1.25rem;
  letter-spacing: -0.05em;
}

.cta-visual em {
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  font-weight: 750;
}

@keyframes ambientDrift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(28px, -22px, 0) scale(1.08);
  }
}

@keyframes slowSpin {
  to {
    transform: rotate(1turn);
  }
}

@keyframes chartRise {
  from {
    transform: scaleY(0.16);
    opacity: 0.24;
  }

  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

@media (max-width: 1060px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .browser-card {
    margin-inline: auto;
  }

  .logo-panel,
  .testimonial-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .logo-row {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    mask-image: none;
  }

  .cta-visual {
    min-height: 170px;
  }
}

@media (max-width: 820px) {
  .nav-backdrop {
    position: fixed;
    inset: 72px 0 0;
    display: block;
    opacity: 0;
    pointer-events: none;
    background: rgba(17, 17, 17, 0.16);
    backdrop-filter: blur(8px);
    transition: opacity 180ms ease;
  }

  .nav-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links {
    z-index: 2;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 246, 0.9)),
      #ffffff;
    box-shadow: 0 24px 80px rgba(17, 17, 17, 0.16);
  }

  .hero-visual {
    min-height: 0;
  }

  .browser-url,
  .floating-card-side {
    display: none;
  }

  .visual-layout {
    display: grid;
  }

  .visual-radar {
    width: 104px;
    height: 104px;
  }

  .logo-section {
    padding-bottom: 52px;
  }

  .testimonial-card {
    min-height: auto;
  }
}

@media (max-width: 540px) {
  .page-grain {
    opacity: 0.2;
  }

  .ambient {
    opacity: 0.22;
  }

  .mockup-halo {
    inset: 6% auto auto 0;
    width: 100%;
    height: 70%;
  }

  .visual-topline {
    display: grid;
    justify-content: start;
  }

  .visual-chart {
    height: 74px;
  }

  .logo-panel,
  .testimonial-card,
  .cta-visual {
    border-radius: 24px;
  }
}

/* Agency-level interaction and composition polish */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle, rgba(240, 90, 26, 0.16), rgba(240, 90, 26, 0.06) 36%, transparent 68%);
  transform: translate3d(calc(var(--cursor-x, 50vw) - 50%), calc(var(--cursor-y, 50vh) - 50%), 0);
  transition: opacity 220ms ease;
  mix-blend-mode: multiply;
}

body.has-pointer .cursor-glow {
  opacity: 1;
}

.site-header {
  top: 14px;
  width: min(100% - 28px, 1220px);
  margin-inline: auto;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 28px;
  box-shadow:
    0 18px 70px rgba(17, 17, 17, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.site-header.is-scrolled {
  border-color: rgba(240, 90, 26, 0.12);
  box-shadow:
    0 20px 74px rgba(17, 17, 17, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.nav {
  min-height: 76px;
}

.nav-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink-muted);
  padding: 9px 13px;
  font-size: 0.78rem;
  font-weight: 850;
  backdrop-filter: blur(18px);
}

.nav-status span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(240, 90, 26, 0.12);
  animation: pulseDot 1800ms ease-in-out infinite;
}

.nav-links {
  margin-left: 0;
  box-shadow:
    0 14px 44px rgba(17, 17, 17, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.hero {
  padding-top: 18px;
}

.hero-grid {
  min-height: calc(100vh - 118px);
  gap: clamp(46px, 7vw, 96px);
}

.hero-copy {
  max-width: 760px;
}

.hero-proof {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: -22px 0 28px;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 250, 246, 0.72)),
    rgba(255, 255, 255, 0.76);
  padding: 8px 14px 8px 8px;
  box-shadow: 0 16px 44px rgba(17, 17, 17, 0.06);
  backdrop-filter: blur(18px);
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  display: block;
  width: 30px;
  height: 30px;
  border: 2px solid #ffffff;
  border-radius: 999px;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.72), transparent 24%),
    linear-gradient(135deg, rgba(240, 90, 26, 0.82), rgba(17, 17, 17, 0.78));
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.1);
}

.avatar-stack span + span {
  margin-left: -10px;
}

.hero-proof p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.86rem;
  font-weight: 750;
}

.hero-proof strong {
  color: var(--ink);
}

.hero-visual {
  transform-style: preserve-3d;
}

.browser-card {
  border-color: rgba(17, 17, 17, 0.06);
  box-shadow:
    0 36px 110px rgba(17, 17, 17, 0.14),
    0 12px 36px rgba(240, 90, 26, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.browser-card:hover {
  box-shadow:
    0 44px 124px rgba(17, 17, 17, 0.16),
    0 18px 50px rgba(240, 90, 26, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.mockup-layer {
  position: absolute;
  z-index: 1;
  display: grid;
  gap: 4px;
  max-width: 210px;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.12);
}

.mockup-layer span {
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mockup-layer strong {
  font-size: 1.32rem;
  letter-spacing: -0.05em;
}

.mockup-layer em {
  color: var(--ink-muted);
  font-style: normal;
  font-size: 0.84rem;
  font-weight: 700;
}

.mockup-layer-left {
  top: 14%;
  left: -42px;
  transform: rotate(-5deg);
}

.mockup-layer-right {
  right: -34px;
  bottom: 10%;
  transform: rotate(4deg);
}

[data-float] {
  animation: premiumFloat 7s ease-in-out infinite;
  animation-delay: var(--float-delay, 0s);
}

.floating-card-top {
  top: 36px;
}

.floating-card-bottom {
  bottom: 42px;
}

.logo-panel {
  grid-template-columns: 0.52fr 1.48fr;
  padding: 16px 0 16px 22px;
}

.logo-marquee {
  display: flex;
  overflow: hidden;
  gap: 12px;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.logo-track {
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
  min-width: max-content;
  animation: logoMarquee 28s linear infinite;
}

.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

.logo-track span {
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 246, 0.8)),
    #ffffff;
  color: rgba(17, 17, 17, 0.54);
  padding: 12px 18px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.05);
}

.logo-row {
  display: none;
}

.section {
  padding: clamp(82px, 10vw, 132px) 0;
}

.section-heading {
  margin-bottom: clamp(38px, 5vw, 62px);
}

.service-card {
  min-height: 420px;
  padding-top: 28px;
}

.service-icon {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.8), transparent 26%),
    linear-gradient(135deg, rgba(240, 90, 26, 0.2), rgba(240, 90, 26, 0.06));
  box-shadow:
    inset 0 0 0 1px rgba(240, 90, 26, 0.14),
    0 14px 34px rgba(240, 90, 26, 0.12);
  transition:
    transform 240ms ease,
    box-shadow 240ms ease;
}

.service-card:hover .service-icon {
  transform: translateY(-3px) rotate(8deg);
  box-shadow:
    inset 0 0 0 1px rgba(240, 90, 26, 0.2),
    0 18px 44px rgba(240, 90, 26, 0.18);
}

.portfolio-grid {
  align-items: stretch;
}

.portfolio-card {
  will-change: transform;
}

.portfolio-preview::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 36%, rgba(255, 255, 255, 0.16) 48%, transparent 58%);
  content: "";
  transform: translateX(-120%);
  transition: transform 900ms ease;
}

.portfolio-card:hover .portfolio-preview::after {
  transform: translateX(120%);
}

.proof-stats div {
  position: relative;
  overflow: hidden;
}

.proof-stats div::after {
  position: absolute;
  inset: auto 18px 18px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(255, 255, 255, 0.34));
  content: "";
  opacity: 0.7;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
}

.testimonial-card p {
  flex: 1;
}

.cta-panel {
  box-shadow:
    0 34px 100px rgba(240, 90, 26, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.cta-form {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 20px 54px rgba(17, 17, 17, 0.12);
}

.reveal {
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal:nth-child(2) {
  transition-delay: 70ms;
}

.reveal:nth-child(3) {
  transition-delay: 120ms;
}

@keyframes logoMarquee {
  to {
    transform: translateX(calc(-100% - 12px));
  }
}

@keyframes pulseDot {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(240, 90, 26, 0.12);
  }

  50% {
    box-shadow: 0 0 0 9px rgba(240, 90, 26, 0.04);
  }
}

@keyframes premiumFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-track {
    animation: none;
  }

  .cursor-glow {
    display: none;
  }
}

@media (hover: none), (pointer: coarse) {
  .cursor-glow {
    display: none;
  }
}

@media (max-width: 1060px) {
  .site-header {
    top: 10px;
  }

  .nav-status {
    display: none;
  }

  .hero-grid {
    min-height: auto;
  }

  .mockup-layer-left,
  .mockup-layer-right {
    position: relative;
    inset: auto;
    display: inline-grid;
    margin-top: 14px;
    transform: none;
  }

  .logo-panel {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .logo-marquee {
    mask-image: none;
  }
}

@media (max-width: 820px) {
  .site-header {
    width: min(100% - 20px, 1220px);
    border-radius: 24px;
  }

  .nav-links {
    inset: 86px 10px auto;
  }

  .hero {
    padding-top: 4px;
  }

  .hero-proof {
    align-items: flex-start;
    border-radius: 24px;
  }

  .logo-track {
    animation-duration: 22s;
  }
}

@media (max-width: 540px) {
  .hero-proof {
    display: flex;
    width: 100%;
  }

  .mockup-layer {
    max-width: none;
    width: 100%;
  }

  .service-icon {
    width: 46px;
    height: 46px;
  }
}

/* Scalable SEO website system */
.seo-hero .hero-grid {
  min-height: min(820px, calc(100vh - 118px));
}

.related-pages {
  background:
    radial-gradient(circle at 50% 0%, rgba(240, 90, 26, 0.08), transparent 34rem),
    linear-gradient(180deg, #ffffff, #fffaf6 58%, #ffffff);
}

.related-card {
  color: inherit;
}

.related-card.is-active {
  border-color: rgba(240, 90, 26, 0.38);
  background:
    radial-gradient(circle at 80% 0%, rgba(240, 90, 26, 0.18), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 241, 234, 0.84));
}

.knowledge-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(240, 90, 26, 0.08), transparent 24rem),
    linear-gradient(180deg, #ffffff, #fffaf6 62%, #ffffff);
}

.knowledge-panel {
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 250, 246, 0.72)),
    #ffffff;
  padding: clamp(26px, 4vw, 42px);
  box-shadow: var(--shadow-soft);
}

.knowledge-panel p {
  color: var(--ink-muted);
  font-size: 1.05rem;
}

.knowledge-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.knowledge-links a {
  border: 1px solid rgba(240, 90, 26, 0.14);
  border-radius: 999px;
  background: #ffffff;
  color: var(--accent);
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 850;
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.05);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.knowledge-links a:hover {
  border-color: rgba(240, 90, 26, 0.32);
  background: var(--accent-soft);
  transform: translateY(-2px);
}

.knowledge-article {
  display: grid;
  gap: 18px;
  max-width: 920px;
  margin-inline: auto;
}

.knowledge-card {
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 246, 0.72)),
    #ffffff;
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 0 18px 56px rgba(17, 17, 17, 0.06);
}

.knowledge-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2.4vw, 2.55rem);
}

.knowledge-card p {
  margin-bottom: 0;
  color: var(--ink-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.mini-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.mini-link-row a {
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--accent);
  padding: 8px 11px;
  font-size: 0.78rem;
  font-weight: 850;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.mini-link-row a:hover {
  border-color: rgba(240, 90, 26, 0.28);
  background: var(--accent-soft);
  transform: translateY(-2px);
}

.global-footer {
  padding: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(240, 90, 26, 0.1), transparent 28rem),
    linear-gradient(180deg, #ffffff, #fffaf6);
}

.footer-system {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.4fr);
  gap: 54px;
  padding: 68px 0 36px;
}

.footer-brand p {
  max-width: 360px;
  margin: 18px 0 22px;
  color: var(--ink-muted);
}

.footer-contact {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--ink-muted);
  list-style: none;
  font-weight: 700;
}

.footer-contact a {
  color: var(--ink);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.footer-columns div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-columns h2 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-columns a {
  color: var(--ink-muted);
  font-size: 0.93rem;
  font-weight: 750;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.footer-columns a:hover {
  color: var(--accent);
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  padding: 22px 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--accent);
}

@media (max-width: 1060px) {
  .footer-system,
  .footer-columns {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .footer-system,
  .footer-columns,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }
}
