/* Made by AlpinePages.com */

/* Self-hosted variable fonts (latin subset). Served from our own origin
   because the site's CSP only allows 'self' for fonts. */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url('../fonts/plus-jakarta-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* @property enables true animated gradients (Chrome 85+, Firefox 117+, Safari 16.4+) */
@property --orb-x {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 18%;
}
@property --orb-y {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 20%;
}

:root {
  --c-dark:       #1c2b3a;
  --c-dark-2:     #253649;
  --c-dark-3:     #1a2535;
  --c-accent:     #4a94b0;
  --c-accent-lt:  #6db0c8;
  --c-accent-dk:  #3a7c96;
  --c-bg:         #f5f4f0;
  --c-white:      #ffffff;
  --c-text:       #1c2b3a;
  --c-muted:      #5a6b7c;
  --c-light:      #8a9aac;
  --c-border:     #e8e6e0;

  --font-head:    'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;

  --max-w:        1160px;
  --px:           24px;
  --section-y:    96px;

  --sh-sm:  0 2px 10px rgba(28, 43, 58, 0.07);
  --sh-md:  0 8px 28px rgba(28, 43, 58, 0.11);
  --sh-lg:  0 20px 60px rgba(28, 43, 58, 0.17);
  --sh-xl:  0 32px 80px rgba(28, 43, 58, 0.22);

  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   22px;
}


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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--c-text);
  background-color: var(--c-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 3px;
  border-radius: 3px;
}

:focus:not(:focus-visible) { outline: none; }


.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

.section { padding: var(--section-y) 0; }


h1, h2, h3 {
  font-family: var(--font-head);
  line-height: 1.14;
  letter-spacing: -0.022em;
  color: inherit;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 800; }
h2 { font-size: clamp(1.85rem, 4vw, 2.85rem); font-weight: 700; }
h3 { font-size: 1.1rem; font-weight: 600; }

p {
  font-size: 1rem;
  color: var(--c-muted);
  line-height: 1.75;
}


.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 14px;
}

.eyebrow-light { color: rgba(74, 148, 176, 0.9); }

.section-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 64px;
}

.section-header h2 {
  margin-bottom: 16px;
  position: relative;
}

/* Underline that reveals via AOS / GSAP adding .revealed */
.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--c-accent), var(--c-accent-lt));
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.35s;
}

.section-header.aos-animate h2::after,
.section-header.revealed h2::after {
  width: 56px;
}

.lead {
  font-size: 1.05rem;
  color: var(--c-muted);
}


.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.38s ease, padding 0.38s ease, box-shadow 0.38s ease;
}

.navbar.scrolled {
  padding: 13px 0;
  background: rgba(28, 43, 58, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.07);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

.logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.22rem;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, #ffffff 30%, var(--c-accent-lt) 52%, #ffffff 70%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: background-position 0.7s ease, opacity 0.2s ease;
  animation: navPop 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.04s both;
}

.logo:hover {
  background-position: 100% center;
  opacity: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav-links li {
  opacity: 0;
  transform: translateY(-10px);
  animation: navPop 0.58s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.nav-links li:nth-child(1) { animation-delay: 0.12s; }
.nav-links li:nth-child(2) { animation-delay: 0.18s; }
.nav-links li:nth-child(3) { animation-delay: 0.24s; }
.nav-links li:nth-child(4) { animation-delay: 0.3s; }

.nav-link {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.22s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--c-accent);
  transition: width 0.26s ease;
}

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

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-link.active { color: var(--c-white); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 7px;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.hamburger:hover { background: rgba(255, 255, 255, 0.1); }

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}

.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; width: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
  z-index: 98;
  cursor: pointer;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.nav-overlay.active { display: block; }


.hero {
  position: relative;
  min-height: clamp(700px, 88vh, 860px);
  display: flex;
  align-items: center;
  background: linear-gradient(132deg, #192737 0%, #223750 36%, #1b2c3f 67%, #152534 100%);
  overflow: hidden;
  padding-top: 80px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}

.hero-orb-a {
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, rgba(74, 148, 176, 0.18) 0%, transparent 68%);
  top: -200px;
  right: -120px;
  animation: orbDrift 16s ease-in-out infinite alternate;
}

.hero-orb-b {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(74, 148, 176, 0.11) 0%, transparent 68%);
  bottom: 120px;
  left: -80px;
  animation: orbDrift 22s ease-in-out infinite alternate-reverse;
}

