:root {
  --ink: #061225;
  --ink-2: #0c1b33;
  --paper: #f4f0e8;
  --paper-2: #fbf8f0;
  --muted: #9fb0c6;
  --muted-dark: #49627d;
  --blue: #4ba8ff;
  --blue-2: #7bc8ff;
  --line: rgba(255, 255, 255, .16);
  --line-dark: rgba(6, 18, 37, .14);
  --max: 1240px;
  --radius: 32px;
  --shadow: 0 24px 80px rgba(0, 0, 0, .22);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--paper-2);
  background: var(--ink);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--ink); color: var(--paper-2); }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

.site {
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 4%, rgba(75, 168, 255, .28), transparent 30rem),
    radial-gradient(circle at 6% 18%, rgba(123, 200, 255, .12), transparent 26rem),
    linear-gradient(180deg, #061225 0%, #07162a 50%, #041020 100%);
  overflow: hidden;
}

.wrap { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }

.masthead {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(6, 18, 37, .74);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.brand-logo {
  display: block;
  width: auto;
  height: 44px;
  max-width: 220px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3.4vw, 46px);
  color: rgba(251, 248, 240, .76);
  font-size: 15px;
  letter-spacing: -.01em;
}

.nav-links a[aria-current="page"] { color: var(--paper-2); }
.nav-links a:hover,
.footer a:hover { color: var(--blue-2); }
.nav-cta { justify-self: end; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 720;
  color: var(--paper-2);
}

.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  padding: 86px 0 110px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .72fr);
  align-items: center;
  gap: clamp(42px, 7vw, 96px);
}

.hero h1,
.page-title {
  margin: 0;
  font-size: clamp(64px, 9.2vw, 142px);
  line-height: .9;
  letter-spacing: -.085em;
  max-width: 980px;
}

.hero p,
.page-lede {
  margin: 34px 0 0;
  max-width: 640px;
  color: rgba(251, 248, 240, .76);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.34;
  letter-spacing: -.025em;
}

.actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 44px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 16px;
  border: 1px solid rgba(251, 248, 240, .24);
  font-weight: 780;
  letter-spacing: -.01em;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.button.primary {
  background: var(--paper-2);
  color: var(--ink);
  border-color: var(--paper-2);
}

.button.dark {
  background: var(--ink);
  color: var(--paper-2);
  border-color: var(--ink);
}

.button:hover { transform: translateY(-2px); border-color: rgba(251, 248, 240, .55); }
.button.dark:hover { border-color: var(--ink); background: #0b1f3b; }

.hero-art,
.page-art {
  position: relative;
  min-height: 520px;
  border-radius: 44px;
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .03)),
    radial-gradient(circle at 72% 20%, rgba(123, 200, 255, .32), transparent 18rem),
    rgba(255, 255, 255, .05);
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
}

.page-art { min-height: 360px; }

.page-panel {
  min-height: 360px;
  border-radius: 36px;
  border: 1px solid var(--line);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .035)),
    radial-gradient(circle at 76% 18%, rgba(123, 200, 255, .24), transparent 18rem),
    rgba(255, 255, 255, .045);
  box-shadow: var(--shadow);
  display: grid;
  align-items: end;
  overflow: hidden;
  position: relative;
}

.page-panel::before {
  content: "";
  position: absolute;
  inset: 11%;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, .12);
  opacity: .65;
}

.page-panel-copy {
  position: relative;
  padding: 34px;
}

.page-panel-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: .98;
  letter-spacing: -.055em;
  max-width: 430px;
}

.page-panel-copy p {
  margin: 18px 0 0;
  max-width: 410px;
  color: rgba(251, 248, 240, .72);
  font-size: 17px;
  line-height: 1.55;
}

.panel-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
  color: rgba(251, 248, 240, .78);
  font-size: 17px;
}

.panel-list li {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.panel-list li:last-child { border-bottom: 0; padding-bottom: 0; }


.hero-art::before,
.page-art::before {
  content: "";
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  left: 10%;
  top: 12%;
  border-radius: 46% 54% 62% 38% / 48% 34% 66% 52%;
  background: linear-gradient(135deg, rgba(123, 200, 255, .95), rgba(75, 168, 255, .22) 48%, rgba(251, 248, 240, .08));
  filter: drop-shadow(0 26px 80px rgba(75, 168, 255, .35));
  transform: rotate(-24deg);
  animation: wing 9s ease-in-out infinite;
  z-index: -1;
}

.hero-art::after,
.page-art::after {
  content: "";
  position: absolute;
  inset: 11%;
  border-radius: 42px;
  border: 1px solid rgba(255, 255, 255, .13);
  background:
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, #000, transparent 86%);
  opacity: .32;
  z-index: -2;
}

@keyframes wing {
  0%, 100% { transform: rotate(-24deg) translate3d(0, 0, 0); border-radius: 46% 54% 62% 38% / 48% 34% 66% 52%; }
  50% { transform: rotate(-18deg) translate3d(0, -18px, 0); border-radius: 58% 42% 48% 52% / 44% 56% 44% 56%; }
}

.art-copy,
.page-art-copy {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
}

.art-copy h2,
.page-art-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: .98;
  letter-spacing: -.055em;
  max-width: 430px;
}

.art-copy p,
.page-art-copy p {
  margin: 18px 0 0;
  max-width: 410px;
  color: rgba(251, 248, 240, .72);
  font-size: 17px;
  line-height: 1.55;
}

.section { padding: clamp(86px, 10vw, 150px) 0; }
.paper { background: var(--paper); color: var(--ink); }
.deep { background: #07162a; color: var(--paper-2); }

.page-hero {
  padding: clamp(84px, 12vw, 150px) 0 clamp(70px, 9vw, 118px);
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .56fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(260px, .55fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
  margin-bottom: clamp(44px, 7vw, 90px);
}

.section-head h2,
.statement h2,
.large-heading {
  margin: 0;
  font-size: clamp(46px, 7.2vw, 108px);
  line-height: .92;
  letter-spacing: -.07em;
}

.section-head p {
  margin: 0;
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.45;
  color: var(--muted-dark);
  letter-spacing: -.025em;
}

.deep .section-head p { color: rgba(251, 248, 240, .68); }

.service-list,
.editorial-list { border-top: 1px solid var(--line-dark); }
.deep .editorial-list { border-top-color: var(--line); }

.service-row,
.editorial-row {
  display: grid;
  grid-template-columns: minmax(230px, .4fr) minmax(0, .72fr) minmax(280px, .48fr);
  gap: clamp(28px, 5vw, 74px);
  padding: clamp(38px, 6vw, 74px) 0;
  border-bottom: 1px solid var(--line-dark);
  align-items: center;
}

.editorial-row { grid-template-columns: minmax(230px, .44fr) minmax(0, .92fr); }
.deep .editorial-row { border-bottom-color: var(--line); }

.service-row h3,
.editorial-row h3,
.plan-title {
  margin: 0;
  font-size: clamp(34px, 4.8vw, 74px);
  line-height: .95;
  letter-spacing: -.06em;
}

.service-row p,
.editorial-row p {
  margin: 0;
  color: #41576f;
  font-size: clamp(19px, 2vw, 27px);
  line-height: 1.32;
  letter-spacing: -.03em;
}
.deep .editorial-row p { color: rgba(251, 248, 240, .68); }

.service-row ul,
.editorial-row ul,
.clean-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  color: #233a52;
  display: grid;
  gap: 10px;
  font-size: 16px;
}
.deep .editorial-row ul { color: rgba(251, 248, 240, .82); }

.service-row li,
.editorial-row li,
.clean-list li {
  display: flex;
  gap: 10px;
}

.service-row li::before,
.editorial-row li::before,
.clean-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--blue);
  margin-top: .58em;
  flex: 0 0 auto;
}

