/* The opening composition has its own responsive layout and height budget. */
.fv.hero {
  padding: 0;
  min-height: 660px;
  height: min(900px, calc(100svh - 112px));
  background: #09151c;
}
.fv .hero-depth {
  background-position: 64% center;
  opacity: 0.55;
}
.fv.hero:before {
  background: linear-gradient(90deg, #07131be6 4%, #07131b88 65%, #07131b11);
}
.fv-layout {
  width: min(1440px, calc(100% - 112px));
  height: 100%;
  margin: auto;
  padding: 54px 0 66px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  grid-template-rows: 1fr auto auto;
  grid-template-areas: "copy visual" "actions visual" "proof visual";
  column-gap: 50px;
  row-gap: 32px;
  align-items: center;
}
.fv-copy {
  grid-area: copy;
  align-self: end;
}
.fv-eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #d4e6e3;
  font-size: 12px;
  letter-spacing: 0.05em;
  margin: 0 0 28px;
}
.fv-eyebrow > span {
  width: 6px;
  height: 6px;
  background: #b2ded2;
  border-radius: 50%;
  box-shadow: 0 0 18px #a9e7dca6;
}
.fv h1 {
  font-size: clamp(52px, 5.3vw, 83px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1.23;
  margin: 0;
  text-align: left;
  white-space: nowrap;
  color: #fff;
}
.fv h1 span {
  color: #c6e4d8;
}
.fv-description {
  font-size: 15px;
  line-height: 1.95;
  color: #cedadf;
  margin: 26px 0 0;
}
.fv-note {
  font-size: 12px;
  line-height: 1.8;
  color: #9fb3b8;
  margin: 14px 0 0;
}
.fv-visual {
  grid-area: visual;
  position: relative;
  height: 100%;
  max-height: 620px;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid #d4e9e040;
  border-radius: 120px 24px 24px 24px;
  isolation: isolate;
  box-shadow: 0 30px 70px #0005;
  background: #60726e;
}
.fv-person {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 67% center;
  display: block;
}
.fv-photo-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, #071620dd, transparent 55%),
    linear-gradient(90deg, #09262a55, transparent 70%);
}
.fv-screen-wrap {
  position: absolute;
  bottom: -42px;
  left: 24px;
  width: clamp(188px, 18vw, 275px);
  transform-origin: bottom center;
}
.fv-screen-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: #fff;
  margin: 0 2px 12px;
  text-shadow: 0 1px 10px #000;
}
.fv-screen-label span {
  font-size: 18px;
}
.fv .fv-screen {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 24px 45px #0009;
  aspect-ratio: 0.56;
}
.fv-visual-caption {
  position: absolute;
  right: 22px;
  bottom: 34px;
  color: white;
  text-shadow: 0 2px 16px #000;
  display: grid;
  gap: 5px;
}
.fv-visual-caption span {
  font-size: 12px;
}
.fv-visual-caption strong {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.03em;
}
.fv-actions {
  grid-area: actions;
  display: flex;
  gap: 24px;
  align-items: center;
}
.fv-primary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 20px 25px;
  border-radius: 7px;
  background: #d6eedf;
  color: #102b2b;
  font-size: 14px;
  font-weight: 650;
  box-shadow: 0 8px 35px #9ceecb12;
  transition:
    background 0.25s,
    transform 0.3s,
    box-shadow 0.3s;
  white-space: nowrap;
}
.fv-primary:hover {
  background: #f0fff5;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px #9ceecb26;
  text-decoration: none;
}
.fv-primary span {
  font-size: 20px;
}
.fv-secondary {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #e0eeeb;
  font-size: 12px;
  text-decoration: none;
  white-space: nowrap;
}
.fv-secondary:hover {
  color: white;
  text-decoration: underline;
}
.fv-secondary span {
  font-size: 20px;
  transition: transform 0.3s;
}
.fv-secondary:hover span {
  transform: translateY(4px);
}
.fv-proof {
  grid-area: proof;
  display: flex;
  gap: 0;
  margin: 0;
  padding: 25px 0 0;
  border-top: 1px solid #b4cbc52b;
  align-self: start;
}
.fv-proof > div {
  flex: 1;
  border-right: 1px solid #c4d6d029;
  padding: 0 20px;
}
.fv-proof > div:first-child {
  padding-left: 0;
}
.fv-proof > div:last-child {
  border: 0;
}
.fv-proof dt {
  font-size: 10px;
  color: #9db4b6;
  margin-bottom: 7px;
}
.fv-proof dd {
  margin: 0;
  font-size: 34px;
  line-height: 1;
  font-weight: 450;
  color: #edf5f1;
  font-variant-numeric: tabular-nums;
}
.fv-proof dd span {
  font-size: 12px;
  margin-left: 6px;
}
.fv-scroll {
  position: absolute;
  bottom: 18px;
  left: 56px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  color: #9cb7b8;
}
.fv-scroll > span {
  height: 1px;
  width: 30px;
  background: #9cb7b8;
}
@media (min-width: 1500px) {
  .fv-layout {
    column-gap: 80px;
    padding-top: 65px;
    padding-bottom: 80px;
  }
  .fv-visual-caption {
    bottom: 44px;
    right: 36px;
  }
  .fv-visual-caption strong {
    font-size: 25px;
  }
}
@media (min-width: 901px) and (max-height: 800px) {
  .fv.hero {
    min-height: 560px;
  }
  .fv-layout {
    padding-top: 30px;
    padding-bottom: 50px;
    row-gap: 23px;
  }
  .fv h1 {
    font-size: clamp(50px, 4.8vw, 70px);
  }
  .fv-eyebrow {
    margin-bottom: 18px;
  }
  .fv-description {
    margin-top: 18px;
  }
  .fv-visual {
    min-height: 430px;
  }
  .fv-screen-wrap {
    width: 210px;
  }
  .fv-proof {
    padding-top: 19px;
  }
}
@media (min-width: 768px) and (max-width: 1100px) {
  .fv-layout {
    width: calc(100% - 64px);
    column-gap: 28px;
  }
  .fv h1 {
    font-size: clamp(42px, 5.4vw, 59px);
  }
  .fv-actions {
    gap: 15px;
    flex-wrap: wrap;
  }
  .fv-primary {
    padding: 18px 21px;
  }
  .fv-visual-caption {
    display: none;
  }
  .fv-screen-wrap {
    width: 190px;
    left: 20px;
  }
  .fv-scroll {
    left: 32px;
  }
}
@media (min-width: 768px) and (max-width: 900px) {
  .fv.hero {
    height: calc(100svh - 108px);
    min-height: 650px;
    max-height: 850px;
  }
  .fv-layout {
    padding: 40px 0 64px;
    row-gap: 26px;
  }
  .fv-visual {
    border-top-left-radius: 80px;
  }
  .fv-copy {
    align-self: center;
  }
  .fv-description {
    font-size: 13px;
  }
  .fv-proof > div {
    padding: 0 12px;
  }
}
@media (max-width: 767px) {
  .utility {
    display: none;
  }
  .header-inner {
    height: 70px !important;
    min-height: 70px;
  }
  .fv.hero {
    height: calc(100svh - 70px);
    min-height: 590px;
    max-height: 870px;
  }
  .fv-layout {
    width: calc(100% - 40px);
    padding: 24px 0 20px;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(180px, 1fr) auto auto;
    grid-template-areas: "copy" "visual" "actions" "proof";
    gap: 18px;
  }
  .fv-copy {
    align-self: auto;
  }
  .fv-eyebrow {
    font-size: 10px;
    gap: 8px;
    margin-bottom: 15px;
  }
  .fv h1 {
    font-size: clamp(38px, 10.8vw, 62px);
    line-height: 1.15;
    letter-spacing: -0.045em;
  }
  .fv-description {
    font-size: 12px;
    line-height: 1.7;
    margin-top: 13px;
  }
  .fv-visual {
    min-height: 0;
    max-height: none;
    border-radius: 50px 12px 12px 12px;
  }
  .fv-person {
    object-position: 69% 38%;
  }
  .fv-screen-wrap {
    width: clamp(125px, 35vw, 172px);
    bottom: -94px;
    left: 16px;
  }
  .fv .fv-screen {
    border-radius: 17px;
  }
  .fv-screen-label {
    font-size: 9px;
    margin-bottom: 6px;
  }
  .fv-screen-label span {
    font-size: 13px;
  }
  .fv-visual-caption {
    right: 14px;
    bottom: 18px;
    gap: 3px;
  }
  .fv-visual-caption span {
    font-size: 10px;
  }
  .fv-visual-caption strong {
    font-size: 16px;
  }
  .fv-actions {
    gap: 14px;
    display: grid;
    grid-template-columns: 1fr auto;
  }
  .fv-primary {
    font-size: 12px;
    padding: 16px 17px;
    gap: 12px;
    border-radius: 6px;
  }
  .fv-primary span {
    font-size: 17px;
  }
  .fv-secondary {
    font-size: 10px;
    gap: 6px;
  }
  .fv-secondary span {
    font-size: 16px;
  }
  .fv-proof {
    padding-top: 14px;
  }
  .fv-proof > div {
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 7px;
  }
  .fv-proof dt {
    font-size: 9px;
    line-height: 1.4;
    margin: 0;
    max-width: 45px;
  }
  .fv-proof dd {
    font-size: 25px;
    white-space: nowrap;
  }
  .fv-proof dd span {
    font-size: 9px;
    margin-left: 3px;
  }
  .fv-scroll {
    display: none;
  }
}
@media (max-width: 767px) and (max-height: 740px) {
  .fv-layout {
    padding-top: 18px;
    gap: 13px;
  }
  .fv-eyebrow {
    margin-bottom: 10px;
  }
  .fv h1 {
    font-size: 38px;
  }
  .fv-description {
    font-size: 11px;
    margin-top: 10px;
  }
  .fv-proof {
    padding-top: 10px;
  }
  .fv-visual-caption {
    display: none;
  }
  .fv-screen-wrap {
    width: 125px;
    bottom: -78px;
  }
}
@media (max-width: 359px) {
  .fv-layout {
    width: calc(100% - 32px);
  }
  .fv h1 {
    font-size: 35px;
  }
  .fv-secondary {
    font-size: 9px;
  }
  .fv-primary {
    padding: 15px 12px;
    font-size: 11px;
  }
  .fv-actions {
    gap: 10px;
  }
  .fv-proof > div {
    padding: 0 9px;
  }
  .fv-proof dd {
    font-size: 23px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .fv-primary,
  .fv-secondary span {
    transition: none;
  }
  .fv-primary:hover,
  .fv-secondary:hover span {
    transform: none;
  }
}
@media (max-width: 359px) and (max-height: 650px) {
  .fv.hero {
    min-height: 498px;
  }
  .fv-layout {
    padding-top: 14px;
    padding-bottom: 14px;
    gap: 10px;
    grid-template-rows: auto minmax(130px, 1fr) auto auto;
  }
  .fv h1 {
    font-size: 32px;
  }
  .fv-eyebrow {
    font-size: 9px;
    margin-bottom: 8px;
  }
  .fv-description {
    font-size: 10px;
    margin-top: 8px;
  }
  .fv-screen-wrap {
    width: 108px;
    bottom: -67px;
    left: 12px;
  }
  .fv-primary {
    padding-top: 13px;
    padding-bottom: 13px;
  }
  .fv-proof {
    padding-top: 8px;
  }
  .fv-proof dt {
    font-size: 8px;
  }
}

/* Transparent masthead over a quiet, softly lit charcoal surface. */
.utility {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 22;
  background: transparent;
  color: #acbcba;
}
.header {
  position: fixed;
  top: 32px;
  left: 0;
  right: 0;
  background: transparent;
  border: 0;
  backdrop-filter: none;
  color: #f3f6f4;
  transition:
    background 0.3s,
    backdrop-filter 0.3s,
    top 0.3s;
}
.header .brand,
.header nav a {
  color: #f3f6f4;
}
.header .brand small {
  color: #b4c3bd;
}
.header .button {
  background: #ffffff0b;
  border: 1px solid #d3e3db55;
  color: #ecf5ef;
  box-shadow: none;
}
.header .button:hover {
  background: #ffffff1c;
}
.header .menu-toggle span {
  background: #edf3ef;
}
.header.is-scrolled {
  top: 0;
  background: #102022e8;
  backdrop-filter: blur(18px);
}
.fv.hero {
  height: min(1012px, 100svh);
  min-height: 772px;
  background: #101b1d;
}
.fv-layout {
  padding-top: 166px;
}
.fv .hero-depth {
  opacity: 1;
  background:
    radial-gradient(ellipse at 78% 5%, #60716b55 0, transparent 48%),
    linear-gradient(118deg, #101719 4%, #152224 57%, #26352f 100%);
}
.fv.hero:before {
  background: linear-gradient(
    165deg,
    transparent 20%,
    #07121230 70%,
    #07121288
  );
}
.fv .hero-light {
  background: linear-gradient(
    118deg,
    transparent 50%,
    #c5d6bc08 65%,
    transparent 80%
  );
}
.fv-visual {
  border-color: #b2c6ba26;
  box-shadow: 0 22px 65px #0003;
}
.fv-actions {
  display: flex;
}
.fv-primary {
  min-width: 240px;
}
@media (min-width: 1500px) {
  .fv-layout {
    padding-top: 177px;
  }
}
@media (min-width: 901px) and (max-height: 800px) {
  .fv.hero {
    min-height: 672px;
  }
  .fv-layout {
    padding-top: 142px;
  }
}
@media (min-width: 768px) and (max-width: 900px) {
  .fv.hero {
    height: 100svh;
    min-height: 758px;
    max-height: 958px;
  }
  .fv-layout {
    padding-top: 148px;
  }
}
@media (max-width: 900px) {
  .header nav {
    background: #102022f7;
    border-color: #ffffff20;
  }
  .header nav a {
    color: #f3f6f4;
  }
}
@media (max-width: 767px) {
  .header {
    top: 0;
  }
  .header nav {
    top: 70px;
  }
  .fv.hero {
    height: 100svh;
    min-height: 660px;
    max-height: 940px;
  }
  .fv-layout {
    padding-top: 94px;
  }
  .fv-primary {
    width: 100%;
    min-width: 0;
    justify-content: center;
    position: relative;
  }
  .fv-primary > span {
    position: absolute;
    right: 18px;
  }
}
@media (max-width: 767px) and (max-height: 740px) {
  .fv-layout {
    padding-top: 88px;
  }
}
@media (max-width: 359px) and (max-height: 650px) {
  .fv.hero {
    min-height: 568px;
  }
  .fv-layout {
    padding-top: 84px;
  }
}