.hero-orb-c {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(109, 176, 200, 0.13) 0%, transparent 68%);
  top: 40%;
  left: 38%;
  animation: orbDrift 28s ease-in-out infinite alternate;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 74px var(--px) 122px;
  display: grid;
  grid-template-columns: minmax(320px, 1.02fr) minmax(300px, 0.98fr);
  gap: 32px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  margin-bottom: 18px;
  animation: heroFadeUp 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0s both;
}

.hero-title {
  color: var(--c-white);
  margin-bottom: 20px;
  max-width: 700px;
  animation: heroFadeUp 1.15s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
}

.hero-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.68);
  max-width: 560px;
  margin-bottom: 14px;
  animation: heroFadeUp 1.15s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hero-price-note {
  font-family: var(--font-head);
  font-size: clamp(0.98rem, 2vw, 1.15rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #d5f2ff;
  margin-bottom: 4px;
  animation: heroFadeUp 1.15s cubic-bezier(0.16, 1, 0.3, 1) 0.44s both;
}

.hero-price-footnote {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 34px;
  animation: heroFadeUp 1.15s cubic-bezier(0.16, 1, 0.3, 1) 0.54s both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: heroFadeUp 1.15s cubic-bezier(0.16, 1, 0.3, 1) 0.66s both;
}

.hero-visual {
  position: relative;
  min-height: 300px;
  transition: transform 0.28s ease;
  animation: heroFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.hero-browser {
  position: relative;
  right: auto;
  top: auto;
  width: min(540px, 100%);
  margin-left: auto;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.16),
    0 26px 80px rgba(8, 14, 26, 0.52);
  background: #0e1927;
  transform-origin: center;
}

.hero-browser-body {
  aspect-ratio: 16 / 10;
  background: #101f33;
  overflow: hidden;
  position: relative;
}

.hero-preview-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transform: scale(1.02) translate3d(0, 0, 0);
  opacity: 0;
  transition:
    opacity 1.15s cubic-bezier(0.22, 1, 0.36, 1),
    transform 9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.hero-preview-slide.active {
  opacity: 1;
  transform: scale(1.03) translate3d(0, -0.2%, 0);
}

.hero-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transform: scale(1.03);
}

.hero-badge {
  position: absolute;
  padding: 10px 14px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(14, 28, 43, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 26px rgba(6, 12, 22, 0.42);
}

.hb-1 { left: 10px; top: 0; }
.hb-2 { left: -16px; bottom: 70px; display: none; }
.hb-3 { right: -10px; bottom: 20px; display: none; }

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 98px;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font-head);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.88;
  animation: cueFadeIn 0.9s ease 0.82s both;
}

body.is-scrolled .hero-scroll-cue {
  opacity: 0;
  transform: translateX(-50%) translateY(16px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.hero-scroll-cue span {
  animation: cueTextPulse 3.2s ease-in-out infinite;
}

.hero-scroll-cue::after {
  content: '';
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
  animation: cueDrop 3s ease-in-out infinite;
}

.hero-browser-body::before {
  content: attr(data-placeholder);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 26% 18%, rgba(74, 148, 176, 0.22), transparent 44%),
    linear-gradient(135deg, #0f1d2e 0%, #12253a 48%, #17314b 100%);
}

.hero-ridge {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 1;
  line-height: 0;
  will-change: transform;
}

.hero-ridge svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Hero Grid Texture */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(74, 148, 176, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 148, 176, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(ellipse 78% 65% at 48% 42%, black 20%, transparent 100%);
  mask-image: radial-gradient(ellipse 78% 65% at 48% 42%, black 20%, transparent 100%);
  animation: gridDrift 28s linear infinite;
}

.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  pointer-events: none;
  z-index: 1;
  top: -8px;
  animation: particleDrift var(--dur, 18s) linear var(--del, 0s) infinite;
  will-change: transform, opacity;
}

.hero-title--split { animation: none !important; }

.hero-word {
  display: inline-block;
  animation: wordPop 1.0s cubic-bezier(0.16, 1, 0.3, 1) calc(0.18s + var(--wi, 0) * 0.17s) both;
  transform-origin: bottom center;
  perspective: 600px;
}

.mockup-body {
  position: relative;
}

.mockup-body::before {
  content: attr(data-placeholder);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 16px;
  font-family: var(--font-head);
  font-size: 0.73rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.88);
  background:
    radial-gradient(circle at 18% 14%, rgba(74, 148, 176, 0.26), transparent 42%),
    linear-gradient(140deg, #1e334b 0%, #223d58 52%, #162a40 100%);
}

.hero-preview,
.mockup-preview,
.mockup-static-preview {
  position: relative;
  z-index: 1;
}

.missing-shot { display: none; }


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 4px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
  cursor: pointer;
  white-space: nowrap;
  border: none;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  position: relative;
  overflow: hidden;
}