.service-media {
  min-height: 250px;
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 24%, rgba(123, 200, 255, .5), transparent 11rem),
    linear-gradient(135deg, #061225, #12375d 62%, #7bc8ff);
  position: relative;
  box-shadow: 0 22px 60px rgba(6, 18, 37, .18);
}

.service-media::before,
.service-media::after {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 22px;
}

.service-media::after {
  inset: auto 26px 26px auto;
  width: 92px;
  height: 92px;
  background: rgba(251, 248, 240, .88);
  border: 0;
  border-radius: 28px 28px 28px 8px;
  transform: rotate(-8deg);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .18);
}

.logo-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-top: 54px;
}

.logo-board div {
  min-height: 132px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: rgba(251, 248, 240, .82);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 740;
  letter-spacing: -.035em;
}

.work-list { display: grid; gap: 18px; }

.work-item {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(260px, .42fr) auto;
  gap: 34px;
  align-items: center;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 30px;
  background: rgba(255, 255, 255, .045);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.work-item:hover {
  transform: translateY(-3px);
  border-color: rgba(123, 200, 255, .45);
  background: rgba(255, 255, 255, .065);
}

.work-item h3 {
  margin: 0;
  font-size: clamp(29px, 4vw, 56px);
  line-height: .98;
  letter-spacing: -.055em;
}

.work-item p {
  margin: 0;
  color: rgba(251, 248, 240, .68);
  line-height: 1.55;
  font-size: 16px;
}

.work-item .arrow {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, .18);
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-2);
  font-size: 24px;
}

.statement {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(280px, .48fr);
  gap: clamp(38px, 7vw, 96px);
  align-items: start;
  padding: clamp(80px, 9vw, 130px) 0;
}

.statement p {
  margin: 0;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.42;
  color: #41576f;
  letter-spacing: -.025em;
}

.ownership-list {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.ownership-list li {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line-dark);
  color: #1b3149;
}

.ownership-list span:last-child { color: #5b6f85; text-align: right; }

.faq {
  display: grid;
  grid-template-columns: minmax(260px, .38fr) minmax(0, .78fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.faq h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 88px);
  line-height: .92;
  letter-spacing: -.065em;
}

details {
  border-top: 1px solid var(--line-dark);
  padding: 28px 0;
}

details:last-child { border-bottom: 1px solid var(--line-dark); }
summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: clamp(22px, 2.7vw, 36px);
  line-height: 1.05;
  letter-spacing: -.04em;
  font-weight: 760;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--blue); font-weight: 520; }
details[open] summary::after { content: "−"; }
details p {
  margin: 18px 0 0;
  max-width: 760px;
  color: #49627d;
  line-height: 1.6;
  font-size: 17px;
}


.pricing-matrix { min-width: 1180px; }

.pricing-matrix .feature-head {
  width: 18%;
  vertical-align: top;
  color: #5b6f85;
}

.pricing-matrix .plan-cell {
  width: 20.5%;
  vertical-align: top;
  background: rgba(255, 255, 255, .36);
}

.matrix-plan {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "title"
    "price"
    "setup"
    "summary"
    "cta";
  grid-template-rows: minmax(96px, auto) minmax(88px, auto) minmax(28px, auto) minmax(122px, auto) auto;
  gap: 16px;
  align-content: start;
  min-height: 100%;
  height: 100%;
}

.matrix-plan h3 {
  grid-area: title;
  align-self: start;
  margin: 0;
  font-size: clamp(25px, 2.45vw, 36px);
  line-height: 1;
  letter-spacing: -.05em;
}

.matrix-price {
  grid-area: price;
  align-self: start;
  font-size: clamp(38px, 4vw, 58px);
  line-height: .92;
  letter-spacing: -.065em;
  font-weight: 780;
}

.matrix-price span {
  font-size: .32em;
  color: #5b6f85;
  letter-spacing: -.02em;
}

.matrix-setup {
  grid-area: setup;
  align-self: start;
  margin: 0;
  color: #5b6f85;
  font-weight: 720;
}

.matrix-plan p:not(.matrix-setup) {
  grid-area: summary;
  align-self: start;
  margin: 0;
  color: #49627d;
  line-height: 1.5;
  font-size: 16px;
}

.matrix-plan .button {
  grid-area: cta;
  align-self: start;
  width: fit-content;
  margin-top: 0;
}

.addon-table { min-width: 980px; }

.addon-table td:nth-child(2) {
  white-space: nowrap;
  font-weight: 760;
  color: var(--ink);
}

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

.plan {
  display: grid;
  align-content: start;
  gap: 22px;
  border: 1px solid var(--line-dark);
  border-radius: 30px;
  padding: clamp(28px, 3.8vw, 42px);
  background: rgba(255, 255, 255, .42);
}

.plan-price {
  font-size: clamp(44px, 5vw, 76px);
  line-height: .92;
  letter-spacing: -.065em;
  font-weight: 780;
}

.plan-price small {
  font-size: .32em;
  letter-spacing: -.025em;
  color: #5b6f85;
}

.plan .setup,
.note {
  color: #5b6f85;
  line-height: 1.55;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line-dark);
  border-radius: 30px;
  background: rgba(255, 255, 255, .4);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

th, td {
  padding: 22px 24px;
  text-align: left;
  border-bottom: 1px solid var(--line-dark);
  vertical-align: top;
  color: #233a52;
}

th { color: var(--ink); font-weight: 760; }
tr:last-child th,
tr:last-child td { border-bottom: 0; }

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

.scope-card,
.method-card {
  border: 1px solid var(--line-dark);
  border-radius: 30px;
  padding: clamp(26px, 3vw, 36px);
  background: rgba(255, 255, 255, .42);
}

.scope-card h3,
.method-card h3 {
  margin: 0 0 18px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -.05em;
}

.scope-card p,
.method-card p { color: #49627d; line-height: 1.55; margin: 0; }


.scope-notes {
  margin-top: 18px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line-dark);
  border-radius: 28px;
  background: rgba(7, 24, 47, .035);
}

.scope-notes h3 {
  margin: 0 0 18px;
  font-size: clamp(25px, 2.4vw, 34px);
  line-height: 1;
  letter-spacing: -.045em;
}

.scope-notes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
}

