﻿/*! tailwindcss v4.2.1 | MIT License | https://tailwindcss.com */
@layer theme, base, components, utilities;
@layer theme {
  :root, :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
      "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
      "Courier New", monospace;
    --spacing: 0.25rem;
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}
@layer base {
  *,
  ::after,
  ::before,
  ::backdrop,
  ::file-selector-button {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid;
  }
  html,
  :host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }
  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }
  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }
  b,
  strong {
    font-weight: bolder;
  }
  code,
  kbd,
  samp,
  pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }
  small {
    font-size: 80%;
  }
  sub,
  sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }
  :-moz-focusring {
    outline: auto;
  }
  progress {
    vertical-align: baseline;
  }
  summary {
    display: list-item;
  }
  ol,
  ul,
  menu {
    list-style: none;
  }
  img,
  svg,
  video,
  canvas,
  audio,
  iframe,
  embed,
  object {
    display: block;
    vertical-align: middle;
  }
  img,
  video {
    max-width: 100%;
    height: auto;
  }
  button,
  input,
  select,
  optgroup,
  textarea,
  ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
  }
  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }
  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  ::placeholder {
    opacity: 1;
  }
  @supports (not (-webkit-appearance: -apple-pay-button))  or
    (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentcolor;
      @supports (color: color-mix(in lab, red, red)) {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }
  textarea {
    resize: vertical;
  }
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }
  ::-webkit-datetime-edit,
  ::-webkit-datetime-edit-year-field,
  ::-webkit-datetime-edit-month-field,
  ::-webkit-datetime-edit-day-field,
  ::-webkit-datetime-edit-hour-field,
  ::-webkit-datetime-edit-minute-field,
  ::-webkit-datetime-edit-second-field,
  ::-webkit-datetime-edit-millisecond-field,
  ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }
  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  button,
  input:where([type="button"], [type="reset"], [type="submit"]),
  ::file-selector-button {
    appearance: button;
  }
  ::-webkit-inner-spin-button,
  ::-webkit-outer-spin-button {
    height: auto;
  }
  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}
