:root {
  color-scheme: light;
  --ink: #071a2f;
  --muted: #53677c;
  --line: #cfe4ee;
  --paper: #f4fbff;
  --panel: #ffffff;
  --panel-soft: #e9f9ff;
  --primary: #0f7696;
  --primary-dark: #07516c;
  --accent: #0fddcf;
  --accent-2: #3b82f6;
  --glow: rgba(15, 221, 207, 0.22);
  --shadow: 0 24px 70px rgba(7, 26, 47, 0.13);
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --ink: #e8fbff;
  --muted: #a9c5d2;
  --line: #1b465c;
  --paper: #061522;
  --panel: #0b2032;
  --panel-soft: #0c2c40;
  --primary: #11c5d8;
  --primary-dark: #0fddcf;
  --accent: #52f0e4;
  --accent-2: #72a5ff;
  --glow: rgba(17, 197, 216, 0.2);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 6%, var(--glow), transparent 28rem),
    radial-gradient(circle at 92% 18%, color-mix(in srgb, var(--accent-2) 18%, transparent), transparent 26rem),
    linear-gradient(180deg, var(--paper), var(--panel));
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(color-mix(in srgb, var(--line) 42%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--line) 42%, transparent) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at top, rgba(0,0,0,.55), transparent 62%);
}
img { display: block; max-width: 100%; }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 36px rgba(7, 26, 47, 0.06);
}
.brand img { display: block; width: 204px; height: auto; border-radius: 0; }
.brand .logo-dark { display: none; }
:root[data-theme="dark"] .brand .logo-light { display: none; }
:root[data-theme="dark"] .brand .logo-dark { display: block; }
.site-nav { display: flex; align-items: center; gap: clamp(12px, 2vw, 24px); color: var(--muted); font-size: 0.94rem; font-weight: 700; }
.site-nav a { position: relative; text-decoration: none; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; border-radius: 999px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .24s ease; }
.site-nav a:hover { color: var(--primary); }
.site-nav a:hover::after { transform: scaleX(1); }
.theme-toggle { min-height: 38px; padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: var(--panel); color: var(--ink); font-weight: 800; cursor: pointer; transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.theme-toggle:hover { border-color: var(--primary); }
.theme-toggle:active, .button:active { transform: translateY(1px) scale(.99); }

.hero { position: relative; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr); gap: clamp(28px, 6vw, 72px); align-items: center; min-height: calc(100dvh - 78px); padding: clamp(46px, 7vw, 86px) clamp(20px, 5vw, 72px); border-bottom: 1px solid var(--line); overflow: hidden; }
.hero::after { content: ""; position: absolute; right: -10vw; bottom: 8%; width: 44vw; height: 44vw; border-radius: 999px; background: radial-gradient(circle, color-mix(in srgb, var(--accent) 22%, transparent), transparent 64%); filter: blur(8px); pointer-events: none; }
.hero-copy { max-width: 760px; }
.eyebrow, .section-kicker { margin: 0 0 14px; color: var(--primary); font-size: .78rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 { max-width: 800px; margin: 0; font-size: clamp(2.2rem, 4.8vw, 3.75rem); line-height: 1.0; letter-spacing: -.04em; }
h2 { margin: 0; font-size: clamp(1.5rem, 3.2vw, 2.75rem); line-height: 1.1; letter-spacing: -.035em; }
h3 { margin: 0 0 10px; font-size: 1.14rem; line-height: 1.18; }
.hero-copy > p:not(.eyebrow), .page-hero > p { max-width: 670px; margin: 24px 0 0; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.28rem); }
.hero-art { position: relative; isolation: isolate; }
.hero-art::before { content: ""; position: absolute; inset: -8%; border-radius: 40px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); opacity: .18; filter: blur(30px); animation: pulse-glow 7s ease-in-out infinite; }
.hero-art::after { content: ""; position: absolute; inset: 12% -4% auto auto; width: 42%; aspect-ratio: 1; border-radius: 999px; background: radial-gradient(circle, rgba(255,255,255,.55), transparent 68%); mix-blend-mode: screen; opacity: .5; }
.hero-art img { position: relative; z-index: 2; border-radius: 28px; box-shadow: var(--shadow); transform: rotate(-1.5deg); transition: transform .5s cubic-bezier(.16,1,.3,1), box-shadow .5s ease; }
.hero-art:hover img { transform: rotate(0deg) translateY(-4px); box-shadow: 0 32px 90px color-mix(in srgb, var(--primary) 24%, transparent); }
.orbit { position: absolute; z-index: 1; border: 1px solid color-mix(in srgb, var(--accent) 48%, transparent); border-radius: 999px; opacity: .76; }
.orbit-one { inset: -7% 9% auto auto; width: 44%; aspect-ratio: 1; animation: drift 12s ease-in-out infinite; }
.orbit-two { left: -8%; bottom: -8%; width: 38%; aspect-ratio: 1; animation: drift 15s ease-in-out infinite reverse; }
.hero-note { position: absolute; z-index: 3; padding: 10px 14px; border: 1px solid color-mix(in srgb, var(--line) 80%, transparent); border-radius: 999px; background: color-mix(in srgb, var(--panel) 82%, transparent); color: var(--primary-dark); font-size: .86rem; font-weight: 900; box-shadow: 0 18px 44px rgba(7, 26, 47, .14); backdrop-filter: blur(14px); animation: float-note 5.6s ease-in-out infinite; }
.note-one { top: 11%; left: -5%; }
.note-two { right: -4%; bottom: 13%; animation-delay: -2s; }
.hero-actions, .contact-actions, .form-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 18px; border: 1px solid transparent; border-radius: 999px; font-weight: 900; text-decoration: none; cursor: pointer; font: inherit; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease; white-space: nowrap; }
.button.primary { background: linear-gradient(135deg, var(--primary), var(--accent-2)); color: #fff; box-shadow: 0 16px 36px color-mix(in srgb, var(--primary) 28%, transparent); }
.button.primary:hover { transform: translateY(-1px); }
.button.secondary { background: color-mix(in srgb, var(--panel) 88%, transparent); border-color: var(--line); color: var(--primary-dark); }
.button.secondary:hover { border-color: var(--primary); }

.section { padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 72px); }
.intro { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1fr); gap: clamp(24px, 5vw, 72px); align-items: start; background: color-mix(in srgb, var(--panel) 88%, transparent); border-bottom: 1px solid var(--line); }
.intro > p, .cta p, .pricing-note, .privacy-note { margin: 0; color: var(--muted); font-size: 1.08rem; }
.section-heading { max-width: 820px; margin-bottom: 34px; }
.section-description { max-width: 720px; margin: 18px 0 0; color: var(--muted); font-size: 1.06rem; }
.service-grid, .pricing-grid, .process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.service-card, .price-card, .process-grid article, .contact-form { overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: color-mix(in srgb, var(--panel) 90%, transparent); box-shadow: var(--shadow); backdrop-filter: blur(10px); }
.service-card, .price-card, .process-grid article { transition: transform .28s cubic-bezier(.16,1,.3,1), border-color .28s ease, box-shadow .28s ease; }
.service-card:hover, .price-card:hover, .process-grid article:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--primary) 56%, var(--line)); box-shadow: 0 28px 82px color-mix(in srgb, var(--primary) 16%, transparent); }
.service-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: var(--panel-soft); }
.service-card div, .price-card, .process-grid article { padding: 22px; }
.service-card p, .price-card p, .process-grid p { margin: 0; color: var(--muted); }
.helper-copy { margin-top: 14px !important; padding-top: 14px; border-top: 1px solid color-mix(in srgb, var(--line) 72%, transparent); color: color-mix(in srgb, var(--primary-dark) 72%, var(--muted)) !important; font-size: .92rem; font-weight: 800; }