.scope-notes-grid p {
  margin: 0;
  color: #49627d;
  font-size: 15px;
  line-height: 1.55;
}

.contact-methods-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 900px;
}

.method-card {
  transition: transform .22s ease, border-color .22s ease, background-color .22s ease, box-shadow .22s ease;
}

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

.method-card span {
  display: inline-flex;
  margin: 0 0 18px;
  color: rgba(251, 248, 240, .56);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.deep .method-card {
  min-height: 190px;
  border-color: rgba(251, 248, 240, .14);
  background:
    radial-gradient(circle at 15% 0%, rgba(75, 168, 255, .18), transparent 12rem),
    linear-gradient(135deg, rgba(251, 248, 240, .105), rgba(251, 248, 240, .035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .09);
}

.deep .method-card:hover {
  border-color: rgba(123, 200, 255, .42);
  background:
    radial-gradient(circle at 15% 0%, rgba(75, 168, 255, .22), transparent 12rem),
    linear-gradient(135deg, rgba(251, 248, 240, .13), rgba(251, 248, 240, .045));
}

.deep .method-card h3 {
  color: var(--paper-2);
}

.deep .method-card p {
  color: rgba(251, 248, 240, .64);
}


.form-panel {
  border: 1px solid var(--line-dark);
  border-radius: 36px;
  background: rgba(255, 255, 255, .5);
  padding: clamp(26px, 4vw, 46px);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field { display: grid; gap: 8px; margin-bottom: 18px; }
label { color: #1b3149; font-weight: 720; }
input, textarea, select {
  width: 100%;
  border: 1px solid rgba(6, 18, 37, .18);
  border-radius: 16px;
  padding: 15px 16px;
  color: var(--ink);
  background: rgba(251, 248, 240, .78);
  outline: none;
}
textarea { min-height: 150px; resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: rgba(75, 168, 255, .85); box-shadow: 0 0 0 4px rgba(75, 168, 255, .12); }

.form-note { margin: 0 0 24px; color: #49627d; line-height: 1.55; }

.footer {
  padding: clamp(48px, 7vw, 86px) 0 34px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 10% 0%, rgba(75, 168, 255, .18), transparent 23rem),
    rgba(4, 16, 32, .72);
  color: rgba(251, 248, 240, .72);
}

.footer-shell {
  display: grid;
  gap: clamp(28px, 4vw, 46px);
}

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

.footer-brand {
  color: var(--paper-2);
}

.footer-cta {
  background: rgba(251, 248, 240, .96);
  color: var(--ink);
  border-color: rgba(251, 248, 240, .96);
  flex: 0 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, .72fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}

.footer-intro {
  max-width: 520px;
}

.footer-line {
  margin: 0;
  max-width: 520px;
  color: var(--paper-2);
  font-size: clamp(30px, 4.3vw, 58px);
  line-height: .98;
  letter-spacing: -.065em;
}

.footer-note {
  margin: 22px 0 0;
  max-width: 440px;
  color: rgba(251, 248, 240, .62);
  font-size: 17px;
  line-height: 1.55;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 38px);
}

.footer-column {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-column h2 {
  margin: 0 0 6px;
  color: rgba(251, 248, 240, .48);
  font-size: 12px;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-column a {
  width: fit-content;
  color: rgba(251, 248, 240, .82);
  font-size: 15px;
  line-height: 1.35;
  letter-spacing: -.01em;
}

.footer-bottom {
  display: flex;
  gap: 12px 20px;
  flex-wrap: wrap;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(251, 248, 240, .50);
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .nav { grid-template-columns: 1fr; gap: 10px; padding: 16px 0; }
  .nav-links { order: 2; justify-content: flex-start; gap: 22px; flex-wrap: wrap; }
  .nav-cta { display: none; }
  .hero-grid,
  .page-grid,
  .section-head,
  .service-row,
  .editorial-row,
  .statement,
  .faq { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 68px; }
  .hero-art { min-height: 440px; }
  .page-panel { min-height: 320px; }
  .logo-board { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .work-item { grid-template-columns: 1fr auto; }
  .work-item p { grid-column: 1 / -1; max-width: 680px; }
  .price-grid,
  .scope-grid,
  .contact-methods,
  .scope-notes-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .wrap { width: min(100% - 28px, var(--max)); }
  .masthead { position: static; }
  .brand-logo { height: 38px; max-width: 190px; }
  .nav-links { font-size: 14px; }
  .hero h1, .page-title { font-size: clamp(58px, 17vw, 82px); }
  .hero p, .page-lede { font-size: 19px; }
  .actions { align-items: stretch; }
  .button { width: 100%; }
  .hero-art { min-height: 380px; border-radius: 30px; }
  .page-art, .page-panel { min-height: 300px; border-radius: 30px; }
  .art-copy, .page-art-copy { left: 24px; right: 24px; bottom: 24px; }
  .page-panel-copy { padding: 24px; }
  .section { padding: 76px 0; }
  .service-media { min-height: 210px; }
  .logo-board { grid-template-columns: 1fr; }
  .work-item { grid-template-columns: 1fr; border-radius: 24px; }
  .work-item .arrow { display: none; }
  .ownership-list li { display: grid; gap: 8px; }
  .ownership-list span:last-child { text-align: left; }
  .footer-top { align-items: flex-start; flex-direction: column; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr; }
  .footer-column { padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .10); }
  .footer-cta { width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  table { min-width: 680px; }
  .pricing-matrix { min-width: 900px; }
  .addon-table { min-width: 820px; }
  .matrix-plan .button { width: 100%; }
}

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


/* Bluebird polish pass: wordmark, cleaner blob art, no text overlay on hero/card art */
.brand {
  gap: 13px;
  align-items: center;
}

.brand-logo {
  height: 46px;
  max-width: 52px;
  width: auto;
  flex: 0 0 auto;
}

.brand-word {
  display: inline-flex;
  align-items: baseline;
  font-size: 20px;
  font-weight: 840;
  letter-spacing: -.045em;
  line-height: 1;
  white-space: nowrap;
}

.brand-word-blue { color: #2f8fff; }
.brand-word-light { color: #8fd3ff; }

.hero-art,
.page-art {
  display: grid;
  place-items: center;
  min-height: 560px;
  background: none;
  border: 0;
  box-shadow: none;
  overflow: visible;
  isolation: isolate;
}

.page-art { min-height: 420px; }

.hero-art::before,
.page-art::before {
  width: 112%;
  aspect-ratio: 1;
  left: -6%;
  top: -2%;
  opacity: 1;
  z-index: 0;
  transform-origin: 48% 52%;
  border-radius: 57% 43% 49% 51% / 42% 59% 41% 58%;
  background:
    radial-gradient(circle at 27% 26%, rgba(246,251,255,.28), transparent 14%),
    radial-gradient(circle at 70% 72%, rgba(17,54,99,.24), transparent 35%),
    linear-gradient(138deg, #98dbff 0%, #4da8ff 28%, #6fc0ff 55%, rgba(237,246,255,.84) 100%);
  filter: drop-shadow(0 42px 110px rgba(56, 142, 255, .34));
  will-change: transform, border-radius;
  animation:
    bluebirdBlobDrift 16.8s cubic-bezier(.47,.03,.19,.97) infinite,
    bluebirdBlobMorph 23.7s cubic-bezier(.58,.04,.22,.99) infinite alternate;
}

.hero-art::after,
.page-art::after {
  content: "";
  position: absolute;
  width: 56%;
  aspect-ratio: 1 / .68;
  left: 10%;
  top: 10%;
  z-index: 1;
  border-radius: 60% 40% 50% 50% / 48% 57% 43% 52%;
  background: radial-gradient(ellipse at center, rgba(247,251,255,.52) 0%, rgba(247,251,255,.23) 24%, rgba(247,251,255,0) 70%);
  mix-blend-mode: screen;
  opacity: .84;
  filter: blur(7px);
  pointer-events: none;
  will-change: transform, opacity;
  animation:
    bluebirdGlareMove 15.9s cubic-bezier(.48,.04,.22,.98) infinite,
    bluebirdGlarePulse 9.8s ease-in-out infinite alternate;
}

.art-copy,
.page-art-copy {
  display: none;
}

@keyframes bluebirdBlobDrift {
  0% {
    transform: rotate(-24deg) translate3d(0, 0, 0) scale(1);
  }
  9% {
    transform: rotate(-18deg) translate3d(8px, -10px, 0) scale(1.02);
  }
  21% {
    transform: rotate(-10deg) translate3d(22px, -34px, 0) scale(1.08);
  }
  34% {
    transform: rotate(-31deg) translate3d(30px, -2px, 0) scale(1.03);
  }
  49% {
    transform: rotate(-14deg) translate3d(-8px, 28px, 0) scale(1.11);
  }
  63% {
    transform: rotate(-37deg) translate3d(18px, -14px, 0) scale(1.05);
  }
  79% {
    transform: rotate(-20deg) translate3d(-22px, 16px, 0) scale(1.02);
  }
  91% {
    transform: rotate(-28deg) translate3d(-6px, -18px, 0) scale(1.07);
  }
  100% {
    transform: rotate(-24deg) translate3d(0, 0, 0) scale(1);
  }
}

@keyframes bluebirdBlobMorph {
  0% {
    border-radius: 57% 43% 49% 51% / 42% 59% 41% 58%;
  }
  13% {
    border-radius: 46% 54% 62% 38% / 58% 39% 61% 42%;
  }
  29% {
    border-radius: 63% 37% 41% 59% / 39% 63% 37% 61%;
  }
  44% {
    border-radius: 40% 60% 54% 46% / 56% 36% 64% 44%;
  }
  58% {
    border-radius: 61% 39% 47% 53% / 43% 60% 40% 57%;
  }
  74% {
    border-radius: 49% 51% 60% 40% / 49% 44% 56% 51%;
  }
  88% {
    border-radius: 55% 45% 43% 57% / 37% 61% 39% 63%;
  }
  100% {
    border-radius: 57% 43% 49% 51% / 42% 59% 41% 58%;
  }
}

@keyframes bluebirdGlareMove {
  0% {
    transform: rotate(-19deg) translate3d(6px, -6px, 0) scale(1);
    opacity: .72;
  }
  14% {
    transform: rotate(-12deg) translate3d(26px, -24px, 0) scale(1.14);
    opacity: .88;
  }
  27% {
    transform: rotate(-26deg) translate3d(54px, -6px, 0) scale(1.02);
    opacity: .76;
  }
  43% {
    transform: rotate(-9deg) translate3d(10px, 34px, 0) scale(1.09);
    opacity: .86;
  }
  57% {
    transform: rotate(-30deg) translate3d(34px, 8px, 0) scale(.96);
    opacity: .69;
  }
  76% {
    transform: rotate(-17deg) translate3d(-8px, 18px, 0) scale(1.06);
    opacity: .8;
  }
  90% {
    transform: rotate(-25deg) translate3d(18px, -14px, 0) scale(1.03);
    opacity: .74;
  }
  100% {
    transform: rotate(-19deg) translate3d(6px, -6px, 0) scale(1);
    opacity: .72;
  }
}

@keyframes bluebirdGlarePulse {
  0% {
    filter: blur(7px);
  }
  100% {
    filter: blur(11px);
  }
}

@media (max-width: 980px) {
  .brand-word { font-size: 18px; }
  .hero-art { min-height: 480px; }
}

@media (max-width: 640px) {
  .brand-logo { height: 40px; max-width: 46px; }
  .brand-word { font-size: 17px; }
  .hero-art { min-height: 380px; }
  .page-art { min-height: 300px; }
  .hero-art::before,
  .page-art::before { width: 122%; left: -11%; top: 0; }
}


/* Organic blob motion override: JS-controlled, non-looping timing */
.hero-art,
.page-art {
  --blob-x: 0px;
  --blob-y: 0px;
  --blob-rot: -24deg;
  --blob-scale: 1;
  --blob-radius: 57% 43% 49% 51% / 42% 59% 41% 58%;
  --blob-duration: 4200ms;
  --morph-duration: 5200ms;
  --blob-ease: cubic-bezier(.45,.02,.2,1);
  --morph-ease: cubic-bezier(.58,.02,.16,.99);
  --glare-ease: cubic-bezier(.32,.01,.12,1);
  --glare-x: 8px;
  --glare-y: -8px;
  --glare-rot: -18deg;
  --glare-scale: 1;
  --glare-opacity: .72;
  --glare-blur: 7px;
  --glare-duration: 4200ms;
}

.hero-art::before,
.page-art::before {
  animation: none !important;
  transform: rotate(var(--blob-rot)) translate3d(var(--blob-x), var(--blob-y), 0) scale(var(--blob-scale));
  border-radius: var(--blob-radius);
  transition:
    transform var(--blob-duration) var(--blob-ease),
    border-radius var(--morph-duration) var(--morph-ease);
}

.hero-art::after,
.page-art::after {
  animation: none !important;
  transform: rotate(var(--glare-rot)) translate3d(var(--glare-x), var(--glare-y), 0) scale(var(--glare-scale));
  opacity: var(--glare-opacity);
  filter: blur(var(--glare-blur));
  transition:
    transform var(--glare-duration) var(--glare-ease),
    opacity var(--glare-duration) ease,
    filter var(--glare-duration) ease;
}


/* Image-ready service cards */
.service-media.image-slot {
  background:
    linear-gradient(135deg, rgba(6,18,37,.34), rgba(6,18,37,.06)),
    var(--media-image),
    radial-gradient(circle at 20% 24%, rgba(123, 200, 255, .5), transparent 11rem),
    linear-gradient(135deg, #061225, #12375d 62%, #7bc8ff);
  background-size: cover, cover, auto, auto;
  background-position: center, center, center, center;
  border: 1px solid rgba(6, 18, 37, .08);
}

.service-media.image-slot::before {
  inset: 26px;
  border-color: rgba(255, 255, 255, .16);
  pointer-events: none;
}

.service-media.image-slot::after {
  display: none;
}


/* Mobile hero blob containment */
@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding: 72px 0 76px;
    overflow: hidden;
  }

  .hero-grid {
    display: block;
    position: relative;
  }

  .hero-grid > div:first-child {
    position: relative;
    z-index: 2;
  }

  .hero-art {
    position: absolute;
    width: 70vw;
    height: 70vw;
    min-height: 0;
    right: -18vw;
    top: 42%;
    opacity: .76;
    pointer-events: none;
    z-index: 1;
  }

  .hero-art::before {
    width: 100%;
    left: 0;
    top: 0;
  }

  .hero-art::after {
    width: 42%;
    left: 18%;
    top: 18%;
  }
}


/* Force mobile hero blob to behave like a background accent */
@media (max-width: 760px) {
  .site .hero {
    min-height: auto !important;
    padding: 68px 0 82px !important;
    overflow: hidden !important;
  }

  .site .hero .hero-grid {
    display: block !important;
    position: relative !important;
    min-height: 0 !important;
    padding-bottom: 0 !important;
  }

  .site .hero .hero-grid > div:first-child {
    position: relative !important;
    z-index: 3 !important;
  }

  .site .hero .hero-art {
    position: absolute !important;
    display: block !important;
    width: 62vw !important;
    height: 62vw !important;
    min-height: 0 !important;
    max-height: none !important;
    right: -24vw !important;
    top: 46% !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: .58 !important;
    pointer-events: none !important;
    z-index: 1 !important;
    overflow: visible !important;
    border: 0 !important;
    box-shadow: none !important;
    background: none !important;
  }

  .site .hero .hero-art::before {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    left: 0 !important;
    top: 0 !important;
  }

  .site .hero .hero-art::after {
    width: 38% !important;
    left: 18% !important;
    top: 18% !important;
    opacity: .62 !important;
  }
}

@media (max-width: 420px) {
  .site .hero .hero-art {
    width: 56vw !important;
    height: 56vw !important;
    right: -22vw !important;
    top: 50% !important;
    opacity: .52 !important;
  }
}


/* Final mobile hero blob: background accent, not a layout object */
@media (max-width: 760px) {
  .site .hero {
    position: relative !important;
    min-height: auto !important;
    padding: 68px 0 82px !important;
    overflow: hidden !important;
  }

  .site .hero::after {
    content: "" !important;
    position: absolute !important;
    width: 72vw !important;
    height: 72vw !important;
    right: -30vw !important;
    top: 36% !important;
    z-index: 0 !important;
    pointer-events: none !important;
    opacity: .30 !important;
    border-radius: var(--blob-radius, 57% 43% 49% 51% / 42% 59% 41% 58%) !important;
    background:
      radial-gradient(circle at 27% 26%, rgba(246,251,255,.28), transparent 14%),
      radial-gradient(circle at 70% 72%, rgba(17,54,99,.24), transparent 35%),
      linear-gradient(138deg, #98dbff 0%, #4da8ff 28%, #6fc0ff 55%, rgba(237,246,255,.84) 100%) !important;
    filter: drop-shadow(0 24px 56px rgba(56,142,255,.16)) !important;
    transform: rotate(var(--blob-rot, -23deg)) translate3d(var(--blob-x, 0px), var(--blob-y, 0px), 0) scale(var(--blob-scale, 1)) !important;
    transition:
      transform var(--blob-duration, 4200ms) var(--blob-ease, cubic-bezier(.45,.02,.2,1)),
      border-radius var(--morph-duration, 5200ms) var(--morph-ease, cubic-bezier(.58,.02,.16,.99)) !important;
    animation: none !important;
    will-change: transform, border-radius;
  }

  .site .hero-grid {
    display: block !important;
    position: relative !important;
    z-index: 1 !important;
    min-height: 0 !important;
  }

  .site .hero-grid > div:first-child {
    position: relative !important;
    z-index: 2 !important;
  }

  .site .hero .hero-art {
    display: none !important;
  }
}

@media (max-width: 420px) {
  .site .hero::after {
    width: 62vw !important;
    height: 62vw !important;
    right: -27vw !important;
    top: 40% !important;
    opacity: .24 !important;
  }
}


/* Make all service image cards consistent. No cream folded corner. */
.service-media.image-slot::after,
.service-media::after {
  display: none !important;
}

.service-media.image-slot,
.service-media {
  background:
    linear-gradient(135deg, rgba(6,18,37,.34), rgba(6,18,37,.06)),
    var(--media-image, none),
    radial-gradient(circle at 20% 24%, rgba(123, 200, 255, .5), transparent 11rem),
    linear-gradient(135deg, #061225, #12375d 62%, #7bc8ff) !important;
  background-size: cover, cover, auto, auto !important;
  background-position: center, center, center, center !important;
}


/* Absolute final mobile blob override */
@media (max-width: 760px) {
  .site .hero .hero-art {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
  }
}



/* ===== Contact page polish (ChatGPT) ===== */
.contact-hero{
  min-height:clamp(280px,40vh,420px);
  padding-block:clamp(5rem,8vw,7rem) 3rem;
}
.contact-hero .page-art,
.contact-hero .page-art-subtle{
  opacity:.16!important;
  filter:blur(70px);
  animation:contactFloat 22s ease-in-out infinite alternate;
}
@keyframes contactFloat{
  from{transform:scale(1.85) translate(30%,-16%);}
  to{transform:scale(2.05) translate(40%,-22%);}
}
.contact-section{margin-top:-1rem;padding-top:0;}
.contact-form{
  border-radius:22px;
  padding:clamp(1.5rem,3vw,2.5rem);
}
.contact-form input,
.contact-form textarea,
.contact-form select{
  transition:border-color .25s ease,box-shadow .25s ease,background-color .25s ease;
}

/* Mobile pricing */
@media (max-width:768px){
.desktop-only{display:none!important;}
.pricing-actions{margin-bottom:1rem;}
.pricing-note{order:99;margin-top:2rem;}
}

/* Bluebird package-builder pass */
.section-head-with-action > div {
  display: grid;
  gap: 18px;
  align-content: end;
}

.text-button,
.quote-builder-open,
.package-inline-trigger {
  font: inherit;
}

.text-button {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -.02em;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
  cursor: pointer;
}

.text-button:hover {
  color: #245f9d;
}

.pricing-blob-art {
  min-height: clamp(320px, 34vw, 520px);
  width: min(100%, 520px);
  justify-self: center;
  align-self: center;
}

.pricing-blob-art::before {
  width: 106%;
  left: -3%;
  top: 1%;
  filter: drop-shadow(0 46px 120px rgba(56, 142, 255, .38));
}

.pricing-blob-art::after {
  width: 48%;
  left: 14%;
  top: 12%;
}

.industry-head {
  max-width: 760px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.industry-card {
  min-height: 118px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 8%, rgba(123, 200, 255, .16), transparent 10rem),
    rgba(255, 255, 255, .045);
  color: var(--paper-2);
  font-size: clamp(21px, 2vw, 29px);
  font-weight: 820;
  line-height: 1.02;
  letter-spacing: -.04em;
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  padding: clamp(14px, 3vw, 34px);
}

.quote-modal.is-open {
  display: grid;
  place-items: center;
}

.quote-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 10, 21, .76);
  backdrop-filter: blur(16px);
}

.quote-dialog {
  position: relative;
  width: min(1160px, 100%);
  max-height: min(92vh, 880px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 34px;
  background:
    radial-gradient(circle at 82% 0%, rgba(75, 168, 255, .24), transparent 24rem),
    linear-gradient(180deg, #07182f 0%, #061225 100%);
  box-shadow: 0 34px 120px rgba(0, 0, 0, .48);
  outline: none;
}

.quote-close {
  position: sticky;
  top: 18px;
  left: calc(100% - 62px);
  z-index: 2;
  width: 44px;
  height: 44px;
  margin: 18px 18px -62px auto;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: var(--paper-2);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .46fr);
  gap: clamp(24px, 4vw, 46px);
  padding: clamp(26px, 5vw, 58px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.quote-config h2 {
  margin: 0;
  max-width: 720px;
  color: var(--paper-2);
  font-size: clamp(42px, 5.6vw, 78px);
  line-height: .92;
  letter-spacing: -.07em;
}

.quote-intro {
  margin: 24px 0 0;
  max-width: 660px;
  color: rgba(251, 248, 240, .70);
  font-size: 19px;
  line-height: 1.5;
}

.quote-group {
  margin: 28px 0 0;
  padding: 0;
  border: 0;
}

.quote-group legend {
  margin-bottom: 14px;
  color: rgba(251, 248, 240, .92);
  font-size: 18px;
  font-weight: 820;
  letter-spacing: -.025em;
}

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

.quote-addon-grid legend,
.quote-quantity-grid legend {
  grid-column: 1 / -1;
}

.quote-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 12px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  background: rgba(255, 255, 255, .045);
  cursor: pointer;
}

.quote-option:has(input:checked) {
  border-color: rgba(123, 200, 255, .54);
  background: rgba(75, 168, 255, .10);
}

.quote-option input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--blue);
}

.quote-option strong {
  display: block;
  color: var(--paper-2);
  font-size: 16px;
  line-height: 1.2;
}

.quote-option small {
  display: block;
  margin-top: 6px;
  color: rgba(251, 248, 240, .60);
  line-height: 1.45;
}

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

.quote-quantity-grid label {
  display: grid;
  gap: 9px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  background: rgba(255, 255, 255, .045);
  color: var(--paper-2);
}

.quote-quantity-grid label span {
  font-weight: 760;
  line-height: 1.25;
}

.quote-quantity-grid input {
  max-width: 110px;
  background: rgba(251, 248, 240, .95);
}

.quote-quantity-grid small {
  color: rgba(251, 248, 240, .58);
  line-height: 1.35;
}

.quote-summary {
  position: sticky;
  top: 22px;
  align-self: start;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 85% 5%, rgba(123, 200, 255, .20), transparent 13rem),
    rgba(255, 255, 255, .07);
  color: var(--paper-2);
}

.quote-total-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.quote-total-row span {
  color: rgba(251, 248, 240, .62);
}

.quote-total-row strong {
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: .95;
  letter-spacing: -.055em;
}

.quote-budget-note {
  margin: 18px 0 0;
  color: rgba(251, 248, 240, .62);
  line-height: 1.5;
}

.quote-picked {
  margin-top: 28px;
}

.quote-picked h3 {
  margin: 0 0 12px;
  font-size: 18px;
  letter-spacing: -.02em;
}

.quote-picked ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
  color: rgba(251, 248, 240, .72);
  font-size: 14px;
  line-height: 1.45;
}

.quote-picked li {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.quote-picked li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.quote-actions {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.quote-actions .button {
  width: 100%;
}

.quote-modal-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .industry-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quote-layout { grid-template-columns: 1fr; }
  .quote-summary { position: static; }
  .quote-quantity-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .pricing-blob-art { display: none; }
  .quote-addon-grid,
  .quote-quantity-grid { grid-template-columns: 1fr; }
  .quote-dialog { border-radius: 24px; max-height: 94vh; }
  .quote-close { top: 12px; margin: 12px 12px -54px auto; }
  .quote-layout { padding: 24px 16px 20px; }
  .quote-config h2 { font-size: clamp(38px, 12vw, 56px); }
  .industry-card {
    min-height: 92px;
    padding: 17px;
    border-radius: 20px;
    font-size: clamp(18px, 5vw, 23px);
  }
}

/* Contact method cards cleanup */
@media (max-width: 640px) {
  .deep .method-card {
    min-height: 160px;
    padding: 24px;
    border-radius: 24px;
  }

  .method-card span {
    margin-bottom: 14px;
  }
}


/* Pricing comparison: four equal plan choices plus desktop and mobile detail views */
.plan-choice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 28px;
}

.plan-choice-card {
  display: grid;
  grid-template-rows: auto auto auto auto 1fr auto;
  gap: 12px;
  min-width: 0;
  min-height: 360px;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: 26px;
  background: rgba(255, 255, 255, .50);
  box-shadow: 0 12px 34px rgba(7, 24, 47, .06);
}

.plan-choice-card-custom {
  border-color: rgba(63, 135, 209, .42);
  background:
    radial-gradient(circle at 92% 10%, rgba(123, 200, 255, .22), transparent 12rem),
    linear-gradient(145deg, rgba(236, 246, 255, .86), rgba(255, 255, 255, .58));
}

.plan-choice-fit {
  margin: 0;
  color: #4f6d8c;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.plan-choice-card-custom .plan-choice-fit {
  color: #245f9d;
}

.plan-choice-card h3 {
  margin: 0;
  font-size: clamp(28px, 2.4vw, 36px);
  line-height: .98;
  letter-spacing: -.05em;
}

.plan-choice-price {
  font-size: clamp(40px, 3.7vw, 54px);
  font-weight: 790;
  line-height: .92;
  letter-spacing: -.06em;
}

.plan-choice-price span {
  margin-left: 3px;
  color: #5b6f85;
  font-size: .34em;
  letter-spacing: -.02em;
}

.plan-choice-price-text {
  max-width: 190px;
  color: #174f87;
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: .98;
  letter-spacing: -.045em;
}

.plan-choice-setup,
.plan-choice-summary {
  margin: 0;
}

.plan-choice-setup {
  color: #5b6f85;
  font-size: 14px;
  font-weight: 760;
}

.plan-choice-summary {
  color: #49627d;
  font-size: 15px;
  line-height: 1.48;
}

.plan-choice-card .button {
  align-self: end;
  width: 100%;
}

.mobile-plan-details-heading,
.mobile-plan-list {
  display: none;
}

.plan-cell-custom {
  background:
    linear-gradient(145deg, rgba(236, 246, 255, .72), rgba(255, 255, 255, .36)) !important;
}

.matrix-price-custom {
  grid-area: price;
  align-self: start;
  max-width: 190px;
  color: #174f87;
  font-size: clamp(27px, 2.5vw, 35px);
  line-height: .98;
  letter-spacing: -.045em;
}

@media (max-width: 980px) {
  .plan-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .premium-matrix-wrap {
    display: none;
  }

  .plan-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 34px;
  }

  .plan-choice-card {
    gap: 8px;
    min-height: 214px;
    padding: 16px;
    border-radius: 20px;
  }

  .plan-choice-fit {
    font-size: 9px;
    letter-spacing: .09em;
  }

  .plan-choice-card h3 {
    font-size: clamp(20px, 6.2vw, 27px);
    line-height: 1;
  }

  .plan-choice-price {
    font-size: clamp(27px, 8vw, 38px);
  }

  .plan-choice-price-text {
    max-width: 130px;
    font-size: clamp(20px, 6.1vw, 27px);
  }

  .plan-choice-setup {
    font-size: 11px;
    line-height: 1.25;
  }

  .plan-choice-summary {
    display: none;
  }

  .plan-choice-card .button {
    min-height: 42px;
    padding: 11px 10px;
    font-size: 12px;
    line-height: 1.15;
  }

  .mobile-plan-details-heading {
    display: block;
    margin: 0 0 16px;
    font-size: clamp(30px, 9vw, 42px);
    line-height: .98;
    letter-spacing: -.05em;
  }

  .mobile-plan-list {
    display: grid;
    gap: 16px;
  }

  .mobile-plan-card {
    display: grid;
    gap: 14px;
    padding: 24px;
    border: 1px solid var(--line-dark);
    border-radius: 24px;
    background: rgba(255, 255, 255, .48);
    box-shadow: 0 12px 34px rgba(7, 24, 47, .07);
    scroll-margin-top: 20px;
  }

  .mobile-plan-card-custom {
    border-color: rgba(63, 135, 209, .32);
    background:
      radial-gradient(circle at 88% 8%, rgba(123, 200, 255, .24), transparent 13rem),
      linear-gradient(145deg, #07182f 0%, #0b2d53 100%);
    color: var(--paper-2);
  }

  .mobile-plan-topline {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
  }

  .mobile-plan-topline h3 {
    margin: 0;
    font-size: clamp(29px, 9vw, 40px);
    line-height: .98;
    letter-spacing: -.05em;
  }

  .mobile-plan-topline > span {
    max-width: 118px;
    padding-top: 4px;
    color: #5b6f85;
    font-size: 12px;
    font-weight: 760;
    line-height: 1.3;
    text-align: right;
  }

  .mobile-plan-card-custom .mobile-plan-topline h3,
  .mobile-plan-card-custom .mobile-plan-topline > span {
    color: var(--paper-2);
  }

  .mobile-plan-card-custom .mobile-plan-topline > span {
    color: #8fd3ff;
  }

  .mobile-plan-price {
    font-size: clamp(48px, 15vw, 64px);
    font-weight: 790;
    line-height: .9;
    letter-spacing: -.065em;
  }

  .mobile-plan-price span {
    margin-left: 4px;
    color: #5b6f85;
    font-size: .31em;
    letter-spacing: -.02em;
  }

  .mobile-plan-price-custom {
    color: var(--paper-2);
    font-size: clamp(43px, 13vw, 58px);
  }

  .mobile-plan-setup,
  .mobile-plan-summary {
    margin: 0;
  }

  .mobile-plan-setup {
    color: #5b6f85;
    font-weight: 760;
  }

  .mobile-plan-summary {
    color: #49627d;
    font-size: 16px;
    line-height: 1.5;
  }

  .mobile-plan-card-custom .mobile-plan-setup,
  .mobile-plan-card-custom .mobile-plan-summary {
    color: rgba(251, 248, 240, .72);
  }

  .mobile-plan-facts {
    margin: 4px 0 0;
    border-top: 1px solid var(--line-dark);
  }

  .mobile-plan-facts > div {
    display: grid;
    grid-template-columns: minmax(105px, .72fr) minmax(0, 1fr);
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .mobile-plan-facts dt,
  .mobile-plan-facts dd {
    margin: 0;
    line-height: 1.35;
  }

  .mobile-plan-facts dt {
    color: #5b6f85;
    font-size: 13px;
    font-weight: 760;
  }

  .mobile-plan-facts dd {
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
    text-align: right;
  }

  .mobile-plan-card-custom .mobile-plan-facts {
    border-top-color: rgba(255, 255, 255, .14);
  }

  .mobile-plan-card-custom .mobile-plan-facts > div {
    border-bottom-color: rgba(255, 255, 255, .14);
  }

  .mobile-plan-card-custom .mobile-plan-facts dt {
    color: rgba(251, 248, 240, .58);
  }

  .mobile-plan-card-custom .mobile-plan-facts dd {
    color: var(--paper-2);
  }

  .mobile-plan-details {
    padding: 0;
    border: 0;
  }

  .mobile-plan-details:last-child {
    border-bottom: 0;
  }

  .mobile-plan-details summary {
    justify-content: flex-start;
    gap: 10px;
    color: #245f9d;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -.01em;
  }

  .mobile-plan-details summary::after {
    margin-left: auto;
  }

  .mobile-plan-details ul {
    margin: 14px 0 0;
    padding-left: 20px;
    color: #49627d;
    font-size: 14px;
    line-height: 1.5;
  }

  .mobile-plan-details li + li {
    margin-top: 8px;
  }

  .mobile-plan-card .button {
    width: 100%;
    margin-top: 2px;
  }
}

@media (min-width: 640px) and (max-width: 760px) {
  .mobile-plan-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Springy liquid blob with lighting anchored to one fixed source. */
.hero-art,
.page-art,
.site .hero {
  --blob-x: 0px;
  --blob-y: 0px;
  --blob-rot: -22deg;
  --blob-scale-x: 1.035;
  --blob-scale-y: 1.035;
  --blob-radius: 57% 43% 49% 51% / 42% 59% 41% 58%;
  --light-x: 22%;
  --light-y: 16%;
  --shadow-x: 82%;
  --shadow-y: 80%;
  --glare-strength: .79;
  --glare-size: 34%;
}

.hero-art::before,
.page-art::before {
  width: 112% !important;
  height: auto !important;
  aspect-ratio: 1 !important;
  inset: auto !important;
  left: -6% !important;
  top: -2% !important;
  z-index: 0 !important;
  opacity: 1 !important;
  border: 0 !important;
  border-radius: var(--blob-radius) !important;
  background: radial-gradient(circle at 50% 50%, #73c6ff 0%, #53adfb 58%, #3f8dd9 100%) !important;
  filter: drop-shadow(0 42px 110px rgba(56, 142, 255, .34)) !important;
  transform-origin: 48% 52% !important;
  transform: translate3d(var(--blob-x), var(--blob-y), 0) rotate(var(--blob-rot)) scaleX(var(--blob-scale-x)) scaleY(var(--blob-scale-y)) !important;
  transition: none !important;
  animation: none !important;
  will-change: transform, border-radius;
}

.hero-art::after,
.page-art::after {
  content: "" !important;
  position: absolute !important;
  width: 112% !important;
  height: auto !important;
  aspect-ratio: 1 !important;
  inset: auto !important;
  left: -6% !important;
  top: -2% !important;
  z-index: 1 !important;
  border: 0 !important;
  border-radius: var(--blob-radius) !important;
  background:
    radial-gradient(
      circle at var(--light-x) var(--light-y),
      rgba(255, 255, 255, var(--glare-strength)) 0%,
      rgba(246, 252, 255, .52) 7%,
      rgba(214, 239, 255, .20) 18%,
      rgba(190, 226, 255, .07) var(--glare-size),
      transparent 48%
    ),
    radial-gradient(
      circle at var(--shadow-x) var(--shadow-y),
      rgba(4, 35, 73, .48) 0%,
      rgba(12, 63, 116, .25) 29%,
      rgba(19, 82, 143, .08) 48%,
      transparent 68%
    ) !important;
  background-size: 100% 100% !important;
  background-position: 0 0 !important;
  mask-image: none !important;
  mix-blend-mode: normal !important;
  opacity: 1 !important;
  filter: none !important;
  transform-origin: 48% 52% !important;
  transform: translate3d(var(--blob-x), var(--blob-y), 0) rotate(var(--blob-rot)) scaleX(var(--blob-scale-x)) scaleY(var(--blob-scale-y)) !important;
  transition: none !important;
  animation: none !important;
  pointer-events: none !important;
  will-change: transform, border-radius, background;
}

@media (max-width: 760px) {
  .site .hero::before,
  .site .hero::after {
    content: "" !important;
    position: absolute !important;
    width: 72vw !important;
    height: 72vw !important;
    right: -30vw !important;
    top: 36% !important;
    left: auto !important;
    z-index: 0 !important;
    pointer-events: none !important;
    border: 0 !important;
    border-radius: var(--blob-radius) !important;
    transform-origin: 48% 52% !important;
    transform: translate3d(var(--blob-x), var(--blob-y), 0) rotate(var(--blob-rot)) scaleX(var(--blob-scale-x)) scaleY(var(--blob-scale-y)) !important;
    transition: none !important;
    animation: none !important;
    will-change: transform, border-radius, background;
  }

  .site .hero::before {
    opacity: .30 !important;
    background: radial-gradient(circle at 50% 50%, #73c6ff 0%, #53adfb 58%, #3f8dd9 100%) !important;
    filter: drop-shadow(0 24px 56px rgba(56, 142, 255, .16)) !important;
  }

  .site .hero::after {
    opacity: .30 !important;
    background:
      radial-gradient(
        circle at var(--light-x) var(--light-y),
        rgba(255, 255, 255, var(--glare-strength)) 0%,
        rgba(246, 252, 255, .52) 7%,
        rgba(214, 239, 255, .20) 18%,
        rgba(190, 226, 255, .07) var(--glare-size),
        transparent 48%
      ),
      radial-gradient(
        circle at var(--shadow-x) var(--shadow-y),
        rgba(4, 35, 73, .48) 0%,
        rgba(12, 63, 116, .25) 29%,
        rgba(19, 82, 143, .08) 48%,
        transparent 68%
      ) !important;
    filter: none !important;
  }
}

@media (max-width: 420px) {
  .site .hero::before,
  .site .hero::after {
    width: 62vw !important;
    height: 62vw !important;
    right: -27vw !important;
    top: 40% !important;
    opacity: .24 !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-art::before,
  .page-art::before,
  .hero-art::after,
  .page-art::after,
  .site .hero::before,
  .site .hero::after {
    transform: rotate(-22deg) scale(1.035) !important;
  }
}

/* Compact mobile footer */
@media (max-width: 640px) {
  .footer {
    padding: 26px 0 18px;
  }

  .footer-shell {
    gap: 18px;
  }

  .footer-top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }

  .footer-brand {
    gap: 9px;
    min-width: 0;
  }

  .footer-brand .brand-logo {
    height: 34px;
    max-width: 38px;
  }

  .footer-brand .brand-word {
    font-size: 17px;
  }

  .footer-cta {
    width: auto;
    min-height: 42px;
    padding: 0 15px;
    border-radius: 13px;
    font-size: 13px;
    white-space: nowrap;
  }

  .footer-main {
    display: block;
  }

  .footer-intro,
  .footer-column:not(:first-child) {
    display: none;
  }

  .footer-nav {
    display: block;
  }

  .footer-column:first-child {
    display: grid;
    grid-template-columns: repeat(4, auto);
    justify-content: space-between;
    gap: 8px 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .10);
  }

  .footer-column:first-child h2 {
    display: none;
  }

  .footer-column a {
    font-size: 13px;
    line-height: 1.25;
  }

  .footer-bottom {
    padding-top: 15px;
    gap: 0;
    font-size: 12px;
  }

  .footer-bottom span:not(:first-child) {
    display: none;
  }
}

@media (max-width: 350px) {
  .footer-brand .brand-word {
    display: none;
  }
}

/* ===== Transparent animated WebP blob ===== */
.hero-art::before,
.hero-art::after,
.page-art::before,
.page-art::after,
.site .hero::before,
.site .hero::after {
  content: none !important;
  display: none !important;
}

.hero-art,
.page-art {
  position: relative;
  display: grid;
  place-items: center;
  overflow: visible;
}

.blob-video {
  display: block;
  width: 112%;
  max-width: none;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 42px 110px rgba(56, 142, 255, .34));
  transform: translateZ(0);
}

.pricing-blob-art .blob-video {
  width: 106%;
  filter: drop-shadow(0 46px 120px rgba(56, 142, 255, .38));
}

.contact-hero .page-art-subtle .blob-video {
  width: 112%;
}

@media (max-width: 760px) {
  .site .hero {
    position: relative !important;
    overflow: hidden !important;
  }

  .site .hero .hero-grid {
    display: block !important;
    position: relative !important;
    z-index: 1 !important;
  }

  .site .hero .hero-grid > div:first-child {
    position: relative !important;
    z-index: 2 !important;
  }

  .site .hero .hero-art {
    position: absolute !important;
    display: block !important;
    visibility: visible !important;
    width: 72vw !important;
    height: 72vw !important;
    min-height: 0 !important;
    right: -30vw !important;
    top: 36% !important;
    margin: 0 !important;
    opacity: .30 !important;
    pointer-events: none !important;
    z-index: 0 !important;
  }

  .site .hero .hero-art .blob-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 24px 56px rgba(56, 142, 255, .16));
  }

  .pricing-blob-art {
    display: none !important;
  }
}

@media (max-width: 420px) {
  .site .hero .hero-art {
    width: 62vw !important;
    height: 62vw !important;
    right: -27vw !important;
    top: 40% !important;
    opacity: .24 !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .blob-video {
    filter: drop-shadow(0 36px 88px rgba(56, 142, 255, .28));
  }
}

