:root {
  --bg: #0b1118;
  --surface: rgba(255,255,255,.08);
  --surface-strong: rgba(255,255,255,.13);
  --text: #f7f3ec;
  --muted: #bfc8d3;
  --line: rgba(255,255,255,.16);
  --accent: #c8a96b;
  --accent-2: #77b7c5;
  --ink: #0d1721;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(0,0,0,.24);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
}

a {
  color: inherit;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  letter-spacing: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  box-shadow: 0 10px 32px rgba(34,72,89,.08);
}

.brand-name {
  display: grid;
  gap: 2px;
}

.brand-name strong {
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0;
}

.brand-name small {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .16em;
}

nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
  color: var(--muted);
}

nav a,
.site-footer a,
.contact-section a,
.back-link {
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

main {
  overflow: hidden;
}

.hero,
.split-section,
.form-section,
.contact-section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 64px;
  align-items: center;
  padding: 42px 0 92px;
}

.hero-copy,
.section-copy,
.form-copy,
.contact-section > div:first-child {
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 700;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 6vw, 86px);
  line-height: .98;
  letter-spacing: 0;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
  margin-bottom: 20px;
}

h3 {
  font-size: 16px;
  margin-bottom: 12px;
}

p,
li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.lead {
  max-width: 660px;
  font-size: 20px;
  color: var(--text);
}

.disclaimer {
  padding-left: 16px;
  border-left: 3px solid var(--accent);
}

.hero-kickers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-kickers span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 72%, transparent);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button,
button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
}

.button.primary,
button {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
  font-weight: 700;
}

.button.secondary {
  color: var(--text);
  background: transparent;
}

.hero-media {
  position: relative;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -18px 34px 34px -18px;
  border: 1px solid var(--line);
  border-radius: 999px 999px var(--radius) var(--radius);
  pointer-events: none;
  opacity: .58;
}

.hero-media img {
  width: 100%;
  height: min(76vh, 760px);
  object-fit: cover;
  object-position: 48% 0%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.masthead-card {
  position: absolute;
  left: -24px;
  top: 32px;
  display: grid;
  gap: 6px;
  width: 232px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface-strong) 86%, transparent);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.masthead-card span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .20em;
}

.masthead-card strong {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  font-size: 24px;
  line-height: 1.05;
}

.metric-panel {
  position: absolute;
  right: -18px;
  bottom: 30px;
  max-width: 280px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.metric-panel strong,
.metric-panel span {
  display: block;
}

.metric-panel strong {
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
}

.metric-panel span {
  color: var(--muted);
  line-height: 1.45;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .85fr);
  gap: 56px;
  align-items: center;
  padding: 100px 0;
  border-top: 1px solid var(--line);
}

.visual-stack {
  display: grid;
  gap: 18px;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}

.pros-cons > div,
.lead-form,
.development-visual,
.photo-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.pros-cons > div {
  padding: 22px;
}

ul {
  padding-left: 20px;
  margin: 0;
}

li + li {
  margin-top: 8px;
}

.development-visual {
  margin: 0;
  overflow: hidden;
}

.photo-panel {
  margin: 0;
  overflow: hidden;
  position: relative;
  background: #fff;
}

.photo-panel img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  filter: saturate(.86) brightness(1.12) contrast(.94);
}

.photo-panel::before {
  content: "";
  position: absolute;
  inset: 18px 18px 54px 18px;
  border: 2px solid rgba(255,255,255,.88);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(121,181,219,.16);
}

.photo-panel::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 24px;
  width: 72px;
  height: 178px;
  border-radius: 6px;
  background:
    repeating-linear-gradient(90deg, rgba(19,27,31,.86) 0 7px, transparent 7px 16px);
  opacity: .32;
  pointer-events: none;
}

.development-visual svg {
  width: 100%;
  display: block;
  aspect-ratio: 1.25;
}

.photo-panel figcaption,
.development-visual figcaption {
  padding: 12px 16px 16px;
  color: var(--muted);
  font-size: 13px;
}

.photo-panel figcaption {
  padding-top: 10px;
}

.abstract-visual svg {
  background: #102234;
}

