@font-face {
  font-family: "RNS Sanz";
  src: url("../fonts/RNSSanz-Normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "RNS Sanz";
  src: url("../fonts/RNSSanz-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "RNS Sanz";
  src: url("../fonts/RNSSanz-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Earnture Homepage Hero v1.5.0
   Premium editorial composition with a unified flagship search and intentional light/dark parity. */

:root {
  --eth-primary: #123B3D;
  --eth-accent: #F07A5A;
  --eth-bg: #F7F3EA;
  --eth-text: #1B292A;
  --eth-muted: #4F6662;
  --eth-subtle: #5C716D;
  --eth-surface: #FBF8F1;
  --eth-surface-hover: #FFFDF8;
  --eth-border: rgba(18, 59, 61, .14);
  --eth-border-strong: rgba(18, 59, 61, .26);
  --eth-action-bg: #123B3D;
  --eth-action-bg-hover: #0F3436;
  --eth-action-text: #F7F3EA;
  --eth-action-border: #123B3D;
  --eth-focus: rgba(240, 122, 90, .20);
  --eth-radius-sm: 8px;
  --eth-radius-md: 12px;
  --eth-radius-lg: 16px;
  --eth-max: 1300px;
}

html[data-theme="dark"],
body[data-theme="dark"],
html.dark,
body.dark,
body.dark-mode,
.et-theme-dark {
  --eth-primary: #F7F3EA;
  --eth-accent: #F07A5A;
  --eth-bg: #102F31;
  --eth-text: #F7F3EA;
  --eth-muted: #C4CECB;
  --eth-subtle: #AEBDB9;
  --eth-surface: #173A3C;
  --eth-surface-hover: #1A4042;
  --eth-border: rgba(167, 181, 177, .22);
  --eth-border-strong: #45696A;
  --eth-action-bg: #244A4C;
  --eth-action-bg-hover: #2A5456;
  --eth-action-text: #F7F3EA;
  --eth-action-border: #45696A;
  --eth-focus: rgba(240, 122, 90, .27);
}

.et-hero,
.et-hero * {
  box-sizing: border-box;
}

.et-hero {
  position: relative;
  inline-size: 100vw;
  max-inline-size: 100vw;
  margin: 0 calc(50% - 50vw);
  overflow: clip;
  background: var(--eth-bg);
  color: var(--eth-text);
  border-block-end: 1px solid color-mix(in srgb, var(--eth-border) 65%, transparent);
  font-family: "RNS Sanz", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease;
}


@supports (width: 100dvw) {
  .et-hero {
    inline-size: 100dvw;
    max-inline-size: 100dvw;
    margin-inline: calc(50% - 50dvw);
  }
}

.et-hero__inner {
  width: min(var(--eth-max), calc(100% - 64px));
  min-height: clamp(535px, 57vh, 590px);
  margin-inline: auto;
  padding-block: clamp(42px, 4.2vw, 56px);
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(0, .84fr);
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
}

.et-hero__content {
  position: relative;
  z-index: 2;
  max-width: 755px;
  padding-inline-start: 2px;
}

/* Informational taxonomy, not a second navigation row. */
.et-hero__eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 16px;
  margin: 0 0 15px;
  color: var(--eth-muted);
  font-size: 12.5px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.et-hero__title {
  max-width: 17.2ch;
  margin: 0;
  color: var(--eth-text);
  font-family: inherit;
  font-size: clamp(43px, 4.35vw, 59px);
  line-height: 1.045;
  letter-spacing: -.031em;
  font-weight: 600;
  text-wrap: balance;
}

.et-hero__title span {
  color: var(--eth-accent);
}

.et-hero__copy {
  max-width: 585px;
  margin: 19px 0 0;
  color: var(--eth-muted);
  font-size: clamp(16px, 1.22vw, 17.25px);
  line-height: 1.58;
  font-weight: 400;
}

/* One 56px flagship shell with a separate rounded-square icon box. */
.et-hero__search {
  width: min(100%, 640px);
  min-height: 58px;
  margin-top: 25px;
  margin-inline-start: 7px;
  padding: 6px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--eth-border);
  border-radius: var(--eth-radius-md);
  background: var(--eth-surface);
  box-shadow: 0 1px 0 rgba(18, 59, 61, .025), 0 6px 20px rgba(18, 59, 61, .035);
  transition: border-color 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.et-hero__search:hover {
  border-color: var(--eth-border-strong);
  background: var(--eth-surface-hover);
}

.et-hero__search:focus-within {
  border-color: var(--eth-accent);
  box-shadow: 0 0 0 3px var(--eth-focus), 0 7px 22px rgba(18, 59, 61, .04);
}

.et-hero__search-iconbox {
  width: 44px;
  height: 44px;
  border: 1px solid var(--eth-border);
  border-radius: var(--eth-radius-sm);
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--eth-bg) 38%, var(--eth-surface) 62%);
  color: var(--eth-subtle);
  transition: border-color 150ms ease, background-color 150ms ease, color 150ms ease;
}

.et-hero__search:focus-within .et-hero__search-iconbox {
  border-color: var(--eth-accent);
  background: color-mix(in srgb, var(--eth-accent) 8%, var(--eth-surface) 92%);
  color: var(--eth-accent);
}

.et-hero__search-field {
  position: relative;
  min-width: 0;
}

.et-hero__search-icon {
  width: 18px;
  height: 18px;
  color: currentColor;
  pointer-events: none;
}

.et-hero__input {
  width: 100%;
  height: 44px;
  margin: 0;
  padding-block: 0;
  padding-inline: 2px 10px;
  border: 0 !important;
  border-radius: var(--eth-radius-sm);
  outline: 0 !important;
  background: transparent !important;
  color: var(--eth-text);
  box-shadow: none !important;
  font: inherit;
  font-size: 15.5px;
  line-height: 1;
  font-weight: 400;
  appearance: none;
}

.et-hero__input::placeholder {
  color: var(--eth-subtle);
  opacity: .96;
}

.et-hero__search-button {
  width: 102px;
  height: 44px;
  margin: 0;
  padding-inline: 18px;
  border: 1px solid var(--eth-action-border);
  border-radius: var(--eth-radius-sm);
  background: var(--eth-action-bg);
  color: var(--eth-action-text);
  box-shadow: none;
  font: inherit;
  font-size: 14.5px;
  line-height: 1;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease, box-shadow 150ms ease;
}

.et-hero__search-button:hover {
  background: var(--eth-action-bg-hover);
  border-color: var(--eth-accent);
  box-shadow: 0 3px 10px rgba(18, 59, 61, .08);
}

.et-hero__search-button:active {
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, .10);
}

.et-hero__search-button:focus-visible {
  outline: 2px solid var(--eth-accent);
  outline-offset: 2px;
}

.et-hero__topics {
  width: min(100%, 625px);
  margin-top: 14px;
  margin-inline-start: 7px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 2px 12px;
  color: var(--eth-muted);
  font-size: 13.5px;
  line-height: 1.45;
}

.et-hero__topics-label {
  padding-block: 5px;
  color: var(--eth-text);
  font-weight: 600;
}

.et-hero__topic-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px 18px;
}