.btn-accent {
  background: var(--c-accent);
  color: var(--c-white);
}

.btn-accent::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: skewX(-18deg);
  pointer-events: none;
}

.btn-accent:hover::after { animation: btnShimmer 0.58s ease forwards; }

.btn-accent:hover {
  background: var(--c-accent-dk);
  transform: translate3d(0, -2px, 0);
  box-shadow: 0 12px 28px rgba(74, 148, 176, 0.32);
}

.btn-accent:active { transform: translate3d(0, 0, 0); }

.btn-outline {
  background: transparent;
  color: var(--c-white);
  border: 1.5px solid rgba(255, 255, 255, 0.42);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  transform: translate3d(0, -2px, 0);
}

.btn-block { width: 100%; }

/* Ripple span (JS-injected on click) */
.btn-ripple {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transform: translate(-50%, -50%) scale(0);
  animation: rippleExpand 0.55s ease-out forwards;
  pointer-events: none;
}


.services {
  background: var(--c-bg);
  position: relative;
  overflow: hidden;
}

.services::before,
.services::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.services::before {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(74, 148, 176, 0.07) 0%, transparent 68%);
  top: -140px;
  right: -100px;
  animation: orbDrift 18s ease-in-out infinite alternate;
}

.services::after {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(74, 148, 176, 0.06) 0%, transparent 68%);
  bottom: -80px;
  left: -60px;
  animation: orbDrift 26s ease-in-out infinite alternate-reverse;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-card {
  background: var(--c-white);
  border-radius: var(--r-md);
  padding: 32px 26px;
  border: 1px solid var(--c-border);
  box-shadow: var(--sh-sm);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease;
  will-change: transform;
}

.value-card:hover {
  transform: translate3d(0, -4px, 0);
  box-shadow: var(--sh-md);
}

.value-card:hover .card-icon {
  background: rgba(74, 148, 176, 0.22);
  box-shadow:
    0 0 16px rgba(74, 148, 176, 0.32),
    0 0 42px rgba(74, 148, 176, 0.12);
  animation: iconBounce 0.55s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

.card-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 148, 176, 0.1);
  border-radius: var(--r-sm);
  color: var(--c-accent);
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: background 0.32s ease, box-shadow 0.32s ease;
}

.value-card h3 { margin-bottom: 10px; color: var(--c-text); }
.value-card p { font-size: 0.92rem; line-height: 1.68; }


.work { background: var(--c-white); }

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.site-card {
  display: block;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--c-border);
  box-shadow: var(--sh-sm);
  background: var(--c-white);
  transition: transform 0.3s cubic-bezier(0.1, 0.1, 0.1, 0.1), box-shadow 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  will-change: transform;
}

.site-card:hover {
  transform: translate3d(0, -4px, 0);
  box-shadow:
    0 0 0 1px rgba(74, 148, 176, 0.22),
    0 18px 44px rgba(74, 148, 176, 0.14),
    var(--sh-md);
}

.mockup-chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #eceae4;
  border-bottom: 1px solid var(--c-border);
}

.chrome-dots { display: flex; gap: 5px; flex-shrink: 0; }