.examples { position: relative; isolation: isolate; background: linear-gradient(135deg, #063145, #0f7696 60%, #0fddcf); color: #fff; overflow: hidden; }
.examples::before { content: ""; position: absolute; inset: -12% -8% auto auto; width: 52vw; aspect-ratio: 1; border-radius: 999px; background: radial-gradient(circle, rgba(255,255,255,.28), transparent 64%); z-index: -1; animation: drift 14s ease-in-out infinite; }
.examples .section-kicker { color: #bffbf6; }
.examples .section-description { color: #d9fbff; }
.example-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; overflow: hidden; border: 1px solid rgba(255,255,255,.24); border-radius: 22px; background: rgba(255,255,255,.24); }
.example-list p { min-height: 124px; margin: 0; padding: 22px; background: rgba(255,255,255,.12); color: #fff; font-weight: 800; transition: background .24s ease, transform .24s ease; }
.example-list p:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }
.example-list span { display: block; margin-bottom: 8px; color: #bffbf6; font-size: .82rem; font-weight: 900; letter-spacing: .02em; }
.process, .pricing { background: color-mix(in srgb, var(--panel) 88%, transparent); border-bottom: 1px solid var(--line); }
.process-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.process-grid span { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; margin-bottom: 18px; border-radius: 999px; background: color-mix(in srgb, var(--accent) 24%, var(--panel)); color: var(--primary-dark); font-weight: 900; }
.pricing-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.price-card { position: relative; min-height: 285px; }
.price-card.featured { border-color: color-mix(in srgb, var(--accent) 68%, var(--line)); background: linear-gradient(180deg, color-mix(in srgb, var(--panel-soft) 56%, var(--panel)), color-mix(in srgb, var(--panel) 94%, transparent)); }
.price-card.featured::before { content: "Often a good first paid step"; display: inline-flex; margin-bottom: 16px; padding: 6px 10px; border-radius: 999px; background: color-mix(in srgb, var(--accent) 22%, var(--panel)); color: var(--primary-dark); font-size: .78rem; font-weight: 900; }
.price { margin-bottom: 16px !important; color: var(--primary-dark) !important; font-size: 1.28rem; font-weight: 900; }
.pricing-note { max-width: 900px; margin-top: 22px; padding-left: 16px; border-left: 4px solid var(--accent); }
.cta { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 32px; align-items: center; margin: clamp(24px, 5vw, 72px); padding: clamp(30px, 5vw, 56px); border-radius: 26px; background: linear-gradient(135deg, #062235, #07516c 55%, #0f7696); color: #fff; box-shadow: var(--shadow); }
.cta .section-kicker, .cta p { color: #c8fbff; }
.cta h2 { max-width: 900px; margin-bottom: 18px; color: #fff; }
.cta .button.secondary { background: transparent; border-color: rgba(255,255,255,.42); color: #fff; }
.site-footer { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 24px; padding: 26px clamp(20px, 5vw, 72px) 38px; color: var(--muted); font-size: .94rem; }
.site-footer p { margin: 0; }

.page-hero { padding: clamp(54px, 8vw, 108px) clamp(20px, 5vw, 72px) clamp(28px, 5vw, 56px); border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 980px; font-size: clamp(2.4rem, 5vw, 5rem); }
.form-section { padding-top: 36px; }
.contact-form { max-width: 980px; padding: clamp(22px, 4vw, 42px); }
.form-intro { max-width: 720px; margin-bottom: 26px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.form-intro h2 { font-size: clamp(1.8rem, 3.6vw, 3rem); }
.form-intro p { margin: 12px 0 0; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
label { display: grid; gap: 8px; color: var(--ink); font-weight: 800; }
label.full { grid-column: 1 / -1; }
.field-help { color: var(--muted); font-size: .9rem; font-weight: 600; }
input, textarea, select { width: 100%; border: 1px solid var(--line); border-radius: 14px; background: var(--panel); color: var(--ink); padding: 13px 14px; font: inherit; }
textarea { resize: vertical; }
input:focus, textarea:focus, select:focus { outline: 3px solid color-mix(in srgb, var(--accent) 34%, transparent); border-color: var(--primary); }
.privacy-note { margin-top: 20px; font-size: .98rem; }
.form-status { margin: 16px 0 0; color: var(--muted); font-weight: 800; }
.form-status.success { color: var(--primary-dark); }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.service-grid [data-reveal]:nth-child(2), .process-grid [data-reveal]:nth-child(2), .pricing-grid [data-reveal]:nth-child(2) { transition-delay: .08s; }
.service-grid [data-reveal]:nth-child(3), .process-grid [data-reveal]:nth-child(3), .pricing-grid [data-reveal]:nth-child(3) { transition-delay: .16s; }
.service-grid [data-reveal]:nth-child(4) { transition-delay: .24s; }

@keyframes float-note {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(12px, -16px, 0) scale(1.04); }
}
@keyframes pulse-glow {
  0%, 100% { opacity: .14; transform: scale(.98); }
  50% { opacity: .24; transform: scale(1.02); }
}

@media (max-width: 980px) {
  .hero, .intro, .cta { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .service-grid, .pricing-grid, .process-grid, .example-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-actions { margin-top: 0; }
}
@media (max-width: 720px) {
  .site-header { position: static; flex-direction: column; align-items: flex-start; }
  .brand img { width: 174px; }
  .site-nav { width: 100%; justify-content: flex-start; flex-wrap: wrap; gap: 10px 14px; }
  .hero, .section, .page-hero { padding-inline: 18px; }
  h1 { font-size: clamp(2.35rem, 14vw, 3.5rem); }
  .service-grid, .pricing-grid, .process-grid, .example-list, .form-grid { grid-template-columns: 1fr; }
  .button { width: 100%; }
  .hero-note { display: none; }
  .cta { margin: 18px; padding: 28px 20px; }
  .site-footer { display: block; }
  .site-footer p + p { margin-top: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
