:root {
  --ocs-ink: #061b24;
  --ocs-ink-deep: #03131b;
  --ocs-cream: #f5efe5;
  --ocs-muted: #9aadb1;
  --ocs-line: rgba(223, 189, 141, .48);
  --ocs-accent: #dfbd8d;
  --ocs-ease: cubic-bezier(.22, .8, .22, 1);
  --ocs-display: Didot, "Bodoni 72", "Bodoni MT", "Bodoni Moda", Georgia, serif;
  --ocs-sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { min-height: 100%; background: var(--ocs-ink); }
body.ocs-coming-soon {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  background: var(--ocs-ink);
  color: var(--ocs-cream);
  font-family: var(--ocs-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.ocs-coming-soon button,
body.ocs-coming-soon input,
body.ocs-coming-soon textarea { font: inherit; }
body.ocs-coming-soon button {
  color: inherit;
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}
body.ocs-coming-soon [hidden] { display: none !important; }

.ocs-page {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding: clamp(0px, 1.35vw, 22px);
  isolation: isolate;
  overflow: hidden;
}
.ocs-ambient {
  position: fixed;
  inset: -8%;
  z-index: -3;
  background:
    radial-gradient(circle at 12% 45%, rgba(185, 213, 216, .22), transparent 34%),
    radial-gradient(circle at 90% 8%, rgba(223, 189, 141, .20), transparent 32%),
    linear-gradient(125deg, #0c3441, #03141d 68%, #122a2e);
  filter: blur(22px);
  transform: scale(1.06);
}
.ocs-stage {
  position: relative;
  min-height: calc(100svh - clamp(0px, 2.7vw, 44px));
  overflow: hidden;
  border: 1px solid rgba(223, 189, 141, .43);
  border-radius: clamp(0px, 2vw, 32px);
  background: var(--ocs-ink);
  box-shadow: 0 34px 110px rgba(0, 0, 0, .34);
  isolation: isolate;
}
.ocs-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  opacity: .09;
  mix-blend-mode: soft-light;
}

.ocs-media {
  position: absolute;
  inset: 0;
  z-index: -4;
  overflow: hidden;
  background: linear-gradient(115deg, #104451 0%, #06242f 28%, #041922 66%, #192825 100%);
}
.ocs-media__video,
.ocs-media__image,
.ocs-media__wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.ocs-media__video {
  object-fit: cover;
  object-position: var(--ocs-position, center center);
  filter: saturate(.76) contrast(1.05) brightness(.56);
  opacity: 0;
  transition: opacity .7s ease;
}
.ocs-media__video.is-ready { opacity: 1; }
.ocs-media__image {
  background-image: var(--ocs-bg, radial-gradient(circle at 86% 10%, rgba(223, 189, 141, .25), transparent 30%), linear-gradient(115deg, #104451, #041922 72%, #162b2b));
  background-position: var(--ocs-position, center center);
  background-size: cover;
  filter: saturate(.78) contrast(1.04);
}
.ocs-page[data-media-type="gradient"] .ocs-media__image {
  background-image:
    radial-gradient(circle at 88% 8%, rgba(223, 189, 141, .31), transparent 28%),
    radial-gradient(circle at 36% 68%, rgba(25, 98, 111, .28), transparent 38%),
    linear-gradient(115deg, #104451 0%, #05232e 40%, #041820 72%, #172927 100%);
}
.ocs-media__wash {
  background: linear-gradient(90deg, rgba(1, 22, 30, .04) 0%, rgba(1, 20, 29, .35) 25%, rgba(1, 17, 25, .72) 53%, rgba(1, 15, 22, .46) 100%);
}

.ocs-wave {
  position: absolute;
  inset: 0 auto 0 0;
  width: clamp(220px, 20vw, 330px);
  z-index: -2;
  overflow: hidden;
  background: transparent;
  pointer-events: none;
}
.ocs-wave svg {
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(20px 0 28px rgba(0, 0, 0, .24));
}
.ocs-wave__mass {
  animation: ocsWaveBreath 10s ease-in-out infinite alternate;
  transform-origin: center;
}
.ocs-wave__edge {
  filter: drop-shadow(0 0 9px rgba(255, 250, 240, .58));
  animation: ocsWaveGlow 5s ease-in-out infinite alternate;
}

.ocs-header {
  position: absolute;
  z-index: 5;
  top: clamp(28px, 4.6vh, 52px);
  left: clamp(315px, 24vw, 430px);
  right: clamp(28px, 4vw, 58px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.ocs-logo {
  display: block;
  width: clamp(160px, 14vw, 222px);
  height: auto;
  max-height: 72px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .14));
}

.ocs-headline {
  position: absolute;
  z-index: 2;
  top: clamp(178px, 20vh, 230px);
  right: clamp(38px, 4.8vw, 74px);
  width: min(610px, 42vw);
  text-align: right;
}
.ocs-mobile-kicker { display: none; }
.ocs-headline__eyebrow,
.ocs-kicker,
.ocs-modal__eyebrow,
.ocs-footer {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
}
.ocs-headline__eyebrow {
  display: block;
  margin-bottom: 18px;
  color: var(--ocs-accent);
}
.ocs-headline h1 {
  display: grid;
  row-gap: 0;
  margin: 0;
  color: var(--ocs-accent);
  font-family: var(--ocs-display);
  font-size: clamp(84px, 8.8vw, 154px);
  font-weight: 400;
  line-height: .83;
  letter-spacing: -.058em;
  text-wrap: balance;
}
.ocs-headline h1 span {
  display: block;
  white-space: nowrap;
}
.ocs-headline h1 span + span { padding-right: .05em; }
.ocs-headline__rule {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 13px;
  margin: 48px 0 20px;
}
.ocs-headline__rule span { width: 220px; height: 1px; background: var(--ocs-line); }
.ocs-headline__rule i { width: 8px; height: 8px; transform: rotate(45deg); background: var(--ocs-accent); }
.ocs-headline p { margin: 0; color: #7b8f94; font-size: 11px; font-weight: 300; }

.ocs-copy {
  position: absolute;
  z-index: 3;
  left: clamp(315px, 24vw, 430px);
  top: clamp(230px, 29vh, 315px);
  width: min(425px, 30vw);
}
.ocs-kicker { margin: 0 0 28px; color: var(--ocs-accent); }
.ocs-copy h2 {
  margin: 0;
  color: var(--ocs-cream);
  font-family: var(--ocs-display);
  font-size: clamp(30px, 2.35vw, 41px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.03em;
}
.ocs-copy__body {
  margin: 28px 0 0;
  max-width: 270px;
  color: var(--ocs-muted);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
}
.ocs-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 44px;
}
.ocs-pill {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 24px;
  border: 1px solid var(--ocs-line);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform .4s var(--ocs-ease), border-color .4s, color .4s, box-shadow .4s;
}
.ocs-pill span { white-space: nowrap; }
.ocs-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg, var(--ocs-accent), #f4d6aa);
  transform: translateX(-105%);
  transition: transform .55s var(--ocs-ease);
}
.ocs-pill i { font-style: normal; font-size: 17px; transition: transform .4s var(--ocs-ease); }
.ocs-pill:hover,
.ocs-pill:focus-visible {
  transform: translateY(-3px);
  border-color: var(--ocs-accent);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .22);
  outline: none;
}
.ocs-pill:hover::before,
.ocs-pill:focus-visible::before { transform: translateX(0); }
.ocs-pill:hover,
.ocs-pill:focus-visible { color: #071c25; }
.ocs-pill:hover i,
.ocs-pill:focus-visible i { transform: translateX(4px) rotate(-8deg); }
.ocs-pill--primary {
  min-width: 208px;
  background: var(--ocs-accent);
  border-color: var(--ocs-accent);
  color: #071c25 !important;
}
.ocs-pill--primary::before { background: linear-gradient(105deg, #f5e8d5, var(--ocs-accent)); }
.ocs-pill--outline { min-width: 190px; }
.ocs-pill--ghost {
  min-width: 138px;
  min-height: 48px;
  background: rgba(5, 27, 36, .20);
  backdrop-filter: blur(12px);
}

.ocs-launch {
  display: inline-flex !important;
  width: auto !important;
  max-width: 100%;
  align-items: center;
  gap: 18px;
  margin-top: 42px;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  cursor: pointer;
  color: inherit !important;
  text-align: left;
  line-height: normal;
  outline: none;
}
.ocs-launch:focus-visible {
  border-radius: 14px !important;
  box-shadow: 0 0 0 3px rgba(223, 189, 141, .30) !important;
}
.ocs-launch > span:last-child { display: grid; gap: 7px; min-width: 0; }
.ocs-launch b {
  color: var(--ocs-cream);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .17em;
  white-space: nowrap;
}
.ocs-launch small {
  color: #789096;
  font-size: 10px;
  font-weight: 300;
  white-space: nowrap;
}
.ocs-orbit {
  position: relative;
  display: grid;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(223, 189, 141, .45);
  border-radius: 50%;
  background: rgba(3, 25, 34, .30);
  box-shadow: inset 0 0 20px rgba(223, 189, 141, .06);
}
.ocs-orbit img { display: block; width: 31px; height: 31px; object-fit: contain; }
.ocs-orbit__ring {
  position: absolute;
  inset: 4px;
  border: 2px solid transparent;
  border-top-color: var(--ocs-accent);
  border-bottom-color: var(--ocs-accent);
  border-radius: 50%;
  animation: ocsOrbit 2.2s linear infinite;
}
.ocs-orbit__ring::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  right: -3px;
  top: 50%;
  border-radius: 50%;
  background: #f5e3c5;
  box-shadow: 0 0 16px #f5e3c5;
}

.ocs-footer {
  position: absolute;
  z-index: 2;
  left: clamp(315px, 24vw, 430px);
  right: clamp(34px, 4vw, 56px);
  bottom: 32px;
  display: flex;
  justify-content: space-between;
  color: #74898e;
  font-size: 8px;
}

.ocs-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: opacity .35s ease, visibility 0s linear .35s;
}
.ocs-modal.is-open { visibility: visible; opacity: 1; transition-delay: 0s; }
.ocs-modal__backdrop { position: absolute; inset: 0; background: rgba(1, 13, 19, .84); backdrop-filter: blur(12px); }
.ocs-modal__panel {
  position: relative;
  width: min(690px, calc(100vw - 32px));
  max-height: calc(100svh - 40px);
  overflow: auto;
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid rgba(223, 189, 141, .36);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(13, 61, 73, .98), rgba(3, 26, 36, .99) 65%, rgba(6, 20, 27, .99));
  box-shadow: 0 40px 120px rgba(0, 0, 0, .56);
  transform: translateY(28px) scale(.965);
  opacity: 0;
  transition: transform .55s var(--ocs-ease), opacity .4s ease;
}
.ocs-modal.is-open .ocs-modal__panel { transform: translateY(0) scale(1); opacity: 1; }
.ocs-modal__panel--wide { width: min(930px, calc(100vw - 32px)); }
.ocs-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(223, 189, 141, .42);
  border-radius: 50%;
  background: rgba(1, 20, 28, .30);
  cursor: pointer;
  font-size: 22px;
  font-weight: 300;
  transition: transform .35s, border-color .35s;
}
.ocs-modal__close:hover,
.ocs-modal__close:focus-visible { transform: rotate(90deg); border-color: var(--ocs-accent); outline: none; }
.ocs-modal__eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 38px; color: var(--ocs-accent); }
.ocs-modal__eyebrow img { width: 29px; height: 29px; object-fit: contain; }
.ocs-modal h2 {
  max-width: 780px;
  margin: 0;
  color: var(--ocs-accent);
  font-family: var(--ocs-display);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.04em;
}
.ocs-modal__panel > p,
.ocs-modal__view > p { margin: 22px 0 34px; color: #9eafb2; font-size: 14px; font-weight: 300; line-height: 1.7; }
.ocs-form { display: grid; gap: 18px; }
.ocs-form label { display: grid; gap: 8px; }
.ocs-form label > span { color: var(--ocs-accent); font-size: 9px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.ocs-form input,
.ocs-form textarea {
  width: 100%;
  border: 1px solid rgba(223, 189, 141, .3);
  border-radius: 14px;
  background: rgba(247, 239, 226, .035);
  color: var(--ocs-cream);
  outline: none;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.ocs-form input { height: 56px; padding: 0 18px; }
.ocs-form textarea { padding: 16px 18px; resize: vertical; }
.ocs-form input:focus,
.ocs-form textarea:focus { border-color: var(--ocs-accent); background: rgba(247, 239, 226, .06); box-shadow: 0 0 0 3px rgba(223, 189, 141, .12); }
.ocs-form input::placeholder,
.ocs-form textarea::placeholder { color: #70868c; }
.ocs-form__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ocs-consent { display: flex !important; align-items: flex-start; gap: 10px !important; }
.ocs-consent input { width: 17px; height: 17px; margin: 2px 0 0; accent-color: var(--ocs-accent); }
.ocs-consent span { color: #8fa2a6 !important; font-size: 10px !important; font-weight: 300 !important; letter-spacing: 0 !important; line-height: 1.5; text-transform: none !important; }
.ocs-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; }
.ocs-submit {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: var(--ocs-accent);
  color: #071c25 !important;
  cursor: pointer;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .35s, filter .35s;
}
.ocs-submit:hover,
.ocs-submit:focus-visible { transform: translateY(-2px); filter: brightness(1.08); outline: none; }
.ocs-submit.is-loading i { animation: ocsOrbit 1s linear infinite; }
.ocs-submit:disabled { cursor: wait; opacity: .72; }
.ocs-form__status { min-height: 18px; margin: 0 !important; color: #e8c99d !important; font-size: 12px !important; }
.ocs-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 34px 0; }
.ocs-values article { min-height: 190px; padding: 24px; border: 1px solid rgba(223, 189, 141, .25); border-radius: 20px; background: rgba(245, 239, 229, .025); transition: transform .4s var(--ocs-ease), background .4s, border-color .4s; }
.ocs-values article:hover { transform: translateY(-5px); border-color: rgba(223, 189, 141, .55); background: rgba(245, 239, 229, .05); }
.ocs-values small { color: var(--ocs-accent); font-size: 9px; letter-spacing: .18em; }
.ocs-values h3 { margin: 30px 0 12px; font-family: var(--ocs-display); font-size: 20px; font-weight: 400; }
.ocs-values p { margin: 0; color: #80959a; font-size: 12px; font-weight: 300; line-height: 1.65; }
.ocs-success-mark { display: grid; width: 74px; height: 74px; place-items: center; margin-bottom: 30px; border: 1px solid var(--ocs-line); border-radius: 50%; color: var(--ocs-accent); font-family: Georgia, serif; font-size: 30px; box-shadow: 0 0 40px rgba(223, 189, 141, .12); }
.ocs-modal__view--success { text-align: left; }
.ocs-modal-open { overflow: hidden; }

@keyframes ocsOrbit { to { transform: rotate(360deg); } }
@keyframes ocsWaveBreath { from { transform: scaleX(.985) translateX(-3px); } to { transform: scaleX(1.025) translateX(5px); } }
@keyframes ocsWaveGlow { from { opacity: .70; } to { opacity: 1; } }

@media (max-width: 1180px) and (min-width: 761px) {
  .ocs-header,
  .ocs-copy,
  .ocs-footer { left: clamp(270px, 25vw, 330px); }
  .ocs-copy { width: 31vw; }
  .ocs-headline { width: 44vw; }
  .ocs-headline h1 { font-size: clamp(78px, 8.4vw, 112px); }
  .ocs-actions { align-items: stretch; flex-direction: column; width: min(250px, 100%); }
  .ocs-pill { width: 100%; }
}

@media (max-width: 760px) {
  .ocs-page { display: block; padding: 0; overflow: visible; }
  .ocs-stage {
    display: flex;
    min-height: 100svh;
    flex-direction: column;
    border: 0;
    border-radius: 0;
    overflow-x: hidden;
    overflow-y: visible;
  }
  .ocs-ambient { display: none; }
  .ocs-media { height: 31svh; min-height: 245px; bottom: auto; }
  .ocs-media__image {
    background-image: var(--ocs-mobile-bg, var(--ocs-bg, linear-gradient(145deg, #dde6e4, #0b4654 72%, #041b25)));
    background-position: var(--ocs-position, center center);
  }
  .ocs-media__video { display: none !important; }
  .ocs-media__wash { background: linear-gradient(180deg, rgba(1, 17, 25, .02), rgba(1, 17, 25, .10) 66%, var(--ocs-ink)); }
  .ocs-wave {
    width: 52vw;
    height: max(31svh, 245px);
    bottom: auto;
  }
  .ocs-wave svg { height: 100%; }
  .ocs-header { top: 24px; left: 22px; right: 22px; }
  .ocs-logo { width: 136px; max-height: 52px; }
  .ocs-pill--ghost {
    width: auto;
    min-width: 112px;
    min-height: 44px;
    padding: 0 17px;
    gap: 14px;
    font-size: 9px;
  }
  .ocs-headline {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: auto;
    order: 1;
    padding: calc(max(31svh, 245px) + 28px) 24px 0;
    text-align: left;
  }
  .ocs-mobile-kicker {
    display: block;
    margin: 0 0 22px;
    color: var(--ocs-accent);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
  }
  .ocs-headline__eyebrow,
  .ocs-headline__rule,
  .ocs-headline > p:not(.ocs-mobile-kicker) { display: none; }
  .ocs-headline h1 {
    font-size: clamp(64px, 18.5vw, 88px);
    line-height: .82;
    letter-spacing: -.055em;
  }
  .ocs-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    order: 2;
    padding: 24px 24px 64px;
  }
  .ocs-kicker,
  .ocs-copy h2 { display: none; }
  .ocs-copy__body {
    max-width: 360px;
    margin: 0;
    color: #a6b5b8;
    font-size: 14px;
    line-height: 1.62;
  }
  .ocs-actions {
    display: grid;
    gap: 11px;
    margin-top: 34px;
  }
  .ocs-pill {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    padding-inline: 23px;
  }
  .ocs-pill--primary,
  .ocs-pill--outline { min-width: 0; }
  .ocs-header .ocs-pill--ghost {
    width: auto;
    min-width: 112px;
    flex: 0 0 auto;
  }
  .ocs-launch {
    width: 100% !important;
    margin-top: 30px;
  }
  .ocs-launch small {
    overflow: hidden;
    max-width: 240px;
    font-size: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .ocs-footer { display: none; }
  .ocs-modal { padding: 0; }
  .ocs-modal__panel,
  .ocs-modal__panel--wide {
    width: 100%;
    min-height: 100svh;
    max-height: 100svh;
    padding: 72px 24px 30px;
    border: 0;
    border-radius: 0;
  }
  .ocs-modal__close { top: 17px; right: 17px; }
  .ocs-modal h2 { font-size: clamp(39px, 12vw, 50px); }
  .ocs-modal__eyebrow { margin-bottom: 28px; }
  .ocs-values { grid-template-columns: 1fr; gap: 10px; }
  .ocs-values article { min-height: 0; }
  .ocs-form__cols { grid-template-columns: 1fr; }
}

@media (max-width: 390px) {
  .ocs-header { left: 18px; right: 18px; }
  .ocs-logo { width: 124px; }
  .ocs-pill--ghost { min-width: 104px; padding-inline: 14px; }
  .ocs-headline,
  .ocs-copy { padding-left: 20px; padding-right: 20px; }
  .ocs-headline h1 { font-size: clamp(60px, 18vw, 72px); }
  .ocs-launch small { max-width: 205px; }
}

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