@font-face {
  font-family: Cabinetgrotesk Variable;
  src: url('../fonts/CabinetGrotesk-Variable.ttf') format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Zodiak Variable;
  src: url('../fonts/Zodiak-Variable.ttf') format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* Clean, modern color system */
:root {
  --bg-primary: #fafaf9;
  --bg-secondary: #1a1a1a;
  --bg-tertiary: #f5f5f4;
  --bg-white: #ffffff;
  --text-primary: #1a1a1a;
  --text-secondary: #ffffff;
  --text-muted: #666666;
  --border-primary: #2a2a2a;
  --border-light: #e5e5e5;
  --success-bg: #cef5ca;
  --success-text: #114e0b;
  --error-bg: #f8e4e4;
  --error-text: #3b0b0b;
  --accent: #2563eb;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.w-form-formradioinput--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

/* Improved body typography with more line height */
html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: Cabinetgrotesk Variable, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.125rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Zodiak Variable, Georgia, sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}

/* Improved heading hierarchy */
h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Cabinetgrotesk Variable, Georgia, sans-serif;
  font-size: 3.5rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Zodiak Variable, Georgia, sans-serif;
  font-size: 2rem;
  line-height: 1.2;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Zodiak Variable, Georgia, sans-serif;
  font-size: 1.5rem;
  line-height: 1.4;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

p {
  margin-bottom: 0;
}

a {
  color: var(--text-primary);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 1.5rem;
}

li {
  margin-bottom: .25rem;
}

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

label {
  margin-bottom: .25rem;
  font-weight: 500;
}

blockquote {
  border-left: .25rem solid #e2e2e2;
  margin-bottom: 0;
  padding: 0 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

figure {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

figcaption {
  text-align: center;
  margin-top: .25rem;
}

.utility-page_component {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
}

.utility-page_wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  max-width: 20rem;
  display: flex;
}

.utility-page_form {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.utility-page_image {
  margin-left: auto;
  margin-right: auto;
}

.global-styles {
  display: block;
  position: fixed;
  inset: 0% auto auto 0%;
}

.margin-custom2 {
  margin: 2.5rem;
}

.padding-xlarge {
  padding: 4rem;
}

.margin-xlarge {
  margin: 4rem;
}

.margin-xsmall {
  margin: .5rem;
}

.padding-xhuge {
  padding: 8rem;
}

.margin-custom1 {
  margin: 1.5rem;
}

.padding-0 {
  padding: 0;
}

.padding-xxhuge {
  padding: 12rem;
}

.padding-huge {
  padding: 6rem;
}

.margin-large {
  margin: 3rem;
}

.padding-xxlarge {
  padding: 5rem;
}

.margin-xxsmall {
  margin: .25rem;
}

.padding-custom3 {
  padding: 3.5rem;
}

.padding-large {
  padding: 3rem;
}

.margin-tiny {
  margin: .125rem;
}

.padding-small {
  padding: 1rem;
}

.padding-custom2 {
  padding: 2.5rem;
}

.margin-custom3 {
  margin: 3.5rem;
}

.padding-custom1 {
  padding: 1.5rem;
}

.margin-huge {
  margin: 6rem;
}

.padding-medium {
  padding: 2rem;
}

.padding-xsmall {
  padding: .5rem;
}

.margin-xxlarge {
  margin: 5rem;
}

.padding-xxsmall {
  padding: .25rem;
}

.margin-xhuge {
  margin: 8rem;
}

.padding-tiny {
  padding: .125rem;
}

.margin-small {
  margin: 1rem;
}

.margin-medium {
  margin: 2rem;
}

.margin-xxhuge {
  margin: 12rem;
}

.margin-0 {
  margin: 0;
}

.margin-horizontal {
  margin-top: 0;
  margin-bottom: 0;
}

.padding-top {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.margin-vertical {
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.padding-left {
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
}

.padding-vertical {
  padding-left: 0;
  padding-right: 0;
}

.padding-horizontal {
  padding-top: 0;
  padding-bottom: 0;
}

.margin-right {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.margin-top {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-left {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
}

.padding-right {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.padding-bottom {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.form_checkbox {
  flex-direction: row;
  align-items: center;
  margin-bottom: .5rem;
  padding-left: 0;
  display: flex;
}

.form_checkbox-icon {
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
}

.form_checkbox-icon.w--redirected-checked {
  background-size: 90%;
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
}

.form_checkbox-icon.w--redirected-focus {
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
  box-shadow: 0 0 .25rem 0 #3898ec;
}

.fs-styleguide_background {
  border: 1px solid #0000001a;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.fs-styleguide_spacing {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-image: linear-gradient(to top, #2d40ea1a, #fff0);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start stretch;
  display: grid;
  position: relative;
}

.icon-1x1-small {
  flex: none;
  width: 1rem;
  height: 1rem;
}

.overflow-auto {
  overflow: auto;
}

.spacing-clean {
  margin: 0;
  padding: 0;
}

.icon-1x1-large {
  width: 2.5rem;
  height: 2.5rem;
}

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

.fs-styleguide_background-space {
  width: 1px;
  height: 1px;
  margin: 5rem;
}

.text-weight-semibold {
  font-weight: 600;
}

.text-style-strikethrough {
  text-decoration: line-through;
}

.fs-styleguide_item {
  grid-column-gap: 1.125rem;
  grid-row-gap: 1.125rem;
  border-bottom: 1px solid #0000001a;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start;
  padding-bottom: 3rem;
  display: grid;
  position: relative;
}

.fs-styleguide_item.is-stretch {
  justify-items: stretch;
}

.max-width-full {
  width: 100%;
  max-width: none;
}

.fs-styleguide_item-header {
  border-bottom: 1px solid #0000001a;
  width: 100%;
  padding-bottom: 2rem;
}

.background-color-primary {
  background-color: var(--background-color--background-primary);
  color: var(--text-color--text-alternate\<deleted\|variable-2688eaeb-df93-32fe-efb9-d54fbd7bd424\>);
}

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

.text-color-black {
  color: var(--text-color--text-primary);
}

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

.fs-styleguide_2-col {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.fs-styleguide_2-col.is-align-start {
  align-items: start;
}

.form_message-success {
  background-color: var(--background-color--background-success\<deleted\|variable-879e2a57-3170-38fd-0ae7-d0e890873ab2\>);
  color: var(--text-color--text-success\<deleted\|variable-17518f72-fb93-45b5-ad9e-fdd3f2b1833a\>);
  padding: 1.25rem;
}

.fs-styleguide_row {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.heading-style-h3 {
  font-family: Zodiak Variable, Georgia, sans-serif;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.3;
}

.heading-style-h3.is-small {
  font-size: 1.75rem;
}

.text-rich-text h1, .text-rich-text h2, .text-rich-text h3, .text-rich-text h4 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.text-rich-text h5, .text-rich-text h6 {
  margin-top: 1.25rem;
  margin-bottom: 1rem;
}

.text-rich-text p {
  margin-bottom: 1rem;
}

.text-rich-text ul, .text-rich-text ol {
  margin-bottom: 1.5rem;
}

.text-rich-text blockquote {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.pointer-events-auto {
  pointer-events: auto;
}

.container-small {
  width: 100%;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.icon-height-small {
  height: 1rem;
}

.icon-1x1-medium {
  width: 2rem;
  height: 2rem;
}

/* Clean hero title styling */
.hero-title {
  font-family: Cabinetgrotesk Variable, -apple-system, sans-serif;
  font-size: 4.5rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem 0;
  max-width: 20ch;
}

.hero-description {
  font-size: 1.35rem;
  line-height: 1.6;
  opacity: 0.9;
  margin: 0 0 2.5rem 0;
  max-width: 45ch;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-cta {
  margin: 0 !important;
  align-self: center !important;
}

.heading-style-h1 {
  text-transform: uppercase;
  flex: 0 auto;
  font-size: 17vw;
  font-weight: 400;
  line-height: 1.15;
}

.heading-style-h1.is-contact {
  font-size: 7rem;
}

/* Increased global padding for spacious, modern feel */
.padding-global {
  padding-left: 5rem;
  padding-right: 5rem;
}

.text-weight-normal {
  font-weight: 400;
}

.padding-section-small {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.max-width-small {
  width: 100%;
  max-width: 48ch;
}

.text-color-alternate {
  color: var(--text-color--text-alternate\<deleted\|variable-2688eaeb-df93-32fe-efb9-d54fbd7bd424\>);
}

.text-style-italic {
  font-style: italic;
}

.pointer-events-none {
  pointer-events: none;
}

.text-weight-medium {
  font-weight: 500;
}

.overflow-hidden {
  overflow: hidden;
}

.fs-styleguide_section-header {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-bottom: 1px solid var(--border-color--border-primary);
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-bottom: 3rem;
  line-height: 1.4;
  display: grid;
}

.text-size-tiny {
  font-size: .75rem;
}

.max-width-xxlarge {
  width: 100%;
  max-width: 80rem;
}

.fs-styleguide_1-col {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.overflow-visible {
  overflow: visible;
}

.fs-styleguide_empty-box {
  z-index: -1;
  background-color: #2d40ea0d;
  border: 1px dashed #2d40ea;
  min-width: 3rem;
  height: 3rem;
  position: relative;
}

.text-weight-light {
  font-weight: 300;
}

.fs-styleguide_heading-medium {
  font-size: 4rem;
}

.max-width-xsmall {
  width: 100%;
  max-width: 16rem;
}

.fs-styleguide_4-col {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.text-size-regular {
  font-size: 1rem;
}

.text-weight-xbold {
  font-weight: 800;
}

.text-align-right {
  text-align: right;
}

.text-weight-bold {
  font-weight: 700;
}

.max-width-medium {
  width: 100%;
  max-width: 72ch;
}

.fs-styleguide_item-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.max-width-large {
  width: 100%;
  max-width: 48rem;
}

.fs-styleguide_header-block {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: center start;
  margin-top: 4rem;
  display: grid;
}

.background-color-alternate {
  background-color: var(--background-color--background-alternate\<deleted\|variable-41ecbc38-077c-494f-9138-9468b7354b23\>);
}

.text-style-muted {
  opacity: .6;
}

.text-size-small {
  font-size: .875rem;
}

.heading-style-h4 {
  font-family: Zodiak Variable, Georgia, sans-serif;
  font-size: 2rem;
  line-height: 1.3;
}

.max-width-xlarge {
  width: 100%;
  max-width: 64rem;
}

.form_radio-icon {
  width: .875rem;
  height: .875rem;
  margin-top: 0;
  margin-left: 0;
  margin-right: .5rem;
}

.form_radio-icon.w--redirected-checked {
  border-width: .25rem;
  width: .875rem;
  height: .875rem;
}

.form_radio-icon.w--redirected-focus {
  width: .875rem;
  height: .875rem;
  box-shadow: 0 0 .25rem 0 #3898ec;
}

.text-style-nowrap {
  white-space: nowrap;
}

.text-align-left {
  text-align: left;
}

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

.form_input {
  border: 1px solid var(--border-color--border-primary);
  background-color: #0000;
  border-radius: .5rem;
  min-height: 3rem;
  margin-bottom: .75rem;
  padding: .5rem 1rem;
}

.form_input::placeholder {
  color: var(--text-color--text-primary);
}

.form_input.is-select-input {
  color: var(--text-color--text-secondary);
}

.form_input.is-text-area {
  min-height: 8rem;
  padding-top: .75rem;
}

.heading-style-h6 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

/* More generous section spacing */
.padding-section-large {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.fs-styleguide_3-col {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  width: 100%;
  display: grid;
}

.fs-styleguide_3-col.is-align-start {
  align-items: start;
}

.text-style-link {
  color: var(--link-color--link-primary\<deleted\|variable-ad940cb5-1815-151e-2cbc-4f27dec2b1e5\>);
  text-decoration: underline;
}

.text-size-large {
  font-size: 1.5rem;
}

.fs-styleguide_header {
  background-color: var(--background-color--background-secondary);
  color: var(--text-color--text-alternate\<deleted\|variable-2688eaeb-df93-32fe-efb9-d54fbd7bd424\>);
}

/* Better heading spacing and weight with more breathing room */
.heading-style-h2 {
  font-size: 2.75rem;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.heading-style-h2.text-style-allcaps.font-zodiak {
  line-height: 1.3;
}

.fs-styleguide_label {
  background-color: var(--background-color--background-secondary);
  color: var(--text-color--text-secondary);
  border-radius: .25rem;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: .25rem .75rem .3rem;
  font-weight: 600;
  display: flex;
}

.fs-styleguide_label.is-tag {
  color: #fff;
  -webkit-text-stroke-color: #fff;
  background-color: #dd23bb;
}

.heading-style-h5 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

/* Narrower container for better readability */
.container-large {
  width: 100%;
  max-width: 85rem;
  margin-left: auto;
  margin-right: auto;
}

.icon-height-medium {
  height: 2rem;
}

/* Better all-caps styling with letter spacing */
.text-style-allcaps {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  font-size: 0.875rem;
  opacity: 0.7;
}

.overflow-scroll {
  overflow: scroll;
}

.form_message-error {
  background-color: var(--background-color--background-error\<deleted\|variable-89aecd3e-2fe8-312c-65a2-e3e7c57d326c\>);
  color: var(--text-color--text-error\<deleted\|variable-4a51c5d2-820c-a0d9-b49e-0e5d273c964f\>);
  margin-top: .75rem;
  padding: .75rem;
}

.icon-height-large {
  height: 3rem;
}

.text-align-center {
  text-align: center;
}

.form_component {
  margin-bottom: 0;
}

.max-width-xxsmall {
  width: 100%;
  max-width: 12rem;
}

.layer {
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0%;
}

.text-style-quote {
  border-left: .25rem solid #e2e2e2;
  margin-bottom: 0;
  padding: 0 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.align-center {
  margin-left: auto;
  margin-right: auto;
}

/* Modern button styling - perfectly aligned */
.button,
.button-secondary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 48px !important;
  padding: 0 1.875rem !important;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  border: 2px solid;
  box-sizing: border-box;
  flex-shrink: 0;
  margin: 0 !important;
  vertical-align: middle;
  align-self: center;
}

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

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  background-color: #2a2a2a;
  border-color: #2a2a2a;
}

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

.button-secondary:hover {
  background-color: var(--text-secondary);
  color: var(--bg-secondary);
  transform: translateY(-2px);
}

.button.is-text {
  color: #000;
  background-color: transparent;
  border: 2px solid transparent;
  padding: 0.875rem 1.875rem;
  height: 48px;
}

.button.is-small {
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  height: 42px;
  min-width: 140px;
}

.button.is-large {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
  height: 54px;
  min-width: 180px;
}

.button.is-secondary {
  border: 2px solid var(--border-light);
  color: var(--text-primary);
  background-color: transparent;
  padding: 0.875rem 1.875rem;
  height: 48px;
}

.button.is-secondary:hover {
  background-color: var(--text-primary);
  color: var(--text-secondary);
  border-color: var(--text-primary);
}

.button.is-icon {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.button.is-nav {
  padding: 0.65rem 1.5rem;
  font-size: 0.9rem;
  line-height: 1.2;
}

.button.is-nav.w--current:where(.w-variant-70bb92a8-5ae0-0df3-e45a-965420160f6e) {
  opacity: 0;
}

.button.is-404.w--current {
  justify-content: center;
  align-items: center;
}

.fs-styleguide_classes {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

/* Larger, more readable text */
.text-size-medium {
  font-size: 1.125rem;
  line-height: 1.8;
  opacity: 0.9;
}

.fs-styleguide_section {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
  display: grid;
}

.fs-styleguide_section.is-vertical {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-columns: 1fr;
}

.button-group {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.hide {
  display: none;
}

.padding-section-medium {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* More constrained medium container */
.container-medium {
  width: 100%;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}

.form_radio {
  flex-direction: row;
  align-items: center;
  margin-bottom: .5rem;
  padding-left: 0;
  display: flex;
}

.fs-styleguide_spacing-all {
  display: none;
}

.spacer-huge {
  width: 100%;
  padding-top: 6rem;
}

.spacer-medium {
  width: 100%;
  padding-top: 2rem;
}

.fs-styleguide_spacer-box {
  background-color: #2d40ea1a;
  border: 1px dashed #2d40ea;
  width: 100%;
  position: relative;
}

.spacer-xsmall {
  width: 100%;
  padding-top: .5rem;
}

.spacer-small {
  width: 100%;
  padding-top: 1rem;
}

.spacer-xhuge {
  width: 100%;
  padding-top: 8rem;
}

.spacer-tiny {
  width: 100%;
  padding-top: .125rem;
}

.spacer-xxsmall {
  width: 100%;
  padding-top: .25rem;
}

.spacer-xxhuge {
  width: 100%;
  padding-top: 12rem;
}

.spacer-xlarge {
  width: 100%;
  padding-top: 4rem;
}

.spacer-large {
  padding-top: 3rem;
}

.spacer-xxlarge {
  width: 100%;
  padding-top: 5rem;
}

.fs-styleguide_message {
  background-color: var(--background-color--background-warning\<deleted\|variable-0aa1a7ce-e851-b6b5-66db-1a1a96e8e04b\>);
  color: var(--text-color--text-warning\<deleted\|variable-825aa1d8-b093-0b89-37c5-87d980df10f5\>);
  border-radius: .25rem;
  padding: .25rem .5rem;
  font-size: .875rem;
}

/* Clean, modern navbar - solid background */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #0a0a0a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.navbar-container {
  max-width: 85rem;
  margin: 0 auto;
  padding: 1rem 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  color: var(--text-secondary);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: opacity 0.2s ease;
  font-family: Cabinetgrotesk Variable, sans-serif;
  text-transform: uppercase;
}

.navbar-brand:hover {
  opacity: 0.7;
}

.brand-text {
  display: inline-block;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
  position: relative;
}

.nav-link:hover {
  color: rgba(255, 255, 255, 1);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--text-secondary);
  transition: width 0.3s ease;
}

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

.nav-button {
  background: var(--text-secondary);
  color: var(--bg-secondary);
  padding: 0.65rem 1.5rem;
  border-radius: 0.375rem;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-button:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.toggle-line {
  width: 24px;
  height: 2px;
  background: var(--text-secondary);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.navbar-toggle.active .toggle-line:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}

.navbar-toggle.active .toggle-line:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active .toggle-line:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

/* Light navbar variant for contact page */
.navbar-light {
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar-brand-dark {
  color: var(--text-primary);
}

.nav-link-dark {
  color: var(--text-primary);
}

.nav-link-dark::after {
  background: var(--text-primary);
}

.nav-button-dark {
  background: var(--bg-secondary);
  color: var(--text-secondary);
}

.toggle-line-dark {
  background: var(--text-primary);
}

/* Mobile navbar styles */
@media screen and (max-width: 991px) {
  .navbar-container {
    padding: 1rem 2rem;
  }

  .navbar-toggle {
    display: flex;
  }

  .navbar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.3s ease;
    padding: 2rem;
  }

  .navbar-menu.active {
    right: 0;
  }

  .navbar-links {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .nav-link {
    font-size: 1.125rem;
  }

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

  .nav-button {
    width: 100%;
    text-align: center;
    padding: 1rem 2rem;
  }
}

@media screen and (max-width: 767px) {
  .navbar-container {
    padding: 1rem 1.5rem;
  }

  .navbar-brand {
    font-size: 1.125rem;
  }

  .navbar-menu {
    width: 100%;
    right: -100%;
  }
}

.aspect-ratio-square {
  aspect-ratio: 1;
  object-fit: cover;
}

.aspect-ratio-portrait {
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.aspect-ratio-landscape {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.aspect-ratio-widescreen {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.background-color-tertiary {
  background-color: var(--background-color--background-tertiary\<deleted\|variable-6632d948-2d2d-2556-731d-05a71c92f234\>);
}

.fs-styleguide_hero-label {
  color: var(--text-color--text-secondary);
  text-transform: uppercase;
  background-color: #eeeeee2e;
  border-radius: .25rem;
  padding: .25rem .375rem;
  font-size: .75rem;
  font-weight: 500;
  text-decoration: none;
}

.fs-styleguide_heading-header {
  color: #fff;
  font-size: 6rem;
  font-weight: 400;
}

.section_hero {
  color: var(--text-secondary);
  min-height: 100svh;
  position: relative;
  scroll-margin-top: 0;
}

.section_about {
  scroll-margin-top: 5rem;
}

.hero-component {
  z-index: 3;
  text-align: left;
  justify-content: center;
  align-items: flex-start;
  min-height: 100svh;
  display: flex;
  position: relative;
  padding-top: 9rem;
}

.hero-background {
  z-index: 1;
  border-radius: .5rem;
  width: 100%;
  height: 100%;
  padding: 1rem;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.background-video {
  z-index: 2;
  border-radius: .5rem;
  width: 100%;
  height: 100%;
}

.background-video.absolute {
  z-index: 1;
  position: absolute;
  inset: 0%;
}

.video-placeholder {
  z-index: 1;
  border-radius: .5rem;
  width: 100%;
  height: 100%;
  padding: 1rem;
  position: absolute;
  inset: 0%;
}

.nav_brand {
  color: var(--text-secondary);
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: .5rem;
  transition: opacity .3s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.nav_brand:where(.w-variant-70bb92a8-5ae0-0df3-e45a-965420160f6e) {
  color: var(--text-primary);
}

.nav_brand:hover {
  opacity: .6;
}

.hero_bottom {
  color: var(--text-secondary);
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: absolute;
  inset: auto 0% 3rem;
  transition: opacity 0.2s ease;
}

.hero_bottom:hover {
  opacity: 0.7;
}

.hero_content {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  max-width: 50rem;
}

.hero_content-top {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.hero-icon {
  width: 2rem;
  height: 2rem;
  margin-bottom: -1rem;
}

/* Improved hero subtitle readability */
.hero-subtitle {
  max-width: 50ch;
  font-size: 1.35rem;
  line-height: 1.65;
  opacity: 0.92;
  margin-top: 2.5rem;
  font-weight: 400;
}

/* Clean platform section with metrics */
.section_platform {
  padding: 8rem 0;
  background-color: var(--bg-primary);
}

.platform-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5rem;
  text-align: center;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  width: 100%;
  max-width: 1200px;
}

.metric-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--text-primary);
}

.metric-number {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  font-family: Cabinetgrotesk Variable, sans-serif;
}

.metric-label {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.metric-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

/* More breathing room in headings */
.page-headings.text-align-center {
  grid-column-gap: 1.75rem;
  grid-row-gap: 1.75rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 70ch;
  margin-bottom: 6rem;
  display: flex;
}

.text-span-image {
  background-image: url('../images/Kaleo_Icon-dark.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  padding-left: 1.8rem;
  padding-right: 1.8rem;
}

.footer {
  overflow: hidden;
}

/* More spacious footer layout */
.footer_component {
  grid-column-gap: 6rem;
  grid-row-gap: 4rem;
  justify-content: space-between;
  display: flex;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.footer-bottom.font-zodiak {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.font-zodiak {
  font-family: Zodiak Variable, Georgia, sans-serif;
}

.footer-image {
  width: 100%;
  height: 11vw;
}

.footer-text {
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  font-size: 22vw;
  line-height: .8;
}

/* Cleaner footer spacing */
.footer-wrap {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  min-height: 100svh;
  padding-top: 6rem;
  padding-bottom: 3rem;
  display: flex;
}

.footer_left {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 74ch;
  display: flex;
}

.footer_right {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.footer_right-wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.phone-link {
  transition: all 0.3s ease;
  font-size: 1.125rem;
  font-weight: 500;
}

.phone-link:hover {
  opacity: 0.7;
  transform: translateX(2px);
}

.credits {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.copyright {
  grid-column-gap: .3rem;
  grid-row-gap: .3rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.created, .powered {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.credits-link {
  opacity: .6;
  transition: opacity .4s;
}

.credits-link:hover {
  opacity: 1;
}

.section_cta {
  color: var(--text-secondary);
  padding-left: 1rem;
  padding-right: 1rem;
}

.cta_background {
  background-color: var(--bg-secondary);
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  display: flex;
  position: relative;
}

.cta_content {
  z-index: 4;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.cta_subtitle {
  max-width: 42ch;
}

.text-size-huge {
  font-size: 3rem;
}

.video-overlay {
  z-index: 2;
  background-image: radial-gradient(circle, #17141100 20%, #000000ba);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.video-overlay.light {
  opacity: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.3) 100%);
}

/* Increased spacing for location section */
.section_location {
  scroll-margin-top: 5rem;
}

.location-wrap {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
  padding-top: 8rem;
  padding-bottom: 8rem;
  display: flex;
}

/* More spacious features section */
.section_features {
  scroll-margin-top: 5rem;
}

.features-component {
  grid-column-gap: 7rem;
  grid-row-gap: 7rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  padding-top: 8rem;
  padding-bottom: 8rem;
  display: flex;
}

/* Increased gap between feature items */
.features-wrap {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
  margin-bottom: 0;
}

/* More space in feature content */
.features_content {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  padding: 0;
}

.cta-video_background {
  background-color: var(--bg-secondary);
  border-radius: 3rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.text-size-xhuge {
  font-size: 9vw;
}

.photo {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.photo-wrap_first {
  border-radius: 1rem;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
  overflow: hidden;
  transform: rotate(1deg);
}

.photos-wrap {
  width: 80vh;
  height: 45vh;
  position: relative;
}

.photo-wrap_second {
  border-radius: 1rem;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
  overflow: hidden;
  transform: rotate(6deg);
}

.photo-wrap_third {
  border-radius: 1rem;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
  overflow: hidden;
  transform: rotate(-3deg);
}

.button-image {
  width: .8rem;
  height: .8rem;
}

.button-text {
  position: relative;
  overflow: hidden;
}

.button-text-animation {
  margin-top: .5rem;
  position: absolute;
}

.button_text {
  font-weight: 500;
}

.divider-img {
  width: 3rem;
  opacity: 0.3;
  margin: 0.5rem 0;
}

/* Contact Section Styling */
.section_contact {
  background-color: var(--bg-tertiary);
  padding-top: 8rem;
  padding-bottom: 8rem;
  scroll-margin-top: 5rem;
}

.contact-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
  max-width: 32rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.contact-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.875rem;
  opacity: 0.6;
  font-weight: 500;
}

.contact-link {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: opacity 0.2s ease;
}

.contact-link:hover {
  opacity: 0.7;
}

.contact-simple {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
}

.contact-item-large {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.contact-link-large {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: all 0.2s ease;
}

.contact-link-large:hover {
  color: var(--accent);
  transform: scale(1.02);
}

.contact-note {
  font-size: 1rem;
  opacity: 0.7;
  margin: 0;
}

.contact-component {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-height: 100svh;
  padding-top: 5rem;
  display: flex;
}

.contact_header {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.contact_form {
  width: 100%;
  max-width: 41rem;
  margin-top: 3rem;
}

.form-field {
  background-color: var(--bg-tertiary);
  color: var(--text-primary);
  border: 1px solid transparent;
  border-radius: .5rem;
  min-height: 3.5rem;
  margin-bottom: 0;
  padding: .875rem 1.25rem;
  transition: all 0.2s ease;
}

.form-field:active, .form-field:focus, .form-field:focus-visible, .form-field[data-wf-focus-visible] {
  color: var(--text-primary);
  border-color: var(--border-primary);
  outline: none;
}

.form-field::placeholder {
  color: var(--text-muted);
  font-family: Cabinetgrotesk Variable, Georgia, sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

.form-field_wrap {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.form {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  max-width: 41rem;
  display: flex;
}

.text-field {
  background-color: var(--bg-tertiary);
  border: 1px solid transparent;
  border-radius: .5rem;
  min-height: 10rem;
  margin-bottom: 0;
  padding: .875rem 1.25rem;
  transition: all 0.2s ease;
}

.text-field:focus {
  color: var(--text-primary);
  border-color: var(--border-primary);
  outline: none;
}

.text-field::placeholder {
  color: var(--text-muted);
  font-family: Cabinetgrotesk Variable, Georgia, sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

.button-form {
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.submit-button {
  z-index: 5;
  background-color: #3898ec00;
  position: absolute;
  inset: 0%;
}

.success-message {
  background-color: var(--success-bg);
  color: var(--success-text);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}

.error-message {
  text-align: center;
  background-color: var(--error-bg);
  color: var(--error-text);
  border-radius: 1rem;
  margin-top: 2rem;
  padding: 1.5rem;
}

.track-cta {
  width: 100%;
  height: 300vh;
  position: relative;
}

.sticky-cta {
  height: 100vh;
  display: flex;
  position: sticky;
  top: 0;
}

.section_last-cta {
  color: var(--text-secondary);
}

.features_image {
  border-radius: 1rem;
  width: 40vw;
  max-width: 41rem;
  height: 37rem;
  margin-left: auto;
  overflow: hidden;
}

.nav-button_text {
  padding-left: .5rem;
  padding-right: .5rem;
  line-height: 1.3;
  position: relative;
}

.nav-button_text.is-absolute {
  position: absolute;
  bottom: -1.2rem;
}

.nav_divider {
  background-color: var(--text-secondary);
  opacity: .2;
  width: 1px;
  height: 1.25rem;
  margin: 0 0.5rem;
}

/* Legacy nav styles - keeping for compatibility */
.logo {
  font-family: Zodiak Variable, Georgia, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav_component {
  display: none;
}

.nav-wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.nav_link {
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s ease;
  position: relative;
}

.nav_link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--text-secondary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav_link:hover {
  opacity: 1;
}

.nav_link:hover::after {
  width: 80%;
}

.nav_link:where(.w-variant-70bb92a8-5ae0-0df3-e45a-965420160f6e) {
  color: var(--text-primary);
}

.nav_link:where(.w-variant-70bb92a8-5ae0-0df3-e45a-965420160f6e)::after {
  background: var(--text-primary);
}

/* Increased card spacing */
.location_grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  width: 100%;
}

/* Improved card styling with better contrast */
.location_card {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  color: var(--text-secondary);
  border-radius: 1rem;
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  min-height: 60vh;
  padding: 3.5rem;
  display: flex;
  overflow: hidden;
  position: relative;
}

.location_card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
}

.location_card > * {
  position: relative;
  z-index: 2;
}

.location_card.is-left {
  background-image: url('../images/location-card-left.jpg');
  background-position: 50%;
  background-size: cover;
}

.location_card.is-right {
  background-image: url('../images/location-card-right.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.image.is-radius {
  border-radius: .5rem;
}

.location_icon {
  width: 2rem;
  height: 2rem;
}

.nav-menu {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.nav-left {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.nav-menu_wrap {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.text-box {
  max-width: 50em;
}

.license-content {
  grid-column-gap: 5rem;
  grid-row-gap: 2rem;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.style-guide-button {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 1rem;
  text-decoration: none;
  transition: opacity .2s;
  display: flex;
  overflow: hidden;
}

.style-guide-button:hover {
  opacity: .5;
}

.typography-wrapper {
  grid-row-gap: 1.5rem;
  flex-direction: column;
  align-items: flex-start;
  max-width: 30rem;
  display: flex;
}

.typography-content {
  grid-row-gap: .5rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.opacity_85 {
  opacity: .8;
}

.button-line {
  background-color: var(--bg-secondary);
  width: 100%;
  height: 1px;
}

@media screen and (max-width: 991px) {
  .padding-xlarge {
    padding: 3rem;
  }

  .margin-xlarge {
    margin: 3rem;
  }

  .padding-xhuge {
    padding: 6rem;
  }

  .padding-xxhuge {
    padding: 8rem;
  }

  .padding-huge {
    padding: 5rem;
  }

  .margin-large {
    margin: 2.5rem;
  }

  .padding-xxlarge {
    padding: 4rem;
  }

  .padding-large {
    padding: 2.5rem;
  }

  .margin-huge {
    margin: 5rem;
  }

  .padding-medium {
    padding: 1.5rem;
  }

  .margin-xxlarge {
    margin: 4rem;
  }

  .margin-xhuge {
    margin: 6rem;
  }

  .margin-medium {
    margin: 1.5rem;
  }

  .margin-xxhuge {
    margin: 8rem;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .hide-tablet {
    display: none;
  }

  .fs-styleguide_2-col {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .max-width-full-tablet {
    width: 100%;
    max-width: none;
  }

  .heading-style-h3 {
    font-size: 2.9rem;
  }

  .heading-style-h3.is-small {
    font-size: 2.1rem;
  }

  .heading-style-h1.is-contact {
    font-size: 5rem;
  }

  .max-width-small {
    max-width: none;
  }

  .fs-styleguide_1-col {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .fs-styleguide_heading-medium {
    font-size: 3rem;
  }

  .fs-styleguide_4-col {
    grid-template-columns: 1fr;
  }

  .padding-section-large {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .fs-styleguide_3-col {
    grid-template-columns: 1fr;
  }

  .heading-style-h2 {
    font-size: 2.25rem;
    line-height: 1.35;
  }

  .button.is-nav {
    justify-content: center;
    align-items: center;
  }

  .fs-styleguide_section {
    grid-column-gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .padding-section-medium {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .spacer-huge {
    padding-top: 5rem;
  }

  .spacer-medium {
    padding-top: 1.5rem;
  }

  .spacer-xhuge {
    padding-top: 6rem;
  }

  .spacer-xxhuge {
    padding-top: 8rem;
  }

  .spacer-xlarge {
    padding-top: 3rem;
  }

  .spacer-large {
    padding-top: 2.5rem;
  }

  .spacer-xxlarge {
    padding-top: 4rem;
  }



  .fs-styleguide_heading-header {
    font-size: 4rem;
  }

  .page-headings.text-align-center.is-location {
    max-width: 60ch;
  }

  .footer_component {
    flex-flow: wrap-reverse;
  }

  .footer-text {
    font-size: 21vw;
  }

  .footer-wrap {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    min-height: auto;
  }

  .footer_left {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .credits {
    margin-top: 4rem;
  }

  .location-wrap {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    padding-top: 6rem;
  }

  .features-component {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    margin-bottom: 6rem;
  }

  .features-wrap {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    display: flex;
  }

  .features-wrap.is-middle {
    flex-flow: column-reverse wrap;
  }

  .features_content {
    padding-right: 0;
  }

  .hero-component {
    padding-top: 6rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .metric-card {
    padding: 2rem 1.5rem;
  }

  .metric-number {
    font-size: 3rem;
  }



  .text-size-xhuge {
    font-size: 14vw;
  }

  .photos-wrap {
    width: 80vw;
    height: 45vw;
  }

  .button-image.is-nav {
    display: none;
  }

  .features_image {
    width: 100%;
    max-width: none;
    height: 50vh;
  }

  .nav_divider {
    display: none;
  }

  .nav-wrap {
    justify-content: space-between;
    align-items: center;
  }

  .nav_link {
    white-space: nowrap;
  }

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

  .nav-menu {
    background-color: #0000;
    border-radius: 1rem;
    padding-left: 2rem;
    padding-right: 2rem;
    overflow: hidden;
  }



  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .button, .button-secondary {
    width: 100%;
    text-align: center;
    padding: 0.875rem 1.5rem;
    height: 48px;
  }

  .hero-component {
    padding-top: 7rem;
  }

  .text-box {
    max-width: none;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.25rem;
  }

  h5 {
    font-size: 1rem;
  }

  h6 {
    font-size: .875rem;
  }

  .padding-xlarge {
    padding: 2rem;
  }

  .margin-xlarge {
    margin: 2rem;
  }

  .padding-xhuge {
    padding: 4rem;
  }

  .padding-xxhuge {
    padding: 4.5rem;
  }

  .padding-huge {
    padding: 3.5rem;
  }

  .margin-large {
    margin: 1.5rem;
  }

  .padding-xxlarge {
    padding: 3rem;
  }

  .padding-large {
    padding: 1.5rem;
  }

  .margin-huge {
    margin: 3.5rem;
  }

  .padding-medium {
    padding: 1.25rem;
  }

  .margin-xxlarge {
    margin: 3rem;
  }

  .margin-xhuge {
    margin: 4rem;
  }

  .margin-medium {
    margin: 1.25rem;
  }

  .margin-xxhuge {
    margin: 4.5rem;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .hide-mobile-landscape {
    display: none;
  }

  .heading-style-h3 {
    font-size: 3.4rem;
  }

  .heading-style-h3.is-small {
    font-size: 1.6rem;
  }

  .heading-style-h1 {
    font-size: 18vw;
  }

  .padding-global {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .padding-section-small {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .fs-styleguide_section-header {
    font-size: .875rem;
  }

  .fs-styleguide_heading-medium {
    font-size: 2rem;
  }

  .max-width-full-mobile-landscape {
    width: 100%;
    max-width: none;
  }

  .heading-style-h4 {
    font-size: 1rem;
  }

  .text-style-nowrap {
    white-space: normal;
  }

  .heading-style-h6 {
    font-size: .75rem;
  }

  .padding-section-large {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .text-size-large {
    font-size: 1.25rem;
  }

  .heading-style-h2 {
    font-size: 2rem;
  }

  .heading-style-h5 {
    font-size: .875rem;
  }

  .padding-section-medium {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .spacer-huge {
    padding-top: 3.5rem;
  }

  .spacer-medium {
    padding-top: 1.25rem;
  }

  .spacer-xhuge {
    padding-top: 4rem;
  }

  .spacer-xxhuge {
    padding-top: 4.5rem;
  }

  .spacer-xlarge {
    padding-top: 2rem;
  }

  .spacer-large {
    padding-top: 1.5rem;
  }

  .spacer-xxlarge {
    padding-top: 3rem;
  }

  .hero-title {
    font-size: 2.5rem;
    max-width: 100%;
  }

  .hero-description {
    font-size: 1.125rem;
  }

  .hero-component {
    text-align: left;
    align-items: flex-start;
    padding-top: 8rem;
  }

  .hero_content {
    max-width: 100%;
  }

  .button, .button-secondary {
    padding: 0.875rem 1.875rem;
    height: 48px;
  }

  .page-headings.text-align-center.is-location {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .footer_component {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .features-wrap {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .features_content {
    padding-right: 0;
  }

  .contact_form {
    width: 100%;
  }

  .form-field_wrap {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
  }

  .form {
    width: 100%;
    min-width: auto;
  }

  .contact-link {
    font-size: 1.25rem;
  }

  .section_contact {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .metric-card {
    padding: 1.75rem 1.25rem;
  }

  .metric-number {
    font-size: 2.5rem;
  }

  .license-content {
    grid-row-gap: 4rem;
    flex-direction: column;
  }
}

@media screen and (max-width: 479px) {
  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .fs-styleguide_row {
    flex-wrap: wrap;
  }

  .heading-style-h3 {
    font-size: 3rem;
  }

  .max-width-full-mobile-portrait {
    width: 100%;
    max-width: none;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-component {
    padding-top: 6rem;
  }

  .button, .button-secondary {
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
    height: 48px;
  }

  .heading-style-h1.is-contact {
    font-size: 3rem;
  }

  .padding-global {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hide-mobile-portrait {
    display: none;
  }

  .heading-style-h2 {
    font-size: 1.5rem;
    line-height: 1.45;
  }

  .credits {
    flex-flow: wrap;
    margin-top: 2rem;
  }

  .cta_background {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .location-wrap {
    margin-bottom: 0;
  }

  .cta-video_background {
    border-radius: 1rem;
  }

  .features_image {
    height: 30vh;
  }

  .location_card {
    padding: 2rem 1.5rem;
    min-height: 50vh;
  }

  .icon:where(.w-variant-70bb92a8-5ae0-0df3-e45a-965420160f6e) {
    color: #000;
  }
}

#w-node-f203eb11-a149-7bce-6643-6c0a832275f0-607c4d12, #w-node-b224ec27-30fa-be84-48bf-7ed471542af3-607c4d15 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627ca17-607c4d15, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca1c-607c4d15, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca21-607c4d15, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca26-607c4d15, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca2c-607c4d15, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca32-607c4d15, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca38-607c4d15 {
  justify-self: start;
}

#w-node-_5d224905-8a1e-1460-7532-d38cb7ec37c1-607c4d15, #w-node-_40538c8c-870b-b365-34c4-2a06f0f8567d-607c4d15, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cb45-607c4d15, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cb5e-607c4d15 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cb61-607c4d15 {
  justify-self: start;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cb63-607c4d15 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cb66-607c4d15 {
  justify-self: start;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cbb8-607c4d15, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cbc2-607c4d15, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cbc3-607c4d15 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cc31-607c4d15, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc36-607c4d15, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc3b-607c4d15, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc40-607c4d15, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc45-607c4d15, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc4a-607c4d15, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc54-607c4d15, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc59-607c4d15, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc5e-607c4d15, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc63-607c4d15, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc68-607c4d15, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc6d-607c4d15, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc72-607c4d15, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc77-607c4d15, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc7c-607c4d15, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc81-607c4d15, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc86-607c4d15 {
  justify-self: start;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cc8a-607c4d15 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cc8b-607c4d15, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc90-607c4d15, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc95-607c4d15, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc9a-607c4d15, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccaf-607c4d15, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccb4-607c4d15, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccb9-607c4d15, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccbe-607c4d15, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccc3-607c4d15, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccc8-607c4d15, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccd2-607c4d15, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccd7-607c4d15, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccdc-607c4d15, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cce1-607c4d15, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cce6-607c4d15, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cceb-607c4d15, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccf0-607c4d15, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccf5-607c4d15, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccfa-607c4d15, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccff-607c4d15, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd04-607c4d15 {
  justify-self: start;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cd08-607c4d15 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cd09-607c4d15, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd0e-607c4d15, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd13-607c4d15, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd18-607c4d15, #w-node-_30684373-af34-3818-02a4-e58b3ffef3e5-607c4d15, #w-node-_30684373-af34-3818-02a4-e58b3ffef3ea-607c4d15, #w-node-_30684373-af34-3818-02a4-e58b3ffef3ef-607c4d15, #w-node-_30684373-af34-3818-02a4-e58b3ffef3f4-607c4d15, #w-node-_30684373-af34-3818-02a4-e58b3ffef3f9-607c4d15, #w-node-_30684373-af34-3818-02a4-e58b3ffef3fe-607c4d15, #w-node-_30684373-af34-3818-02a4-e58b3ffef403-607c4d15, #w-node-_30684373-af34-3818-02a4-e58b3ffef408-607c4d15, #w-node-_30684373-af34-3818-02a4-e58b3ffef40d-607c4d15, #w-node-_30684373-af34-3818-02a4-e58b3ffef412-607c4d15 {
  justify-self: start;
}

#w-node-_30684373-af34-3818-02a4-e58b3ffef416-607c4d15 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_30684373-af34-3818-02a4-e58b3ffef417-607c4d15 {
  justify-self: start;
}

#w-node-_30684373-af34-3818-02a4-e58b3ffef41a-607c4d15, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd6b-607c4d15, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd98-607c4d15 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cdc7-607c4d15 {
  justify-self: start;
}


@font-face {
  font-family: 'Cabinetgrotesk Variable';
  src: url('../fonts/CabinetGrotesk-Variable.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Zodiak Variable';
  src: url('../fonts/Zodiak-Variable.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}


/* Additional modern spacing improvements */
.section_about,
.section_location,
.section_features {
  padding-top: 0;
  padding-bottom: 0;
}

/* Better visual hierarchy with consistent spacing */
.divider-img {
  margin: 1.5rem 0;
  opacity: 0.3;
}

/* Improved button spacing */
.button {
  margin-top: 1rem;
}

/* Better card text readability */
.location_card .heading-style-h2 {
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

/* Cleaner hero content spacing */
.hero_content-top {
  margin-bottom: 2rem;
}

/* Better feature image sizing */
.features_image {
  border-radius: 1rem;
  width: 100%;
  max-width: 38rem;
  height: 32rem;
  overflow: hidden;
}


/* ========================================
   FEATURES SECTION - ENHANCED & INTERACTIVE
   ======================================== */

.section_features {
  padding: 8rem 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-tertiary) 100%);
  position: relative;
}

.features-component {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.features-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 2rem;
}

.features-wrap.is-middle {
  margin-top: 4rem;
}

/* Image Container with Overlay */
.features_image-container {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.features_image-container:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

.features_image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.features_image-container:hover .features_image {
  transform: scale(1.05);
}

/* Feature Overlay with Stats */
.feature-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  padding: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.features_image-container:hover .feature-overlay {
  opacity: 1;
  transform: translateY(0);
}

.feature-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.feature-stat-item {
  text-align: center;
  color: white;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: Cabinetgrotesk Variable, sans-serif;
}

.stat-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

/* Feature Content */
.features_content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--bg-white);
  border-radius: 1rem;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.features_content:hover {
  border-color: var(--text-primary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Feature Icon */
.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-secondary);
  color: var(--text-secondary);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.features_content:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Feature Description */
.feature-description {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Feature List */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.feature-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--bg-secondary);
  color: var(--text-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.feature-list li:hover {
  color: var(--text-primary);
  transform: translateX(4px);
}

.feature-list li:hover:before {
  background: var(--accent);
  transform: scale(1.1);
}

/* Divider Image */
.divider-img {
  width: 60px;
  height: auto;
  opacity: 0.3;
}

/* Features CTA */
.features-cta {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

/* Page Headings in Features */
.page-headings.is-location {
  margin-bottom: 2rem;
}

/* Responsive Design */
@media screen and (max-width: 991px) {
  .section_features {
    padding: 5rem 0;
  }

  .features-component {
    gap: 4rem;
  }

  .features-wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .features-wrap.is-middle {
    margin-top: 2rem;
  }

  .features-wrap.is-middle .features_content {
    order: 1;
  }

  .features-wrap.is-middle .features_image-container {
    order: 2;
  }

  .features_content {
    padding: 1.5rem;
  }

  .feature-stats {
    gap: 1.5rem;
  }

  .stat-value {
    font-size: 1.75rem;
  }
}

@media screen and (max-width: 767px) {
  .section_features {
    padding: 4rem 0;
  }

  .features-component {
    gap: 3rem;
  }

  .features-wrap {
    gap: 2rem;
  }

  .features_content {
    padding: 1.25rem;
    gap: 1.25rem;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
  }

  .feature-icon svg {
    width: 24px;
    height: 24px;
  }

  .feature-list {
    gap: 0.75rem;
  }

  .feature-list li {
    font-size: 0.95rem;
    padding-left: 1.5rem;
  }

  .feature-list li:before {
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
  }

  .feature-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-value {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .heading-style-h4 {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 479px) {
  .features_content {
    padding: 1rem;
  }

  .feature-overlay {
    padding: 1.5rem;
  }
}


/* ========================================
   SECTION DISTINCTIONS - SUBTLE VISUAL HIERARCHY
   ======================================== */

/* Hero Section - Dark with video */
.section_hero {
  background: #0a0a0a;
  position: relative;
}

/* Platform Section - Light clean background */
.section_platform {
  background: var(--bg-primary);
  position: relative;
}

.section_platform::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light) 50%, transparent);
}

/* Impact Section - Subtle warm tone */
.section_location {
  background: linear-gradient(180deg, #fafaf9 0%, #f5f5f4 100%);
  position: relative;
  padding: 8rem 0;
}

.section_location::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light) 50%, transparent);
}

/* Features Section - Already has gradient */
.section_features {
  position: relative;
}

/* Contact Section - Bold dark background for attention */
.section_contact {
  background: #0a0a0a;
  color: var(--text-secondary);
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

/* ========================================
   CONTACT SECTION - MODERN & ATTENTION-GRABBING
   ======================================== */

.contact-background-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.contact-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

/* Contact Badge */
.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.contact-badge svg {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Contact Heading */
.contact-heading {
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-secondary);
  margin: 0;
  max-width: 20ch;
  letter-spacing: -0.02em;
}

.contact-subheading {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 1rem 0 0 0;
  max-width: 50ch;
}

/* Contact Grid */
.contact-grid {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 700px;
  margin-top: 2rem;
}

/* Contact Cards */
.contact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.contact-card.primary {
  background: var(--text-secondary);
  border-color: var(--text-secondary);
  color: var(--text-primary);
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem;
  width: 100%;
}

.contact-card.primary::before {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, transparent 100%);
}

.contact-card.primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.contact-card.secondary:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

/* Contact Card Icon */
.contact-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-card.primary .contact-card-icon {
  background: var(--bg-secondary);
  color: var(--text-secondary);
}

.contact-card.secondary .contact-card-icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
}

.contact-card:hover .contact-card-icon {
  transform: scale(1.1) rotate(5deg);
}

/* Contact Card Content */
.contact-card-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.contact-card.primary .contact-card-content {
  gap: 0.25rem;
}

.contact-card-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  opacity: 0.7;
}

.contact-card.primary .contact-card-label {
  color: var(--text-primary);
}

.contact-card.secondary .contact-card-label {
  color: rgba(255, 255, 255, 0.7);
}

.contact-card-value {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
}

.contact-card.primary .contact-card-value {
  font-size: 1.75rem;
  color: var(--text-primary);
}

.contact-card.secondary .contact-card-value {
  font-size: 1.25rem;
  color: var(--text-secondary);
}

.contact-card-description {
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.8;
}

.contact-card.primary .contact-card-description {
  color: var(--text-muted);
}

.contact-card.secondary .contact-card-description {
  color: rgba(255, 255, 255, 0.6);
}

/* Contact Card Arrow */
.contact-card-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-secondary);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-card.primary:hover .contact-card-arrow {
  transform: translateX(4px);
}

/* Contact Trust Section */
.contact-trust {
  margin-top: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.trust-text {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.trust-stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 1.5rem 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
}

.trust-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
}

.trust-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-secondary);
  line-height: 1;
  font-family: Cabinetgrotesk Variable, sans-serif;
}

.trust-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

/* ========================================
   FOOTER - IMPROVED UI
   ======================================== */

.footer {
  background: var(--bg-secondary);
  color: var(--text-secondary);
  padding: 5rem 0 2rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1) 50%, transparent);
}

.footer-wrap {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.footer_component {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* Footer Main */
.footer_main {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer_brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer_logo {
  font-size: 1.5rem;
  font-weight: 600;
  font-family: Cabinetgrotesk Variable, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.footer_tagline {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  max-width: 30ch;
  margin: 0;
}

/* Footer Links */
.footer_links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

.footer_column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer_column-title {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.footer_link {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease;
  line-height: 1.6;
}

.footer_link:hover {
  color: var(--text-secondary);
  transform: translateX(2px);
}

/* Footer Bottom */
.footer_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
}

.footer_bottom-left {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer_legal {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.footer_legal-link {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}

.footer_legal-link:hover {
  color: var(--text-secondary);
}

.footer_divider {
  color: rgba(255, 255, 255, 0.3);
}

/* Footer Social */
.footer_social {
  display: flex;
  gap: 1rem;
}

.social_link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social_link:hover {
  background: var(--text-secondary);
  color: var(--bg-secondary);
  transform: translateY(-2px);
}

/* ========================================
   RESPONSIVE - CONTACT & FOOTER
   ======================================== */

@media screen and (max-width: 991px) {
  .contact-heading {
    font-size: 2.5rem;
  }

  .contact-subheading {
    font-size: 1.125rem;
  }

  .contact-card.primary {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-card-arrow {
    align-self: flex-end;
  }

  .trust-stats {
    gap: 1.5rem;
    padding: 1.25rem 1.5rem;
  }

  .trust-number {
    font-size: 1.75rem;
  }

  .footer_main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer_links {
    gap: 3rem;
  }

  .footer_bottom {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }
}

@media screen and (max-width: 767px) {
  .section_contact {
    padding: 5rem 0;
  }

  .contact-heading {
    font-size: 2rem;
  }

  .contact-subheading {
    font-size: 1rem;
  }

  .contact-card {
    padding: 1.5rem;
  }

  .contact-card.primary {
    padding: 1.75rem;
  }

  .contact-card-icon {
    width: 48px;
    height: 48px;
  }

  .contact-card-icon svg {
    width: 24px;
    height: 24px;
  }

  .contact-card-value {
    font-size: 1.125rem;
  }

  .contact-card.primary .contact-card-value {
    font-size: 1.35rem;
  }

  .trust-stats {
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.5rem;
  }

  .trust-divider {
    width: 60px;
    height: 1px;
  }

  .trust-number {
    font-size: 1.5rem;
  }

  .footer {
    padding: 4rem 0 2rem;
  }

  .footer_links {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer_social {
    width: 100%;
    justify-content: center;
  }
}

@media screen and (max-width: 479px) {
  .contact-heading {
    font-size: 1.75rem;
  }

  .contact-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.875rem;
  }

  .contact-badge svg {
    width: 16px;
    height: 16px;
  }

  .contact-card {
    padding: 1.25rem;
  }

  .contact-card.primary {
    padding: 1.5rem;
  }
}