.et-hero__topic {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding-block: 5px;
  color: var(--eth-muted);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
  border-radius: 3px;
  transition: color 140ms ease, text-decoration-color 140ms ease;
}

.et-hero__topic:hover {
  color: var(--eth-text);
  text-decoration-color: var(--eth-accent);
}

.et-hero__topic:focus-visible {
  color: var(--eth-text);
  outline: 2px solid var(--eth-accent);
  outline-offset: 3px;
  text-decoration-color: var(--eth-accent);
}

/* Quiet editorial confidence line: no alert icon and no divider. */
.et-hero__promise {
  max-width: 540px;
  margin: 13px 0 0 7px;
  color: var(--eth-muted);
  font-size: 13.2px;
  line-height: 1.48;
  font-weight: 400;
}

.et-hero__promise strong {
  color: var(--eth-muted);
  font-weight: 600;
}

/* Larger and lower-seated visual so its base ties into the hero base. */
.et-hero__visual {
  position: relative;
  z-index: 1;
  min-width: 0;
  align-self: end;
  justify-self: stretch;
  display: grid;
  place-items: end start;
  overflow: visible;
  transform: translate(-44px, 34px);
}

.et-hero__figure {
  position: relative;
  width: min(705px, 133%);
  margin: 0 24px -34px -48px;
  display: grid;
  place-items: end start;
}

.et-hero__illustration {
  display: block;
  width: 100%;
  height: auto;
  max-height: 628px;
  object-fit: contain;
  filter: drop-shadow(0 10px 14px rgba(11, 47, 49, .06));
  transform: translateZ(0);
}

html[data-theme="dark"] .et-hero__illustration,
body[data-theme="dark"] .et-hero__illustration,
html.dark .et-hero__illustration,
body.dark .et-hero__illustration,
body.dark-mode .et-hero__illustration,
.et-theme-dark .et-hero__illustration {
  filter: brightness(1.018) contrast(1.04) drop-shadow(0 10px 14px rgba(0, 0, 0, .16));
}