.dot { width: 10px; height: 10px; border-radius: 50%; }
.d-r { background: #ff6059; }
.d-y { background: #febc2e; }
.d-g { background: #27c840; }

.chrome-url {
  flex: 1;
  font-size: 0.7rem;
  font-family: var(--font-body);
  color: var(--c-muted);
  background: var(--c-white);
  padding: 3px 10px;
  border-radius: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s ease;
}

.chrome-url.url-changing { color: var(--c-accent); }

.hero .mockup-chrome .chrome-url {
  flex: 1;
  font-size: 0.72rem;
  font-family: var(--font-body);
  color: var(--c-muted);
  background: rgba(255,255,255,0.92);
  padding: 3px 10px;
  border-radius: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s ease;
}

.hero .mockup-chrome .chrome-url.url-changing { color: var(--c-accent-dk); }

.mockup-body {
  height: 195px;
  position: relative;
  overflow: hidden;
  background: #dde2e8;
}

.mockup-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transform: scale(1.02);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
  filter: saturate(0.96) contrast(1.03);
}

.mockup-body::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 44%;
  background: linear-gradient(180deg, rgba(12, 19, 28, 0) 0%, rgba(12, 19, 28, 0.22) 100%);
  pointer-events: none;
}

.site-card:hover .mockup-preview {
  transform: scale(1.045);
  filter: saturate(1.02) contrast(1.04);
}

.site-card-footer {
  padding: 15px 18px;
  border-top: 1px solid var(--c-border);
  position: relative;
  overflow: hidden;
}

.site-card-footer strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 4px;
}

.site-card-footer span { font-size: 0.8rem; color: var(--c-muted); }

.site-card-footer::after {
  content: 'Visit Site \2192';
  position: absolute;
  right: 18px;
  bottom: 50%;
  transform: translateY(10%) translateX(2px);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--c-accent);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.site-card:hover .site-card-footer::after {
  opacity: 1;
  transform: translateY(50%) translateX(0);
}


.about {
  background: var(--c-dark);
  color: var(--c-white);
  position: relative;
  overflow: hidden;
}

.about-mountain-bg {
  position: absolute;
  right: -40px;
  bottom: -20px;
  width: 52%;
  max-width: 520px;
  color: rgba(74, 148, 176, 0.045);
  pointer-events: none;
  z-index: 0;
  animation: mountainDrift 22s ease-in-out infinite alternate;
}

.about-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.about-content h2 { margin-bottom: 30px; max-width: 540px; }

.about-body p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 18px;
  max-width: 620px;
  line-height: 1.8;
}

.about-body p:last-child { margin-bottom: 0; }

.about-content a {
  color: var(--c-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.about-content a:hover { color: var(--c-accent-lt); }


.contact {
  position: relative;
  background: var(--c-bg);
  overflow: hidden;
}

.contact-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
  box-shadow: var(--sh-xl);
  min-height: 540px;
}

.section-header-left { margin-bottom: 32px; }
.section-header-left h2 { margin-bottom: 12px; }

.contact-visual {
  background: var(--c-dark);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  overflow: hidden;
}

.site-mockup-wrapper {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 16/10;
  background: var(--c-white);
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.site-mockup-wrapper .mockup-chrome {
  height: 32px;
  background: #f1f1f1;
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 12px;
  flex-shrink: 0;
}

.site-mockup-wrapper .chrome-address {
  flex-grow: 1;
  background: var(--c-white);
  height: 20px;
  border-radius: 4px;
  font-size: 10px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  color: var(--c-light);
  font-family: var(--font-body);
}

.site-mockup-wrapper .mockup-content {
  flex-grow: 1;
  position: relative;
  overflow: hidden;
}

.site-mockup-wrapper .mockup-content::before {
  content: attr(data-placeholder);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 14px;
  font-family: var(--font-head);
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.74);
  background:
    radial-gradient(circle at 20% 18%, rgba(74, 148, 176, 0.2), transparent 38%),
    linear-gradient(135deg, #131f30 0%, #16273b 100%);
}

.mockup-static-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.mockup-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(0,0,0,0.4));
  z-index: 5;
}

.visual-flair-blobs .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  opacity: 0.4;
}

.blob-1 {
  width: 300px;
  height: 300px;
  background: var(--c-accent);
  top: -100px;
  right: -100px;
  animation: blobPulse 8s ease-in-out infinite;
}

.blob-2 {
  width: 250px;
  height: 250px;
  background: var(--c-accent-lt);
  bottom: -80px;
  left: -80px;
  animation: blobPulse 10s ease-in-out infinite reverse;
}