.form-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
  gap: 40px;
  align-items: start;
  padding: 96px 0;
  border-top: 1px solid var(--line);
}

.lead-form {
  padding: 24px;
}

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

label {
  display: block;
}

label span {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 65%, transparent);
  color: var(--text);
  padding: 13px 14px;
  outline: none;
}

textarea {
  resize: vertical;
}

select option {
  color: #111;
}

.wide {
  grid-column: 1 / -1;
}

.consent-stack {
  display: grid;
  gap: 9px;
  margin: 16px 0 12px;
}

.check {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.consent-stack > .check:not(.mailing-opt-in) {
  margin-left: 18px;
}

.check input {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  accent-color: var(--accent);
}

.check span {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.45;
}

.mailing-opt-in {
  margin-top: 8px;
  padding: 16px 18px;
  border: 1.5px solid color-mix(in srgb, var(--accent) 72%, #ffffff);
  border-radius: 16px;
  background:
    linear-gradient(135deg,
      color-mix(in srgb, var(--accent) 18%, #ffffff) 0%,
      color-mix(in srgb, var(--surface) 82%, #dff8ff) 46%,
      color-mix(in srgb, var(--text) 9%, var(--surface)) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.62),
    0 10px 28px rgba(185,241,255,.10);
}

.mailing-opt-in span {
  color: color-mix(in srgb, var(--text) 84%, var(--muted));
  font-weight: 800;
}

.mailing-opt-in input {
  margin-top: 0;
}

.recaptcha-placeholder {
  min-height: 52px;
  margin: 8px 0 14px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 56px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.4fr .72fr .82fr;
  gap: 46px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer h4 {
  margin: 0 0 14px;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 800;
}

.site-footer p {
  display: grid;
  gap: 8px;
  margin: 0;
  line-height: 1.55;
}

.site-footer small {
  display: block;
  margin-top: 14px;
  color: color-mix(in srgb, var(--muted) 76%, transparent);
}

.site-footer a {
  width: max-content;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 0;
}

.site-footer a:hover {
  color: var(--text);
  border-bottom: 0;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social-links span {
  width: 32px;
  height: 32px;
  border: 1px solid color-mix(in srgb, var(--accent) 42%, var(--line));
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: color-mix(in srgb, var(--accent) 9%, var(--surface));
  color: var(--text);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .06em;
}

.social-links svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.selector {
  min-height: 100vh;
  background: #0c1118;
}

.selector-shell {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  padding: 90px 0;
}

.selector-shell h1 {
  max-width: 860px;
}

.selector-intro {
  max-width: 620px;
}

.selector-subhead {
  margin: 44px 0 18px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--muted);
}

.concept-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 0;
}

.video-concepts {
  grid-template-columns: repeat(4, 1fr);
}

.concept-grid a {
  min-height: 230px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.concept-grid span {
  color: var(--accent);
  font-weight: 800;
}

.concept-grid strong {
  font-size: 22px;
}

.concept-grid small {
  color: var(--muted);
  line-height: 1.5;
}

.policy-shell {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0;
}

.policy-shell section {
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

.back-link {
  color: var(--accent);
}

.theme-coastal {
  --bg: #f8fcff;
  --surface: rgba(255,255,255,.84);
  --surface-strong: #ffffff;
  --text: #132936;
  --muted: #55707e;
  --line: rgba(19,41,54,.12);
  --accent: #168aa2;
  --accent-2: #252b2c;
  --shadow: 0 22px 54px rgba(35,79,99,.10);
  background:
    radial-gradient(circle at 80% 8%, rgba(146,202,238,.34), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f5fbff 54%, #ffffff 100%);
}

.theme-med {
  --bg: #fbfdff;
  --surface: rgba(255,255,255,.86);
  --surface-strong: #ffffff;
  --text: #20282c;
  --muted: #66787f;
  --line: rgba(32,40,44,.12);
  --accent: #3f95ae;
  --accent-2: #171e20;
  --shadow: 0 20px 52px rgba(41,75,88,.11);
  background:
    radial-gradient(circle at 18% 10%, rgba(173,218,245,.42), transparent 25%),
    radial-gradient(circle at 88% 18%, rgba(62,149,174,.12), transparent 24%),
    linear-gradient(135deg, #ffffff 0%, #f7fbfd 55%, #eef7fc 100%);
}

.theme-med .button.primary,
.theme-med button {
  background: #20282c;
  border-color: #20282c;
  color: #ffffff;
}

.theme-med .brand-mark,
.theme-med .masthead-card,
.theme-med .metric-panel {
  border-radius: 999px 999px 8px 8px;
}

.theme-med .hero-media img {
  border-radius: 220px 220px 8px 8px;
}

.theme-sandstone {
  --bg: #fbfdff;
  --surface: rgba(255,255,255,.80);
  --surface-strong: #ffffff;
  --text: #17303b;
  --muted: #5d7480;
  --line: rgba(23,48,59,.13);
  --accent: #2c90ad;
  --accent-2: #1a2427;
  --shadow: 0 20px 48px rgba(40,88,112,.10);
  background:
    linear-gradient(120deg, rgba(122,193,231,.16), transparent 35%),
    linear-gradient(180deg, #ffffff, #f4fbff);
}

.theme-sandstone .site-header {
  border-bottom: 1px solid var(--line);
}

.theme-sandstone .hero {
  grid-template-columns: minmax(0, .94fr) minmax(420px, 1.06fr);
}

.theme-sandstone .masthead-card {
  top: auto;
  bottom: 156px;
}

.theme-resort {
  --bg: #ffffff;
  --surface: rgba(255,255,255,.84);
  --surface-strong: #ffffff;
  --text: #132221;
  --muted: #597073;
  --line: rgba(19,34,33,.13);
  --accent: #1a96a6;
  --accent-2: #1b2222;
  --shadow: 0 24px 58px rgba(42,96,105,.10);
  background:
    radial-gradient(circle at 86% 10%, rgba(147,208,241,.30), transparent 26%),
    linear-gradient(145deg, #ffffff 0%, #f3fbff 100%);
}

.theme-resort .hero {
  gap: 86px;
}

.theme-resort .brand-mark {
  background: #fff;
}

.theme-resort .hero-kickers span {
  background: #fff;
}

.theme-whitewashed {
  --bg: #ffffff;
  --surface: rgba(255,255,255,.84);
  --surface-strong: #ffffff;
  --text: #0f2030;
  --muted: #5a6670;
  --line: rgba(15,32,48,.12);
  --accent: #1e83a4;
  --accent-2: #151b20;
  --shadow: 0 22px 56px rgba(22,38,52,.10);
  background:
    linear-gradient(90deg, rgba(94,178,226,.12), transparent 30%),
    repeating-linear-gradient(135deg, rgba(15,32,48,.025) 0 1px, transparent 1px 18px),
    #ffffff;
}

.theme-whitewashed .lead-form,
.theme-whitewashed .pros-cons > div,
.theme-whitewashed .development-visual,
.theme-whitewashed .photo-panel {
  border-radius: 2px;
}

.theme-whitewashed .brand-mark,
.theme-whitewashed .button,
.theme-whitewashed button,
.theme-whitewashed input,
.theme-whitewashed textarea,
.theme-whitewashed select {
  border-radius: 2px;
}

.theme-whitewashed .hero-media::before {
  border-radius: 2px;
  inset: -14px 20px 20px -14px;
}

.theme-video {
  --bg: #f7fbff;
  --surface: rgba(255,255,255,.72);
  --surface-strong: rgba(255,255,255,.88);
  --text: #f7fbff;
  --muted: rgba(247,251,255,.78);
  --line: rgba(255,255,255,.24);
  --accent: #9bdcf2;
  --accent-2: #111d24;
  --ink: #0b1720;
  --shadow: 0 28px 80px rgba(8,22,31,.24);
  background: #f7fbff;
}

.theme-video main {
  overflow: visible;
}

.video-header {
  color: #ffffff;
  margin-top: 12px;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 18px;
  background: rgba(7,19,30,.34);
  box-shadow: 0 18px 54px rgba(0,0,0,.16);
}

.theme-video .brand-mark,
.theme-video .brand-name strong {
  color: #ffffff;
}

.theme-video .brand-mark {
  background: rgba(255,255,255,.13);
  border-color: rgba(255,255,255,.26);
  backdrop-filter: blur(16px);
}

.theme-video .brand-name small,
.theme-video nav {
  color: rgba(255,255,255,.88);
}

.video-hero {
  position: relative;
  min-height: 100svh;
  padding: 88px 0 42px;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.video-bg,
.video-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-bg {
  object-fit: cover;
  z-index: -3;
  filter: saturate(.92) contrast(.98) brightness(.78);
}

.video-scrim {
  z-index: -2;
  background:
    radial-gradient(circle at 78% 28%, rgba(151,221,244,.26), transparent 28%),
    linear-gradient(90deg, rgba(5,17,25,.88) 0%, rgba(5,17,25,.58) 44%, rgba(5,17,25,.22) 100%),
    linear-gradient(180deg, rgba(5,17,25,.28), rgba(5,17,25,.76));
}

.video-hero::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: -1;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  pointer-events: none;
}

.video-hero-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .72fr);
  gap: 44px;
  align-items: end;
}

.video-copy {
  max-width: 820px;
  padding-bottom: 10px;
}

.video-copy h1 {
  max-width: 850px;
  color: #ffffff;
  font-size: clamp(54px, 7.6vw, 108px);
  text-shadow: 0 18px 54px rgba(0,0,0,.28);
}

.video-copy .lead {
  max-width: 710px;
  color: rgba(255,255,255,.92);
}

.video-copy .disclaimer {
  max-width: 680px;
  color: rgba(255,255,255,.74);
}

.video-dashboard {
  display: grid;
  gap: 14px;
}

.dashboard-card {
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,.22), rgba(255,255,255,.08));
  backdrop-filter: blur(22px);
  box-shadow: 0 22px 70px rgba(0,0,0,.20);
  padding: 18px;
  color: #fff;
}

.dashboard-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.dashboard-card strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.05;
}

.dashboard-card p {
  margin: 12px 0 0;
  color: rgba(255,255,255,.76);
}

.main-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 140px 140px 18px 18px;
  padding: 34px;
}

.main-card strong {
  font-size: 38px;
}

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

.dashboard-grid .dashboard-card {
  min-height: 118px;
}

.video-method {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 104px 0;
  color: #0f2030;
}

.method-intro {
  max-width: 760px;
}

.method-intro .eyebrow,
.video-method .eyebrow,
.video-split .eyebrow {
  color: #1e83a4;
}

.method-intro h2,
.video-split h2,
.theme-video .form-section h2,
.theme-video .contact-section h2 {
  color: #0f2030;
}

.method-intro p,
.video-split p,
.theme-video .form-section p,
.theme-video .contact-section p,
.theme-video li {
  color: #5a6670;
}

.method-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.method-bento article {
  min-height: 230px;
  padding: 22px;
  border: 1px solid rgba(15,32,48,.10);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(238,248,253,.82));
  box-shadow: 0 22px 54px rgba(38,86,108,.10);
}

.method-bento span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0f2030;
  color: #ffffff;
  font-weight: 900;
  margin-bottom: 46px;
}

.method-bento h3 {
  color: #0f2030;
}

.video-split,
.theme-video .form-section,
.theme-video .contact-section {
  color: #0f2030;
}

.theme-video .pros-cons > div,
.theme-video .lead-form,
.theme-video .development-visual,
.theme-video .photo-panel {
  background: rgba(255,255,255,.86);
  border-color: rgba(15,32,48,.10);
  color: #0f2030;
}

.theme-video label span {
  color: #0f2030;
}

.theme-video input,
.theme-video textarea,
.theme-video select {
  background: rgba(255,255,255,.90);
  border-color: rgba(15,32,48,.12);
  color: #0f2030;
}

.theme-video .check span,
.theme-video .recaptcha-placeholder {
  color: #5a6670;
}

.theme-video .button.secondary {
  color: #ffffff;
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.25);
  backdrop-filter: blur(12px);
}

.theme-video .button.primary,
.theme-video button {
  color: #07131e;
  background: #ffffff;
  border-color: #ffffff;
}

.theme-video .site-footer {
  color: #5a6670;
  border-color: rgba(15,32,48,.10);
}

.theme-video-glass .site-footer {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 58px max(24px, calc((100% - var(--max)) / 2)) 64px;
  border-top: 1px solid rgba(47,179,205,.18);
  background:
    radial-gradient(circle at 12% 8%, rgba(185,241,255,.30), transparent 34%),
    radial-gradient(circle at 88% 16%, rgba(120,205,224,.16), transparent 32%),
    linear-gradient(115deg, #fafdff 0%, #eef9fb 42%, #fbfdfe 70%, #e8f5f8 100%);
  color: #50606b;
}

.theme-video-glass .site-footer .footer-col:last-child {
  justify-self: end;
  width: 180px;
}

.theme-video-glass .site-footer h4 {
  color: #0f2030;
}

.theme-video-glass .site-footer a {
  color: #44535f;
  min-height: 34px;
  border-bottom: 0;
  display: inline-flex;
  align-items: center;
}

.theme-video-glass .site-footer a:hover {
  color: #0f2030;
  border-bottom: 0;
}

.theme-video-glass .site-footer small {
  color: rgba(80,96,107,.72);
}

.theme-video-glass .social-links span {
  border-color: rgba(47,179,205,.42);
  background:
    linear-gradient(135deg, rgba(185,241,255,.44), rgba(255,255,255,.76));
  color: #0f2030;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.72),
    0 8px 20px rgba(47,179,205,.10);
}

.theme-video .site-header {
  position: fixed;
  top: 22px;
  left: 50%;
  width: min(var(--max), calc(100% - 48px));
  margin: 0;
  padding: 0;
  transform: translateX(-50%);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.theme-video .brand-mark {
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: 13px;
  letter-spacing: .12em;
}

.theme-video .brand-name strong,
.theme-video .brand-name small,
.theme-video nav {
  color: #ffffff;
}

.theme-video nav a {
  border-bottom: 0;
  color: rgba(255,255,255,.86);
  font-weight: 800;
  text-shadow: 0 2px 14px rgba(0,0,0,.45);
}

.theme-video-glass .site-header {
  justify-content: center;
  top: 58px;
  transition: opacity .24s ease, transform .24s ease;
}

.theme-video-glass .site-header.is-past-hero {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -14px);
}

.theme-video-glass .site-header nav {
  gap: 32px;
  justify-content: center;
}

.theme-video-glass .site-header nav a {
  font-size: 18px;
  letter-spacing: .01em;
  color: rgba(255,255,255,.94);
  text-shadow: 0 3px 18px rgba(0,0,0,.58);
}

.theme-video-arc .video-scrim {
  background:
    radial-gradient(circle at 84% 18%, rgba(255,255,255,.22), transparent 24%),
    linear-gradient(90deg, rgba(4,19,29,.88) 0%, rgba(4,19,29,.52) 48%, rgba(4,19,29,.22) 100%),
    linear-gradient(180deg, rgba(4,19,29,.22), rgba(4,19,29,.80));
}

.theme-video-glass {
  --accent: #b9f1ff;
}

.theme-video-glass .video-copy h1 {
  max-width: 900px;
}

.theme-video-glass .video-hero {
  background:
    radial-gradient(circle at 50% 38%, rgba(185,241,255,.20), transparent 34%),
    linear-gradient(180deg, #61727a 0%, #45565f 46%, #152b34 100%);
}

.theme-video-glass .video-scrim {
  background:
    radial-gradient(circle at 50% 34%, rgba(185,241,255,.22), transparent 34%),
    linear-gradient(180deg, rgba(3,18,28,.28), rgba(3,18,28,.62)),
    linear-gradient(90deg, rgba(3,18,28,.42), rgba(3,18,28,.18) 48%, rgba(3,18,28,.34));
}

.theme-video-glass .video-hero-inner {
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  justify-items: center;
  min-height: calc(100svh - 128px);
  gap: 0;
}

.theme-video-glass .video-copy {
  justify-self: center;
  max-width: 900px;
  padding-bottom: 0;
  text-align: center;
}

.theme-video-glass .video-copy h1 {
  font-size: clamp(52px, 5.3vw, 82px);
  line-height: 1.08;
  margin-bottom: 30px;
}

.theme-video-glass .video-copy .eyebrow {
  margin-bottom: 24px;
}

.theme-video-glass .video-copy .lead {
  max-width: 760px;
  font-size: 20px;
  line-height: 1.68;
}

.theme-video-glass .video-copy .disclaimer {
  display: none;
}

.theme-video-glass .video-copy h1,
.theme-video-glass .video-copy .lead,
.theme-video-glass .video-copy .disclaimer {
  margin-left: auto;
  margin-right: auto;
}

.theme-video-glass .hero-actions {
  justify-content: center;
  margin-top: 34px;
}

.theme-video-glass .button.primary {
  padding: 17px 27px;
  font-size: 18px;
}

.theme-video-glass .glass-highlight {
  position: relative;
  display: inline-block;
  z-index: 0;
  color: #d8f8ff;
  font-style: italic;
  font-weight: 700;
  text-shadow:
    0 0 24px rgba(185,241,255,.44),
    0 3px 18px rgba(0,0,0,.36);
}

.theme-video-glass .glass-highlight::after {
  content: "";
  position: absolute;
  left: -.08em;
  right: -.08em;
  bottom: .08em;
  height: .23em;
  z-index: -1;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(185,241,255,.10), rgba(185,241,255,.34), rgba(255,255,255,.13));
  box-shadow:
    0 0 34px rgba(185,241,255,.22),
    inset 0 0 18px rgba(255,255,255,.14);
  backdrop-filter: blur(6px);
}

.video-focus-panel {
  align-self: center;
  justify-self: stretch;
  display: grid;
  gap: 14px;
  color: #ffffff;
  pointer-events: none;
}

.video-focus-panel .eyebrow {
  margin: 0;
  color: var(--accent);
}

.video-focus-panel ul {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.video-focus-panel li {
  width: min(100%, 430px);
  height: 46px;
  display: flex;
  align-items: center;
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 14px;
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.92);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  backdrop-filter: blur(12px);
}

.theme-video .project-form-section,
.theme-video .watchlist-section,
.theme-video .contact-form-section {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100% - var(--max)) / 2));
  padding-right: max(16px, calc((100% - var(--max)) / 2));
}