.et-hero__caption {
  position: absolute;
  inset-inline-start: 15%;
  inset-block-end: 18px;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3px 6px;
  padding: 6px 10px;
  color: var(--eth-muted);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: .003em;
  text-align: start;
  background: color-mix(in srgb, var(--eth-surface) 72%, transparent);
  border: 1px solid rgba(18, 59, 61, .10);
  border-radius: 10px;
  backdrop-filter: blur(4px);
}

.et-hero__caption b {
  color: var(--eth-accent);
  font-weight: 600;
}

.et-hero p,
.et-hero h1,
.et-hero figure,
.et-hero form {
  margin-block-end: 0;
}

@media (min-width: 1380px) {
  .et-hero__visual {
    transform: translate(-54px, 38px);
  }

  .et-hero__figure {
    width: min(730px, 136%);
    margin-inline: 0 28px -36px -56px;
  }
}

@media (max-width: 1100px) {
  .et-hero__inner {
    width: min(100% - 48px, 1030px);
    min-height: 520px;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
    gap: 18px;
    padding-block: 45px 48px;
  }

  .et-hero__title {
    max-width: 16ch;
    font-size: clamp(41px, 5vw, 54px);
  }

  .et-hero__copy {
    max-width: 560px;
  }

  .et-hero__visual {
    transform: translate(-24px, 24px);
  }

  .et-hero__figure {
    width: min(640px, 128%);
    margin-inline: 0 22px -24px -30px;
  }

  .et-hero__illustration {
    max-height: 560px;
  }

  .et-hero__caption {
    inset-inline-start: 12%;
    inset-block-end: 12px;
  }
}

@media (max-width: 860px) {
  .et-hero__inner {
    width: min(100% - 40px, 760px);
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 26px;
    padding-block: 50px 40px;
  }

  .et-hero__content {
    max-width: 700px;
  }

  .et-hero__title {
    max-width: 16.5ch;
  }

  .et-hero__search,
  .et-hero__topics,
  .et-hero__promise {
    margin-inline-start: 0;
  }

  .et-hero__visual {
    width: min(660px, 98%);
    margin-inline: auto;
    transform: translate(0, 8px);
  }

  .et-hero__figure {
    width: min(640px, 100%);
    margin: 0 0 -18px 0;
  }

  .et-hero__caption {
    position: static;
    justify-self: center;
    margin-top: 8px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    backdrop-filter: none;
  }
}

@media (max-width: 560px) {
  .et-hero__inner {
    width: calc(100% - 32px);
    gap: 22px;
    padding-block: 42px 34px;
  }

  .et-hero__eyebrow {
    gap: 4px 12px;
    margin-bottom: 12px;
    font-size: 11px;
    letter-spacing: .058em;
  }

  .et-hero__title {
    max-width: none;
    font-size: clamp(35px, 10vw, 40px);
    line-height: 1.065;
    letter-spacing: -.028em;
  }

  .et-hero__copy {
    max-width: 100%;
    margin-top: 16px;
    font-size: 15.75px;
    line-height: 1.58;
  }

  .et-hero__search {
    min-height: 54px;
    margin-top: 21px;
    padding: 4px;
    gap: 6px;
    grid-template-columns: 40px minmax(0, 1fr) auto;
    border-radius: var(--eth-radius-md);
  }

  .et-hero__search-iconbox {
    width: 40px;
    height: 40px;
  }

  .et-hero__input {
    height: 42px;
    padding-inline: 2px 8px;
    font-size: 15px;
  }

  .et-hero__search-icon {
    width: 17px;
    height: 17px;
  }

  .et-hero__search-button {
    width: 88px;
    height: 42px;
    padding-inline: 12px;
  }

  .et-hero__topics {
    margin-top: 11px;
    gap: 0 10px;
    font-size: 13px;
  }

  .et-hero__topic-links {
    gap: 0 13px;
  }

  .et-hero__promise {
    margin-top: 14px;
    font-size: 13px;
  }

  .et-hero__visual {
    width: 100%;
  }

  .et-hero__illustration {
    max-height: 482px;
  }

  .et-hero__caption {
    max-width: 390px;
    justify-content: center;
    font-size: 12.25px;
    text-align: center;
  }
}

@media (max-width: 390px) {
  .et-hero__search-button {
    width: 84px;
    padding-inline: 11px;
  }

  .et-hero__input::placeholder {
    font-size: 14px;
  }

  .et-hero__topic-links {
    gap: 0 11px;
  }
}

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