.contact-info {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form-simple .input-group {
  display: flex;
  gap: 10px;
  background: var(--c-bg);
  padding: 6px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--c-border);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-simple .input-group:focus-within {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(74, 148, 176, 0.14);
  animation: inputGlowPulse 1.6s ease-in-out 1;
}

.contact-form-simple input {
  flex-grow: 1;
  background: transparent;
  border: none;
  padding: 0 15px;
  font-size: 1rem;
  color: var(--c-text);
  outline: none;
}

.contact-form-simple .btn { padding: 12px 28px; white-space: nowrap; }

.contact-methods {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--c-border);
}

.method-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--c-accent);
  transition: transform 0.2s ease;
}

.method-link:hover { transform: translateX(5px); }

.form-feedback {
  font-size: 0.88rem;
  min-height: 20px;
  padding: 12px 10px;
}

.form-feedback.success { color: #2e8a5e; }
.form-feedback.error   { color: #b83232; }


.footer {
  position: relative;
  overflow: hidden;
  margin-top: -28px;
  background:
    linear-gradient(180deg, #f5f4f0 0%, #eef1f3 6%, #d4dce3 14%, #9aabbb 24%, #5f7488 34%, #34495f 48%, #1a2a42 68%, #0f172a 100%);
  min-height: clamp(250px, 34vw, 380px);
  padding: clamp(130px, 18vw, 190px) 0 34px;
  color: var(--c-white);
}

.footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0, rgba(255, 255, 255, 0) 64px),
    linear-gradient(180deg, rgba(2, 6, 23, 0) 0%, rgba(2, 6, 23, 0.1) 56%, rgba(2, 6, 23, 0.26) 100%);
  pointer-events: none;
  z-index: 1;
}

.footer-shell,
.footer-inner,
.footer-bottom {
  position: relative;
  z-index: 3;
}

.footer-forest {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  line-height: 0;
  z-index: 0;
}

.footer-forest::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(245, 244, 240, 0.86) 0%, rgba(245, 244, 240, 0.42) 14%, rgba(15, 23, 42, 0) 46%);
  z-index: 1;
}

.forest-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  will-change: transform;
}

.footer-inner {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}

.footer-shell {
  z-index: 3;
}

.footer-brand-column {
  width: min(100%, 420px);
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 1200px) {
  .footer {
    min-height: clamp(280px, 22vw, 430px);
    padding-top: clamp(145px, 11vw, 220px);
    padding-bottom: 34px;
  }

  .forest-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
  }

  .footer-brand-column {
    width: min(100%, 460px);
    max-width: 460px;
  }
}

@media (min-width: 1600px) {
  .footer {
    min-height: clamp(320px, 22vw, 500px);
    padding-top: clamp(170px, 11vw, 250px);
  }

  .footer-inner {
    justify-content: center;
  }

  .footer-brand-column {
    align-items: center;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  width: fit-content;
  font-size: 1.32rem;
  opacity: 1;
  background: linear-gradient(90deg, #ffffff 0%, #9fc4d4 52%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
}

.footer-logo-icon {
  height: 28px;
  filter: brightness(0) invert(1);
}

.footer-tagline,
.footer-copy {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.74);
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.48);
}


[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

.value-card.aos-animate {
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--c-accent), var(--c-accent-lt), var(--c-accent));
  background-size: 200% 100%;
  animation: progressGradient 2.4s linear infinite;
  z-index: 200;
  pointer-events: none;
  transition: width 0.08s linear;
}

@supports (animation-timeline: scroll()) {
  #scroll-progress {
    animation:
      progressGradient 2.4s linear infinite,
      growProgress linear both;
    animation-timeline: auto, scroll();
    animation-range: entry 0% cover 100%;
    width: 100%;
    transform-origin: left;
    transform: scaleX(0);
    transition: none;
  }

  @keyframes growProgress {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
  }
}



@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(56px) scale(0.95);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes wordPop {
  from {
    opacity: 0;
    transform: translateY(48px) rotateX(-18deg) scale(0.84);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0deg) scale(1);
  }
}

@keyframes orbDrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(50px, -40px) scale(1.12); }
}

@keyframes gridDrift {
  from { background-position: 0 0, 0 0; }
  to   { background-position: 54px 54px, 54px 54px; }
}

@keyframes particleDrift {
  0%   { transform: translateY(0)     translateX(0);                               opacity: 0; }
  6%   { opacity: 1; }
  28%  { transform: translateY(28vh)  translateX(var(--sway, 24px)); }
  54%  { transform: translateY(54vh)  translateX(calc(var(--sway, 24px) * -0.5)); }
  80%  { transform: translateY(80vh)  translateX(var(--sway, 24px));               opacity: 0.7; }
  100% { transform: translateY(105vh) translateX(var(--drift, 0px));               opacity: 0; }
}