.theme-video .project-form-section {
  background:
    linear-gradient(135deg, rgba(244,250,252,.98), rgba(226,241,247,.84));
}

.theme-video .project-form-section .lead-form button {
  min-height: 54px;
  padding: 0 26px;
  border: 1px solid #0f2030;
  border-radius: 14px;
  background:
    linear-gradient(135deg, #0f2030, #173647);
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(15,32,48,.18);
}

.theme-video .project-form-section .lead-form button:hover {
  transform: translateY(-1px);
  background:
    linear-gradient(135deg, #12283b, #20465b);
}

.theme-video .watchlist-section {
  background:
    linear-gradient(135deg, #0f2030, #16394a);
}

.theme-video .contact-form-section {
  background:
    linear-gradient(135deg, #f8f5ef, #e9eef0);
}

.theme-video .watchlist-section h2,
.theme-video .watchlist-section p,
.theme-video .watchlist-section li,
.theme-video .watchlist-section label span {
  color: rgba(255,255,255,.86);
}

.theme-video .watchlist-section .eyebrow {
  color: var(--accent);
}

.theme-video .watchlist-section .lead-form {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.18);
  backdrop-filter: blur(18px);
}

.theme-video .watchlist-section input,
.theme-video .watchlist-section textarea,
.theme-video .watchlist-section select {
  background: rgba(255,255,255,.92);
}

.theme-video .contact-form-section .lead-form {
  background: rgba(255,255,255,.72);
}

.theme-video-glass .contact-form-section {
  background:
    radial-gradient(circle at 18% 10%, rgba(185,241,255,.16), transparent 28%),
    linear-gradient(135deg, #0b1c28, #173545 58%, #0d2530);
  color: rgba(255,255,255,.88);
}

.theme-video-glass .contact-form-section h2,
.theme-video-glass .contact-form-section p,
.theme-video-glass .contact-form-section a,
.theme-video-glass .contact-form-section label span {
  color: rgba(255,255,255,.88);
}

.theme-video-glass .contact-form-section .eyebrow {
  color: var(--accent);
}

.theme-video-glass .contact-form-section .lead-form {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.17);
  color: #ffffff;
  backdrop-filter: blur(18px);
}

.theme-video-glass .contact-form-section input,
.theme-video-glass .contact-form-section textarea,
.theme-video-glass .contact-form-section select {
  background: rgba(255,255,255,.94);
  border-color: rgba(255,255,255,.16);
  color: #0f2030;
}

.theme-video-glass .contact-form-section .recaptcha-placeholder {
  color: rgba(255,255,255,.62);
  border-color: rgba(255,255,255,.17);
  background: rgba(255,255,255,.06);
}

.theme-video-glass .main-card,
.theme-video-glass .dashboard-card {
  border-radius: 18px;
}

.theme-video-lagoon {
  --accent: #dff9ff;
}

.theme-video-lagoon .video-dashboard {
  align-self: stretch;
}

.theme-video-lagoon .main-card {
  border-radius: 18px 18px 160px 160px;
}

.theme-video-studio {
  --accent: #8ed8ef;
}

.theme-video-studio .video-hero-inner {
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .58fr);
}

.theme-video-studio .video-bg {
  filter: saturate(.78) contrast(1.04) brightness(.58);
}

@media (max-width: 1020px) {
  nav {
    display: none;
  }

  .hero,
  .split-section,
  .form-section,
  .contact-section,
  .video-hero-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-media img {
    height: 620px;
  }

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

  .video-hero {
    min-height: auto;
    padding-top: 112px;
  }

  .video-dashboard {
    grid-template-columns: 1fr;
  }

  .theme-video-glass .video-hero-inner {
    min-height: auto;
  }

  .video-focus-panel {
    justify-self: center;
    width: min(680px, 100%);
  }

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

  .site-footer {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .theme-video-glass .site-footer {
    padding: 46px max(24px, calc((100% - 720px) / 2)) 54px;
    grid-template-columns: 1fr 1fr;
    gap: 34px 42px;
  }

  .theme-video-glass .site-footer .footer-about {
    grid-column: 1 / -1;
  }

  .theme-video-glass .site-footer .footer-col:last-child {
    justify-self: start;
    width: auto;
  }
}

@media (max-width: 680px) {
  .site-header {
    width: min(100% - 24px, var(--max));
  }

  .hero,
  .split-section,
  .form-section,
  .contact-section {
    width: min(100% - 24px, var(--max));
  }

  h1 {
    font-size: 45px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-media img {
    height: 500px;
    object-position: 48% 0%;
  }

  .metric-panel {
    position: static;
    margin-top: 12px;
    max-width: none;
  }

  .pros-cons,
  .form-grid,
  .concept-grid {
    grid-template-columns: 1fr;
  }

  .video-focus-panel ul {
    grid-template-columns: 1fr;
  }

  .video-focus-panel li {
    font-size: 16px;
  }

  .split-section,
  .form-section,
  .contact-section {
    padding: 68px 0;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    font-size: 13px;
  }

  .brand-name strong {
    font-size: 21px;
  }

  .video-hero {
    padding: 96px 0 54px;
  }

  .video-hero::after {
    inset: 10px;
    border-radius: 14px;
  }

  .video-hero-inner,
  .video-method {
    width: min(100% - 24px, var(--max));
  }

  .video-copy h1 {
    font-size: 48px;
  }

  .video-copy .lead {
    font-size: 18px;
  }

  .main-card {
    min-height: 170px;
    border-radius: 100px 100px 16px 16px;
    padding: 26px;
  }

  .dashboard-grid,
  .method-bento {
    grid-template-columns: 1fr;
  }

  .method-bento article {
    min-height: 0;
  }

  .theme-video-glass .site-footer {
    padding: 40px 24px 46px;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .theme-video-glass .site-footer .footer-about {
    grid-column: auto;
  }

  .theme-video-glass .site-footer p {
    gap: 10px;
  }

  .theme-video-glass .site-footer .footer-col:last-child {
    width: auto;
  }
}