@layer utilities {
  .relative {
    position: relative;
  }
  .start {
    inset-inline-start: var(--spacing);
  }
  .table {
    display: table;
  }
}
:root {
  --ink: #08080b;
  --paper: #f5f3f7;
  --teal: #2cb8ae;
  --purple: #3e168d;
  --muted: #66636d;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial,Helvetica,sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
.nav-wrap {
  height: 92px;
  display: flex;
  align-items: center;
  gap: 42px;
  padding: 0 5vw;
  border-bottom: 1px solid #ded9e4;
  position: relative;
  z-index: 2;
  background: white;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}
.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  background: #050507;
  border-radius: 50%;
}
.brand>span {
  display: flex;
  align-items: center;
  gap: 9px;
}
.brand b {
  font-size: 25px;
  letter-spacing: -1.5px;
}
.brand small {
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  border-left: 1px solid;
  padding-left: 9px;
}
.nav-wrap nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
}
.nav-wrap nav a:hover {
  color: var(--purple);
}
.nav-cta,.button {
  background: var(--purple);
  color: white;
  padding: 15px 22px;
  font-size: 13px;
}
.hero {
  min-height: 690px;
  padding: 84px 5vw 70px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg,#f8f6fa 35%,#ede8f3);
}
.hero:before {
  content: "";
  position: absolute;
  width: 520px;
  height: 240px;
  background: var(--teal);
  border-radius: 50%;
  right: -90px;
  top: 125px;
  transform: rotate(-13deg);
  opacity: .92;
}
.hero:after {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  border: 105px solid var(--purple);
  border-radius: 50%;
  right: -80px;
  top: 38px;
  opacity: .94;
}
.eyebrow,.section-no {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  font-weight: bold;
}
.hero h1 {
  font-size: clamp(54px,7.6vw,116px);
  line-height: .88;
  letter-spacing: -.065em;
  margin: 35px 0 42px;
  max-width: 1100px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.hero h1 em {
  font-family: Georgia,serif;
  font-weight: 400;
  color: var(--purple);
}
.hero>p {
  max-width: 560px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 32px;
}
.text-link {
  font-size: 14px;
  border-bottom: 1px solid;
  padding-bottom: 7px;
}
.text-link span {
  margin-left: 20px;
}
.hero-card {
  position: absolute;
  right: 8vw;
  bottom: 55px;
  background: #09090c;
  color: white;
  width: 300px;
  padding: 30px;
  z-index: 1;
  box-shadow: 0 18px 55px #32156c30;
  border-top: 5px solid var(--teal);
}
.hero-card span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.hero-card strong {
  display: block;
  font: 28px/1.15 Georgia,serif;
  margin: 28px 0;
}
.hero-card p {
  font-size: 13px;
  color: #b8b5bf;
}
.intro,.process,.detail-copy {
  padding: 110px 7vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
  background: linear-gradient(135deg,#09090c,#27105b);
  color: white;
}
.intro h2,.process h2,.detail-copy h2,.contact h2 {
  font: clamp(40px,5vw,72px)/1.05 Georgia,serif;
  margin: 28px 0;
}
.lead-copy {
  font-size: 18px;
  line-height: 1.75;
  color: #d7d2dc;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  background: white;
}
.service-grid article {
  padding: 48px 34px 58px;
  border-right: 1px solid #ddd;
  min-height: 340px;
  border-top: 5px solid transparent;
  transition: .2s;
}
.service-grid article:hover {
  border-top-color: var(--teal);
  background: #f7f4fa;
}
.service-grid article span {
  font-size: 11px;
  color: var(--purple);
}
.service-grid h3 {
  font: 26px/1.15 Georgia,serif;
  margin: 70px 0 22px;
}
.service-grid p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}
.process {
  background: var(--teal);
  color: var(--ink);
}
.process-copy p {
  max-width: 610px;
  line-height: 1.7;
}
.benefits {
  background: var(--purple);
  color: white;
  padding: 38px;
}
.benefits h3 {
  font: 27px Georgia,serif;
  margin: 0 0 25px;
}
.benefits div {
  display: grid;
  grid-template-columns: 45px 1fr;
  padding: 17px 0;
  border-top: 1px solid #ffffff30;
  font-size: 14px;
}
.benefits b {
  color: #73e4dc;
  font-size: 11px;
}
.detail-copy {
  background: white;
  color: var(--ink);
}
.detail-copy>div {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
}
.contact {
  padding: 105px 7vw;
  background: #eee9f3;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 40px;
  align-items: end;
  border-top: 1px solid #cbc4d3;
  padding-top: 35px;
}
.contact-grid p,.contact-grid a {
  line-height: 1.7;
}
.contact-grid>div:nth-child(2) {
  display: flex;
  flex-direction: column;
  font-size: 20px;
}
.circle {
  background: var(--teal);
  width: 95px;
  height: 95px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 32px;
}
footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  background: var(--ink);
  color: white;
  padding: 45px 5vw;
  font-size: 12px;
}
footer>div:nth-child(2) {
  text-align: center;
}
footer>div:last-child {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
}
.inverse img {
  width: 46px;
  height: 46px;
}
.inverse b {
  color: white;
}
.legal {
  background: var(--ink);
  color: white;
  padding: 0 7vw;
}
.legal details {
  border-top: 1px solid #ffffff25;
  padding: 24px 0;
}
.legal summary {
  cursor: pointer;
  font: 22px Georgia,serif;
}
.legal details>div {
  max-width: 850px;
  color: #cbc7d0;
  line-height: 1.6;
  padding: 20px 0 45px;
}
.legal h3 {
  color: white;
  margin-top: 28px;
}
@media (max-width:850px) {
  .nav-wrap nav {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .hero {
    padding-top: 60px;
    min-height: 760px;
  }
  .hero:before {
    width: 320px;
    height: 150px;
    right: -150px;
    top: 300px;
  }
  .hero:after {
    width: 300px;
    height: 300px;
    border-width: 75px;
    right: -150px;
    top: 230px;
  }
  .hero h1 {
    font-size: 57px;
  }
  .hero-card {
    right: 5vw;
    bottom: 30px;
    width: 270px;
  }
  .intro,.process,.detail-copy {
    grid-template-columns: 1fr;
    padding: 80px 6vw;
    gap: 40px;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .circle {
    width: 70px;
    height: 70px;
  }
  footer {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  footer>div:nth-child(2) {
    text-align: left;
  }
  footer>div:last-child {
    justify-content: flex-start;
  }
}
@media (max-width:520px) {
  .nav-wrap {
    height: 76px;
  }
  .brand img {
    width: 45px;
    height: 45px;
  }
  .brand b {
    font-size: 21px;
  }
  .brand small {
    font-size: 8px;
  }
  .hero h1 {
    font-size: 46px;
  }
  .hero>p {
    font-size: 16px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-grid article {
    min-height: auto;
  }
  .contact h2 {
    font-size: 45px;
  }
}
.brand img {
  background: #fff;
  border-radius: 0;
}
.hero:before,.hero:after {
  display: none;
}
.hero-mark {
  position: absolute;
  width: min(47vw,610px);
  height: auto;
  right: -3vw;
  top: 28px;
  mix-blend-mode: multiply;
  opacity: .96;
  z-index: 0;
}
.hero>*:not(.hero-mark) {
  position: relative;
  z-index: 1;
}
.hero .hero-card {
  position: absolute;
  z-index: 3;
}
@media (max-width:850px) {
  .hero-mark {
    width: 520px;
    right: -260px;
    top: 150px;
    opacity: .38;
  }
  .hero .hero-card {
    right: 5vw;
    bottom: 28px;
    top: auto;
    width: 270px;
  }
}
@media (max-width:520px) {
  .hero-mark {
    width: 430px;
    right: -260px;
    top: 210px;
    opacity: .3;
  }
  .hero .hero-card {
    left: 5vw;
    right: 5vw;
    width: auto;
    bottom: 24px;
  }
}
@media (min-width:851px) {
  .hero {
    min-height: 690px;
    padding-bottom: 34px;
  }
  .hero h1 {
    max-width: 68vw;
    font-size: clamp(54px,6.6vw,100px);
  }
  .hero-mark {
    width: min(28vw,410px);
    right: 1.5vw;
    top: 72px;
  }
  .hero-card {
    position: absolute;
    right: 1.5vw;
    top: calc(62px + min(28vw,410px));
    bottom: auto;
    width: min(28vw,410px);
    z-index: 2;
  }
}
.contact {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg,#130729 0%,#3e168d 100%);
  color: white;
  padding: 110px 7vw 80px;
}
.contact>.section-no {
  color: #66ddd5;
}
.contact-mark {
  position: absolute;
  width: 470px;
  height: 470px;
  object-fit: contain;
  right: -150px;
  top: -90px;
  mix-blend-mode: screen;
  opacity: .1;
}
.contact-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: end;
  border-bottom: 1px solid #ffffff2e;
  padding-bottom: 58px;
  position: relative;
  z-index: 1;
}
.contact h2 {
  margin: 28px 0 0;
  font-size: clamp(48px,6.6vw,94px);
  letter-spacing: -.045em;
  line-height: .92;
}
.contact h2 em {
  color: #62dcd3;
  font-weight: 400;
}
.contact-cta {
  display: flex;
  align-items: center;
  gap: 35px;
  background: var(--teal);
  color: #071a18;
  border-radius: 999px;
  padding: 10px 12px 10px 28px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform .2s,background .2s;
}
.contact-cta:hover {
  transform: translateY(-4px);
  background: #70e2da;
}
.contact-cta b {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #08080b;
  color: white;
  font-size: 24px;
}
.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 18px;
  border: 0;
  padding-top: 26px;
}
.contact-grid article {
  min-height: 170px;
  padding: 25px;
  border: 1px solid #ffffff24;
  background: #ffffff0a;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: .2s;
}
.contact-grid article:hover {
  background: #ffffff12;
  border-color: #62dcd3;
}
.contact-grid article>span {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #8e8a99;
  font-size: 10px;
  font-weight: bold;
}
.contact-grid article p,.contact-grid article a {
  font-size: 19px;
  line-height: 1.55;
  margin: 28px 0 0;
}
.contact-grid article a {
  font-family: Georgia,serif;
  font-size: 25px;
  text-decoration: underline;
  text-decoration-color: #62dcd355;
  text-underline-offset: 7px;
}
@media (max-width:850px) {
  .contact {
    padding: 80px 6vw 60px;
  }
  .contact-head {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .contact-cta {
    width: max-content;
  }
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid article:first-child {
    grid-column: 1/-1;
  }
}
@media (max-width:520px) {
  .contact h2 {
    font-size: 47px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid article:first-child {
    grid-column: auto;
  }
  .contact-cta {
    width: 100%;
    justify-content: space-between;
  }
  .contact-mark {
    width: 360px;
    right: -210px;
  }
}