@keyframes blobPulse {
  0%, 100% { transform: scale(1) translate(0, 0); }
  50%       { transform: scale(1.2) translate(20px, 30px); }
}

@keyframes mountainDrift {
  from { transform: translateX(0) scale(1);       opacity: 0.045; }
  to   { transform: translateX(18px) scale(1.05); opacity: 0.07; }
}

@keyframes navPop {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes cueFadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to   { opacity: 0.88; transform: translateX(-50%) translateY(0); }
}

@keyframes cueTextPulse {
  0%, 100% { opacity: 0.66; letter-spacing: 0.2em; }
  50%       { opacity: 1;   letter-spacing: 0.24em; }
}

@keyframes cueDrop {
  0%, 100% { transform: scaleY(0.65); opacity: 0.45; }
  50%       { transform: scaleY(1);   opacity: 1; }
}

@keyframes btnShimmer {
  from { left: -120%; }
  to   { left:  160%; }
}

@keyframes iconBounce {
  0%   { transform: translateY(0)    scale(1); }
  28%  { transform: translateY(-8px) scale(1.14); }
  55%  { transform: translateY(-3px) scale(1.06); }
  78%  { transform: translateY(-6px) scale(1.1); }
  100% { transform: translateY(0)    scale(1); }
}

@keyframes rippleExpand {
  to { transform: translate(-50%, -50%) scale(130); opacity: 0; }
}

@keyframes progressGradient {
  0%   { background-position: 0%   0%; }
  100% { background-position: 200% 0%; }
}

@keyframes inputGlowPulse {
  0%   { box-shadow: 0 0 0 3px rgba(74, 148, 176, 0.16), 0 0 18px rgba(74, 148, 176, 0.10); }
  50%  { box-shadow: 0 0 0 4px rgba(74, 148, 176, 0.30), 0 0 38px rgba(74, 148, 176, 0.18); }
  100% { box-shadow: 0 0 0 3px rgba(74, 148, 176, 0.16), 0 0 18px rgba(74, 148, 176, 0.10); }
}

@keyframes statsSheen {
  0%   { left: -70%; }
  100% { left: 130%; }
}


.stats-strip {
  background: var(--c-dark);
  padding: 52px 0;
  position: relative;
  overflow: hidden;
}

.stats-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: -70%;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(74, 148, 176, 0.07), transparent);
  animation: statsSheen 5s ease-in-out infinite;
  pointer-events: none;
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-item { text-align: center; padding: 0 68px; }

.stat-numrow {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-num {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--c-white);
  letter-spacing: -0.04em;
  line-height: 1;
  transition: text-shadow 0.8s ease;
}

.stat-num.counted {
  text-shadow:
    0 0 20px rgba(74, 148, 176, 0.55),
    0 0 60px rgba(74, 148, 176, 0.22);
}

.stat-suffix {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--c-accent);
  letter-spacing: -0.03em;
  line-height: 1;
  align-self: flex-start;
  padding-top: 4px;
}

.stat-label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.stat-divider {
  width: 1px;
  height: 56px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}



@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-delay:    0.001ms !important;
    transition-duration: 0.001ms !important;
    transition-delay:    0.001ms !important;
  }

  html { scroll-behavior: auto; }

  body.page-loaded::before { opacity: 0; }

  .hero-title--split { animation: none !important; }

  .hero-word {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .logo {
    background: none;
    color: var(--c-white);
  }

  #scroll-progress {
    animation: none !important;
    transform: none !important;
  }
}


@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 128px;
  }

  .hero-title, .hero-sub { max-width: 100%; }

  .hero-visual { min-height: 300px; max-width: 620px; }
  .hero-browser { position: relative; width: 100%; }
  .hero-scroll-cue { display: none; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}


@media (max-width: 768px) {
  :root { --section-y: 72px; }

  .hero { min-height: auto; padding-top: 88px; }
  .hero-content { padding-top: 66px; padding-bottom: 112px; }
  .hero-kicker { font-size: 0.62rem; letter-spacing: 0.15em; }
  .hero-price-note { font-size: 0.98rem; }
  .hero-price-footnote { margin-bottom: 26px; }
  .hero-visual { min-height: 232px; }
  .hero-badge { font-size: 0.68rem; padding: 9px 12px; }
  .hb-2, .hb-3 { display: none; }

  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    min-height: 100dvh;
    width: min(290px, 82vw);
    background: var(--c-dark-2);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 90px 40px 60px;
    overflow-y: auto;
    transform: translateX(110%);
    transition: transform 0.36s ease;
    box-shadow: -24px 0 64px rgba(0, 0, 0, 0.28);
    z-index: 99;
  }

  .nav-links.open { transform: translateX(0); }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .nav-links li:first-child { border-top: 1px solid rgba(255, 255, 255, 0.07); }

  .nav-link {
    display: block;
    padding: 17px 0;
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.82);
  }

  .nav-link::after { display: none; }

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

  .contact-card { grid-template-columns: 1fr; min-height: auto; }
  .contact-info { padding: 50px 30px; }
  .contact-visual { padding: 40px 20px; height: 300px; }

  .contact-form-simple .input-group {
    flex-direction: column;
    padding: 10px;
  }

  .contact-form-simple .btn { width: 100%; }

  .footer {
    min-height: clamp(230px, 54vw, 320px);
    padding-top: clamp(108px, 26vw, 152px);
    padding-bottom: 28px;
  }

  .footer-forest {
    inset: 0;
  }

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

  .stats-inner { flex-direction: column; gap: 32px; }
  .stat-divider { width: 56px; height: 1px; }
  .stat-item { padding: 0; }
}


@media (max-width: 480px) {
  .hero-content { padding-bottom: 96px; }
  .hero-visual { min-height: 210px; }
  .hero-browser { border-radius: 10px; }
  .hero-price-footnote { font-size: 0.75rem; }
  .hero-badge { left: 8px; top: -8px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; justify-content: center; }
  .card-grid { grid-template-columns: 1fr; }
  .section-header { margin-bottom: 48px; }

  .footer {
    min-height: 220px;
    padding-top: 108px;
    padding-bottom: 24px;
  }

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

  .footer-logo {
    font-size: 1.18rem;
  }

  .footer-tagline {
    font-size: 0.88rem;
  }
}

html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

.hero-visual {
  position: relative;
  width: 100%;
  height: 500px;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.floating-panel {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  will-change: transform, opacity;
}

.floating-panel img { width: 100%; height: 100%; object-fit: cover; }

.panel-back {
  width: 60%;
  height: 250px;
  top: 10%;
  right: 5%;
  opacity: 0.4;
  transform: translateZ(-200px);
}

.panel-mid {
  width: 65%;
  height: 280px;
  top: 30%;
  left: 0;
  opacity: 0.7;
  transform: translateZ(-100px);
}

.panel-front {
  width: 80%;
  height: 340px;
  bottom: 0;
  right: 0;
  z-index: 10;
  background: #101f33;
}

/* Typography Split Styling */
.word {
  overflow: hidden;
  vertical-align: top;
}

.char {
  display: inline-block;
}

/* Scrub Text in About Section */
.scrub-text {
  font-size: 1.25rem; /* Slightly larger for narrative impact */
  line-height: 1.6;
}

.scrub-text .word {
  opacity: 0.2; /* Dims out text initially */
}

.hero-mountains {
  position: absolute;
  bottom: -2px; /* Pulls it down slightly to prevent sub-pixel gaps */
  left: 0;
  width: 100%;
  height: 320px;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

.mountain {
  position: absolute;
  bottom: 0;
  left: -6%;
  width: 112%;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  filter: drop-shadow(0 -4px 16px rgba(0, 0, 0, 0.18));
}

.mnt-back {
  height: 100%;
  opacity: 0.4;
  background-image: url("../images/hero-mountain-back.svg");
  background-size: 100% 100%;
}

.mnt-mid {
  height: 82%;
  opacity: 0.72;
  background-image: url("../images/hero-mountain-mid.svg");
  background-size: 100% 100%;
}

.mnt-front {
  left: -3%;
  width: 106%;
  height: 34%;
  opacity: 1;
  background-image: url("../images/hero-mountain-front.svg");
  background-size: 100% 100%;
}

.contact-terminal {
  background: #0f172a;
  padding: 80px 40px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid #334155;
  box-shadow: 0 16px 30px -26px rgba(0, 0, 0, 0.24);
}

.contact-display h2 {
  font-size: clamp(2rem, 8vw, 4rem);
  color: #38bdf8;
  margin: 20px 0;
  letter-spacing: -2px;
}

.terminal-cursor {
  display: inline-block;
  width: 10px;
  height: 40px;
  background: #38bdf8;
  animation: blink 1s infinite;
}

.btn-large {
  font-size: 1.2rem;
  padding: 20px 40px;
  margin-top: 30px;
  display: inline-block;
}

@keyframes blink { 50% { opacity: 0; } }

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(28, 43, 58, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.modal-overlay.active {
  pointer-events: auto;
}

.modal-content {
  background: white;
  padding: 40px;
  border-radius: var(--r-md);
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: var(--sh-xl);
}

.modal-content h3 {
  font-family: var(--font-head);
  margin-bottom: 8px;
}

.modal-content p {
  color: var(--c-muted);
  margin-bottom: 20px;
}

.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 1rem;
}

.modal-content textarea {
  resize: vertical;
  min-height: 100px;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--c-muted);
}

.close-modal:hover {
  color: var(--c-text);
}

@media (max-width: 800px) {
    #email-text {
        font-size: 2rem;
        line-height: 1.1;
        overflow-wrap: anywhere;
    }
}

@media (max-width: 550px) {
    #email-text {
        font-size: 1.5rem;
        line-height: 1.1;
        overflow-wrap: anywhere;
    }
}
.submit-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 24px;
  background: var(--color-primary, #0f172a);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.15s, opacity 0.2s;
}
.submit-btn:hover:not(:disabled) { opacity: 0.85; }
.submit-btn:active:not(:disabled) { transform: scale(0.98); }
.submit-btn:disabled { cursor: not-allowed; }

.submit-btn .btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s, transform 0.2s;
}

.submit-btn .btn-check {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transform: scale(0.8) translateY(4px);
}

.build-text,
.build-visual,
.services .section-header,
.value-card,
.work .section-header,
.site-card,
.about-content .eyebrow,
.about-content h2,
.faq .section-header,
.faq-item,
.contact-terminal,
.footer-inner {
  opacity: 0;
  will-change: transform, opacity;
}


.hero-content {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
  padding-bottom: 140px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title {
  max-width: 820px;
}

.hero-sub {
  max-width: 560px;
  text-align: center;
}

.hero-price-note,
.hero-price-footnote {
  text-align: center;
}

.hero-actions {
  justify-content: center;
}

.hero-visual {
  display: none;
}

.hero-kicker {
  align-self: center;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px; 
  text-decoration: none;
}

.logo-icon {
  height: 24px; 
  width: auto;  /* Maintains aspect ratio */
}

@media (hover: none), (max-width: 768px) {
  #buildSection {
    display: none;
  }
}

.faq { background: var(--c-white); }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  box-shadow: var(--sh-sm);
  transition: box-shadow 0.25s ease;
}

.faq-item[open] { box-shadow: var(--sh-md); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--c-text);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--c-accent);
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-answer {
  padding: 0 22px 20px;
  font-size: 0.95rem;
}

.contact-actions > p {
  max-width: 520px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.66);
}

.contact-inline-form {
  max-width: 560px;
  margin: 28px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.contact-inline-form .form-row {
  display: flex;
  gap: 12px;
}

.contact-inline-form input,
.contact-inline-form textarea {
  flex: 1;
  width: 100%;
  padding: 14px 16px;
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: var(--r-sm);
  color: #f1f5f9;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-inline-form textarea { resize: vertical; }

.contact-inline-form input::placeholder,
.contact-inline-form textarea::placeholder { color: #7c8ba1; }

.contact-inline-form input:focus,
.contact-inline-form textarea:focus {
  outline: none;
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(74, 148, 176, 0.18);
}

.contact-inline-form .submit-btn {
  background: var(--c-accent);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 24px;
}

.contact-inline-form .submit-btn:hover:not(:disabled) {
  opacity: 1;
  background: var(--c-accent-dk);
}

.form-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  margin-top: 2px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  font-size: 0.85rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.66);
  transition: color 0.2s ease;
}

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

@media (max-width: 550px) {
  .contact-inline-form .form-row { flex-direction: column; }
}