@font-face {
  font-family: Pretendard;
  src: url(../fonts/PretendardVariable.woff2) format("woff2-variations");
  font-weight: 45 920;
  font-display: swap;
}
:root {
  --drm-night: #070b22;
  --drm-panel: #10173b;
  --drm-indigo: #2834a7;
  --drm-violet: #7d52ff;
  --drm-aqua: #31d8e8;
  --drm-paper: #f1f3f8;
  --drm-white: #fff;
  --drm-ink: #11152c;
  --drm-muted: #646b82;
  --drm-line: #d7dbe7;
  --drm-rail: 250px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body.dreamdaebu-site {
  margin: 0;
  background: var(--drm-night);
  color: var(--drm-ink);
  font-family:
    Pretendard,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Noto Sans KR",
    sans-serif;
  word-break: keep-all;
  overflow-x: hidden;
}
body.dreamdaebu-site a {
  color: inherit;
  text-decoration: none;
}
body.dreamdaebu-site img {
  display: block;
  max-width: 100%;
  height: auto;
}
body.dreamdaebu-site button,
body.dreamdaebu-site input,
body.dreamdaebu-site select {
  font: inherit;
}
:where(a, button, input, select, summary):focus-visible {
  outline: 3px solid var(--drm-aqua);
  outline-offset: 4px;
}
.drm-main {
  background: var(--drm-paper);
}
.drm-legal-bar {
  min-height: 48px;
  background: #05081b;
  color: #fff;
  padding: 10px 25px 10px calc(var(--drm-rail) + 30px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 7px 22px;
  font-size: 10px;
  letter-spacing: 0.05em;
}
.drm-legal-bar strong {
  margin-right: auto;
  color: var(--drm-aqua);
  font-size: 12px;
}
.drm-legal-bar span {
  color: #bbc2df;
}
.drm-legal-bar > a {
  border: 1px solid #ffffff4d;
  padding: 7px 11px;
  font-weight: 800;
}
.drm-workspace {
  display: grid;
  grid-template-columns: var(--drm-rail) minmax(0, 1fr);
}
.drm-rail {
  z-index: 20;
  position: sticky;
  top: 0;
  height: 100vh;
  background: var(--drm-night);
  color: #fff;
  border-right: 1px solid #ffffff18;
  padding: 34px 28px 28px;
  display: flex;
  flex-direction: column;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}
.brand-portrait {
  display: none;
}
.brand-word {
  display: flex;
  flex-direction: column;
  color: #fff;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.95;
}
.brand-word > span {
  color: var(--drm-aqua);
  display: contents;
}
.brand-word small {
  margin-top: 8px;
  color: #9b8dff;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.18em;
}
.drm-rail nav {
  display: grid;
  gap: 3px;
  margin-top: 75px;
}
.drm-rail nav a {
  min-height: 48px;
  padding: 0 8px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  color: #8f97b7;
  font-size: 11px;
  font-weight: 750;
  border-left: 2px solid transparent;
}
.drm-rail nav a:hover {
  color: #fff;
  border-color: var(--drm-aqua);
  background: #ffffff08;
}
.drm-rail nav i {
  color: #565f82;
  font-style: normal;
  font-size: 8px;
}
.drm-rail-contact {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid #ffffff1c;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.drm-rail-contact span {
  color: #68718f;
  font-size: 9px;
}
.drm-rail-contact a {
  color: var(--drm-aqua);
  font-size: 12px;
  font-weight: 850;
  overflow-wrap: anywhere;
}
.drm-content {
  min-width: 0;
}
.drm-hero {
  min-height: calc(100vh - 48px);
  position: relative;
  background: #090d2a;
  overflow: hidden;
}
.drm-hero-image {
  position: absolute;
  inset: 0;
}
.drm-hero-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #070b229c 0%, #070b2214 45%, #070b224d 100%),
    linear-gradient(0deg, #070b22d9 0%, #070b2200 53%);
}
.drm-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.drm-hero-panel {
  position: absolute;
  z-index: 2;
  right: 5vw;
  bottom: 6vh;
  width: min(650px, 58vw);
  padding: 42px;
  background: #090f30d9;
  border: 1px solid #8e9eff66;
  backdrop-filter: blur(18px);
  color: #fff;
  box-shadow: 0 30px 80px #0009;
}
.drm-hero-panel > p {
  margin: 0 0 14px;
  color: var(--drm-aqua);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.22em;
}
.drm-hero-panel h1 {
  margin: 0;
  font-size: clamp(43px, 5vw, 72px);
  font-weight: 870;
  letter-spacing: -0.075em;
  line-height: 1.08;
}
.drm-hero-panel h1 strong {
  color: #b8a8ff;
  font-weight: inherit;
}
.drm-hero-panel > span {
  display: block;
  max-width: 580px;
  margin: 21px 0;
  color: #d4d8e9;
  font-size: 14px;
  line-height: 1.85;
}
.drm-hero-panel > div {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.drm-hero-panel > div a {
  min-height: 50px;
  border: 1px solid #ffffff55;
  padding: 0 18px;
  display: flex;
  align-items: center;
  font-size: 11px;
  font-weight: 850;
}
.drm-hero-panel > div a:first-child {
  background: var(--drm-violet);
  border-color: var(--drm-violet);
}
.drm-hero-panel > small {
  display: block;
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid #ffffff30;
  color: #9ea5c0;
  font-size: 9px;
  line-height: 1.6;
}
.drm-section-code {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--drm-line);
  padding-bottom: 14px;
}
.drm-section-code span {
  color: var(--drm-violet);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.2em;
}
.drm-section-code b {
  color: #b1b7ca;
  font-size: 10px;
}
.drm-snapshot {
  padding: 110px clamp(35px, 6vw, 90px) 120px;
  background: #f3f4f8;
}
.drm-snapshot-copy {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: end;
  margin: 48px 0 55px;
}
.drm-snapshot-copy h2,
.drm-guide-heading h2,
.drm-audience > h2,
.drm-principles-intro h2,
.drm-apply-info h2,
.drm-faq-head h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 850;
  letter-spacing: -0.075em;
  line-height: 1.12;
}
.drm-snapshot-copy p,
.drm-guide-heading p {
  margin: 0;
  color: var(--drm-muted);
  font-size: 14px;
  line-height: 1.9;
}
.drm-metric-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--drm-line);
  background: #fff;
}
.drm-metric-board article {
  min-height: 260px;
  padding: 30px;
  border-right: 1px solid var(--drm-line);
  position: relative;
}
.drm-metric-board article:last-child {
  border-right: 0;
}
.drm-metric-board article:before {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  top: 75px;
  height: 2px;
  background: linear-gradient(90deg, var(--drm-violet), var(--drm-aqua));
}
.drm-metric-board span {
  color: var(--drm-violet);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.17em;
}
.drm-metric-board b {
  display: block;
  margin-top: 74px;
  font-size: 17px;
}
.drm-metric-board p {
  margin: 12px 0 0;
  color: #737a8d;
  font-size: 11px;
  line-height: 1.7;
}
.drm-guide {
  padding: 110px clamp(35px, 6vw, 90px) 120px;
  background: #fff;
}
.drm-guide-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: end;
  margin: 48px 0 75px;
}
.drm-timeline {
  position: relative;
  max-width: 980px;
  margin-left: auto;
}
.drm-timeline:before {
  content: "";
  position: absolute;
  left: 48px;
  top: 30px;
  bottom: 30px;
  width: 1px;
  background: linear-gradient(var(--drm-violet), var(--drm-aqua));
}
.drm-timeline article {
  display: grid;
  grid-template-columns: 98px 1fr;
  gap: 32px;
  position: relative;
  padding: 0 0 54px;
}
.drm-timeline i {
  z-index: 1;
  width: 96px;
  height: 50px;
  background: #fff;
  border: 1px solid var(--drm-line);
  display: grid;
  place-items: center;
  color: var(--drm-violet);
  font-style: normal;
  font-size: 10px;
  font-weight: 900;
}
.drm-timeline h3 {
  margin: 0 0 12px;
  font-size: 24px;
  letter-spacing: -0.04em;
}
.drm-timeline p {
  max-width: 710px;
  margin: 0;
  color: #646b7d;
  font-size: 13px;
  line-height: 1.9;
}
.drm-audience {
  padding: 110px clamp(35px, 6vw, 90px) 120px;
  background: #111735;
  color: #fff;
}
.drm-audience .drm-section-code {
  border-color: #ffffff25;
}
.drm-audience .drm-section-code b {
  color: #6f789b;
}
.drm-audience > h2 {
  max-width: 900px;
  margin: 48px 0 60px;
  color: #fff;
}
.drm-audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #ffffff2c;
  border-left: 1px solid #ffffff2c;
}
.drm-audience-grid article {
  min-height: 340px;
  padding: 30px;
  border-right: 1px solid #ffffff2c;
  border-bottom: 1px solid #ffffff2c;
}
.drm-audience-grid article > span {
  color: var(--drm-aqua);
  font-size: 9px;
}
.drm-audience-grid h3 {
  margin: 85px 0 16px;
  font-size: 19px;
}
.drm-audience-grid p {
  margin: 0;
  color: #b7bfd7;
  font-size: 12px;
  line-height: 1.85;
}
.drm-principles {
  padding: 120px clamp(35px, 6vw, 90px);
  background: #ebedf4;
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 1px;
}
.drm-principles > div {
  padding: 45px;
  background: #fff;
}
.drm-principles-intro > span,
.drm-apply-info > span {
  color: var(--drm-violet);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.2em;
}
.drm-principles-intro h2 {
  margin-top: 20px;
  font-size: 44px;
}
.drm-principles-intro p {
  color: var(--drm-muted);
  font-size: 13px;
  line-height: 1.85;
}
.drm-do {
  border-top: 5px solid var(--drm-aqua);
}
.drm-dont {
  border-top: 5px solid #ff6f91;
}
.drm-principles h3 {
  margin: 0 0 60px;
  color: var(--drm-violet);
  font-size: 12px;
  letter-spacing: 0.2em;
}
.drm-principles ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.drm-principles li {
  position: relative;
  padding: 18px 0 18px 28px;
  border-top: 1px solid var(--drm-line);
  font-size: 13px;
  line-height: 1.65;
}
.drm-principles li:before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--drm-violet);
  font-weight: 900;
}
.drm-dont li:before {
  content: "–";
  color: #e64e72;
}
.drm-apply {
  padding: 120px clamp(35px, 6vw, 90px);
  background: linear-gradient(135deg, #171d52, #0a0f30);
  color: #fff;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.drm-apply-info {
  position: sticky;
  top: 30px;
}
.drm-apply-info > span {
  color: var(--drm-aqua);
}
.drm-apply-info h2 {
  margin: 20px 0 22px;
  color: #fff;
  font-size: 49px;
}
.drm-apply-info > p {
  color: #bec5dc;
  font-size: 14px;
  line-height: 1.85;
}
.drm-apply-info dl {
  margin: 36px 0 0;
  border-top: 1px solid #ffffff2b;
}
.drm-apply-info dl > div {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid #ffffff2b;
}
.drm-apply-info dt {
  color: #7e89ad;
  font-size: 9px;
}
.drm-apply-info dd {
  margin: 0;
  color: #d4daec;
  font-size: 11px;
  line-height: 1.6;
}
.drm-form {
  position: relative;
  background: #fff;
  color: var(--drm-ink);
  padding: 42px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  box-shadow: 0 30px 90px #0007;
}
.drm-form > label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.drm-form label > span {
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.03em;
}
.drm-form input,
.drm-form select {
  width: 100%;
  height: 55px;
  border: 1px solid #cbd0df;
  background: #f8f9fc;
  padding: 0 14px;
  color: var(--drm-ink);
  outline: none;
  border-radius: 0;
}
.drm-form input:focus,
.drm-form select:focus {
  border-color: var(--drm-violet);
  box-shadow: 0 0 0 3px #7d52ff1b;
}
.drm-form-wide {
  grid-column: 1/-1;
}
.form-consent {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 4px;
}
.form-consent label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
}
.form-consent input {
  width: 17px;
  height: 17px;
  accent-color: var(--drm-violet);
}
.form-consent button {
  border: 0;
  border-bottom: 1px solid;
  background: none;
  padding: 4px 0;
  cursor: pointer;
  font-size: 10px;
}
.drm-submit {
  grid-column: 1/-1;
  min-height: 62px;
  border: 0;
  background: linear-gradient(90deg, var(--drm-violet), #536bff);
  color: #fff;
  cursor: pointer;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 900;
}
.drm-submit span {
  font-size: 19px;
}
.drm-submit:disabled {
  opacity: 0.65;
  cursor: wait;
}
.drm-form-note {
  grid-column: 1/-1;
  margin: 0;
  color: #747a8c;
  text-align: center;
  font-size: 9px;
  line-height: 1.6;
}
.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
}
.form-status {
  grid-column: 1/-1;
  margin: 0;
  text-align: center;
  color: #18815f;
  font-size: 10px;
  font-weight: 800;
}
.form-status:empty {
  display: none;
}
.form-status.is-error {
  color: #bd2c4a;
}
.drm-faq {
  padding: 110px clamp(35px, 6vw, 90px) 120px;
  background: #f4f5f9;
}
.drm-faq-head {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: end;
  margin: 48px 0;
}
.drm-faq-head > p {
  margin: 0;
  color: var(--drm-muted);
  font-size: 13px;
  line-height: 1.8;
}
.drm-faq-list {
  margin-left: 20%;
  border-top: 1px solid #9aa1b5;
}
.drm-faq details {
  border-bottom: 1px solid #c9ceda;
}
.drm-faq summary {
  min-height: 84px;
  cursor: pointer;
  list-style: none;
  display: grid;
  grid-template-columns: 45px 1fr 30px;
  align-items: center;
  gap: 18px;
  font-size: 16px;
  font-weight: 800;
}
.drm-faq summary::-webkit-details-marker {
  display: none;
}
.drm-faq summary span {
  color: var(--drm-violet);
  font-size: 9px;
}
.drm-faq summary b {
  font-size: 20px;
  transition: 0.18s;
}
.drm-faq details[open] summary b {
  transform: rotate(45deg);
}
.drm-faq details > p {
  margin: -5px 35px 30px 63px;
  color: #62697b;
  font-size: 13px;
  line-height: 1.9;
}
.drm-warning {
  padding: 34px clamp(35px, 6vw, 90px);
  background: #ff6f91;
  color: #fff;
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 60px;
  align-items: center;
}
.drm-warning strong {
  font-size: 20px;
}
.drm-warning p {
  margin: 0;
  font-size: 11px;
  line-height: 1.7;
}
.modal-backdrop {
  z-index: 1000;
  position: fixed;
  inset: 0;
  background: #030616e6;
  backdrop-filter: blur(9px);
  display: grid;
  place-items: center;
  padding: 20px;
}
.modal-backdrop[hidden] {
  display: none !important;
}
.terms-modal,
.success-modal {
  width: min(510px, 100%);
  max-height: calc(100dvh - 40px);
  overflow: auto;
  background: #f7f8fc;
  border: 1px solid #5966aa;
  padding: 42px;
  box-shadow: 0 30px 100px #0009;
  position: relative;
}
.terms-modal > p,
.success-modal > p {
  margin: 0 0 8px;
  color: var(--drm-violet);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.2em;
}
.terms-modal h2,
.success-modal h2 {
  margin: 0;
  font-size: 29px;
  letter-spacing: -0.05em;
}
.terms-modal > div:not(.success-icon) {
  margin: 25px 0;
  padding: 20px;
  background: #eceef6;
  display: grid;
  gap: 7px;
}
.terms-modal > div b {
  margin-top: 8px;
  font-size: 12px;
}
.terms-modal > div span,
.success-modal > span {
  color: #60677c;
  font-size: 13px;
  line-height: 1.7;
}
.modal-close {
  position: absolute;
  right: 13px;
  top: 13px;
  width: 42px;
  height: 42px;
  border: 1px solid #c9cede;
  background: #fff;
  cursor: pointer;
  font-size: 22px;
}
.terms-modal > button:last-child,
.success-modal > button:last-child {
  width: 100%;
  min-height: 54px;
  margin-top: 22px;
  border: 0;
  background: var(--drm-violet);
  color: #fff;
  cursor: pointer;
  font-weight: 900;
}
.success-modal {
  text-align: center;
}
.success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: var(--drm-aqua);
  color: var(--drm-night);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 30px;
  font-weight: 900;
}
.success-modal > span {
  display: block;
  margin-top: 16px;
}
.site-footer {
  margin-left: var(--drm-rail);
  background: #05081b !important;
  color: #cad0e5 !important;
  padding: 62px 0 42px !important;
}
.footer-inner {
  width: min(1120px, calc(100% - 48px));
  margin: auto;
}
.site-footer .brand-word {
  color: #fff;
}
.site-footer .brand-word small {
  color: var(--drm-aqua);
}
.footer-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-bottom: 28px;
}
.footer-topline > p {
  margin: 0;
  color: #8f97b5;
  font-size: 12px;
}
.footer-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  border-block: 1px solid #ffffff20;
  margin-bottom: 28px;
}
.footer-contact-grid > div {
  min-height: 96px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.footer-contact-grid > div + div {
  border-left: 1px solid #ffffff20;
}
.footer-contact-grid span,
.company-info-grid dt {
  color: #6f7898;
  font-size: 10px;
}
.footer-contact-grid b,
.footer-contact-grid a {
  color: #fff;
  font-size: 16px;
}
.company-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #ffffff1a;
  border: 1px solid #ffffff1a;
  margin-bottom: 18px;
}
.company-info-grid dl {
  min-height: 72px;
  margin: 0;
  padding: 14px;
  background: #05081b;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.company-info-grid dl.wide {
  grid-column: span 2;
}
.company-info-grid dd {
  margin: 0;
  color: #dce1ee;
  font-size: 11px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}
.finance-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.finance-info-grid p {
  margin: 0;
  padding: 13px;
  background: #ffffff08;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 11px;
}
.finance-info-grid span {
  color: #727d9f;
}
.finance-info-grid strong {
  color: #fff;
  text-align: right;
  overflow-wrap: anywhere;
}
.footer-disclosure-copy {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 20px;
  border: 1px solid #75edfa38;
  border-radius: 14px;
  background: linear-gradient(135deg, #75edfa0b, #8d75ff0c);
}
.footer-disclosure-copy p {
  margin: 0;
  color: #aeb7d3;
  font-size: 11px;
  line-height: 1.8;
}
.footer-disclosure-copy .footer-loan-terms {
  color: #eafbff;
  font-weight: 750;
}
.site-footer .legal-copy {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid #ffffff20;
}
.site-footer .legal-copy p {
  margin: 0 0 8px;
  color: #8791b0;
  font-size: 10px;
  line-height: 1.75;
}
.footer-bottom {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid #ffffff20;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.footer-bottom p {
  margin: 0;
  font-size: 10px;
}
.footer-bottom nav {
  display: flex;
  gap: 18px;
}
.footer-bottom a,
.footer-bottom button {
  border: 0;
  background: none;
  color: #cad0e5;
  padding: 0;
  font-size: 10px;
  cursor: pointer;
}
.legal-missing {
  color: #75edfa !important;
}
.mobile-quickbar {
  display: none;
}
@media (max-width: 1100px) {
  :root {
    --drm-rail: 205px;
  }
  .drm-rail {
    padding-inline: 22px;
  }
  .drm-hero-panel {
    width: min(650px, 72vw);
  }
  .drm-metric-board {
    grid-template-columns: 1fr 1fr;
  }
  .drm-metric-board article:nth-child(2) {
    border-right: 0;
  }
  .drm-metric-board article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--drm-line);
  }
  .drm-audience-grid {
    grid-template-columns: 1fr 1fr;
  }
  .drm-principles {
    grid-template-columns: 1fr 1fr;
  }
  .drm-principles-intro {
    grid-column: 1/-1;
  }
  .drm-apply {
    grid-template-columns: 330px 1fr;
    gap: 45px;
  }
}
@media (max-width: 760px) {
  :root {
    --drm-rail: 0px;
  }
  body.dreamdaebu-site {
    padding-bottom: calc(66px + env(safe-area-inset-bottom));
  }
  .drm-legal-bar {
    padding: 10px 16px;
    justify-content: flex-start;
    gap: 5px 13px;
    flex-wrap: wrap;
    font-size: 8px;
  }
  .drm-legal-bar strong {
    width: 100%;
    font-size: 10px;
  }
  .drm-legal-bar > a {
    position: absolute;
    right: 16px;
    top: 9px;
  }
  .drm-workspace {
    display: block;
  }
  .drm-rail {
    position: relative;
    height: auto;
    padding: 19px 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-right: 0;
    border-bottom: 1px solid #ffffff20;
  }
  .drm-rail nav,
  .drm-rail-contact span {
    display: none;
  }
  .drm-rail-contact {
    margin: 0;
    padding: 0;
    border: 0;
  }
  .drm-rail-contact a {
    min-height: 40px;
    padding: 0 13px;
    border: 1px solid var(--drm-aqua);
    display: flex;
    align-items: center;
    font-size: 9px;
  }
  .brand-word {
    font-size: 22px;
  }
  .drm-hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    background: #070b22;
  }
  .drm-hero-image {
    position: relative;
    inset: auto;
    order: 2;
    aspect-ratio: 4/3;
  }
  .drm-hero-image:after {
    background: linear-gradient(0deg, #070b2299, #070b2200);
  }
  .drm-hero-image img {
    object-position: center;
  }
  .drm-hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    order: 1;
    width: auto;
    padding: 48px 20px 34px;
    background: #070b22;
    border: 0;
    box-shadow: none;
  }
  .drm-hero-panel h1 {
    font-size: clamp(42px, 12.6vw, 57px);
  }
  .drm-hero-panel > span {
    font-size: 12px;
  }
  .drm-snapshot,
  .drm-guide,
  .drm-audience,
  .drm-faq {
    padding: 78px 20px;
  }
  .drm-snapshot-copy,
  .drm-guide-heading,
  .drm-faq-head {
    display: block;
    margin: 35px 0 42px;
  }
  .drm-snapshot-copy h2,
  .drm-guide-heading h2,
  .drm-audience > h2,
  .drm-principles-intro h2,
  .drm-apply-info h2,
  .drm-faq-head h2 {
    font-size: 35px;
  }
  .drm-snapshot-copy p,
  .drm-guide-heading p,
  .drm-faq-head > p {
    margin-top: 20px;
    font-size: 12px;
  }
  .drm-metric-board {
    grid-template-columns: 1fr;
  }
  .drm-metric-board article {
    min-height: 210px;
    border-right: 0;
    border-bottom: 1px solid var(--drm-line);
  }
  .drm-metric-board article:last-child {
    border-bottom: 0;
  }
  .drm-timeline {
    margin: 0;
  }
  .drm-timeline:before {
    left: 25px;
  }
  .drm-timeline article {
    grid-template-columns: 50px 1fr;
    gap: 18px;
  }
  .drm-timeline i {
    width: 50px;
    height: 42px;
  }
  .drm-timeline h3 {
    font-size: 20px;
  }
  .drm-timeline p {
    font-size: 12px;
  }
  .drm-audience > h2 {
    margin: 35px 0 42px;
  }
  .drm-audience-grid {
    grid-template-columns: 1fr;
  }
  .drm-audience-grid article {
    min-height: 0;
    padding: 28px;
  }
  .drm-audience-grid h3 {
    margin-top: 35px;
  }
  .drm-principles {
    display: block;
    padding: 78px 20px;
  }
  .drm-principles > div {
    padding: 30px;
  }
  .drm-principles h3 {
    margin-bottom: 35px;
  }
  .drm-apply {
    display: block;
    padding: 78px 20px;
  }
  .drm-apply-info {
    position: relative;
    top: auto;
    margin-bottom: 40px;
  }
  .drm-form {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .drm-form-wide,
  .form-consent,
  .drm-submit,
  .drm-form-note,
  .form-status {
    grid-column: 1;
  }
  .drm-form input,
  .drm-form select {
    font-size: 16px;
  }
  .form-consent {
    align-items: flex-start;
  }
  .form-consent button {
    min-width: 44px;
    min-height: 44px;
  }
  .drm-faq-list {
    margin-left: 0;
  }
  .drm-faq summary {
    grid-template-columns: 32px 1fr 24px;
    font-size: 14px;
  }
  .drm-faq details > p {
    margin-left: 50px;
    font-size: 12px;
  }
  .drm-warning {
    display: block;
    padding: 28px 20px;
  }
  .drm-warning strong {
    font-size: 18px;
  }
  .drm-warning p {
    margin-top: 11px;
    font-size: 9px;
  }
  .site-footer {
    margin-left: 0;
    padding: 48px 0 90px !important;
  }
  .footer-inner {
    width: calc(100% - 40px);
  }
  .footer-topline {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-contact-grid > div {
    min-height: 76px;
    padding: 14px 0;
  }
  .footer-contact-grid > div + div {
    border-left: 0;
    border-top: 1px solid #ffffff20;
  }
  .company-info-grid {
    grid-template-columns: 1fr 1fr;
  }
  .company-info-grid dl.wide {
    grid-column: 1/-1;
  }
  .finance-info-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .mobile-quickbar {
    z-index: 100;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: calc(66px + env(safe-area-inset-bottom));
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    background: #070b22;
    border-top: 1px solid #ffffff22;
    display: block;
  }
  .mobile-quickbar > a:first-child {
    display: none;
  }
  .mobile-quickbar .quickbar-main {
    min-height: 50px;
    background: linear-gradient(90deg, var(--drm-violet), #526bff);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 900;
  }
  .terms-modal,
  .success-modal {
    padding: 34px 22px;
  }
}
@media (max-width: 380px) {
  .drm-legal-bar span:nth-of-type(3) {
    display: none;
  }
  .drm-hero-panel {
    padding-inline: 16px;
  }
  .drm-snapshot,
  .drm-guide,
  .drm-audience,
  .drm-faq,
  .drm-principles,
  .drm-apply {
    padding-inline: 16px;
  }
  .drm-form {
    padding: 20px;
  }
  .company-info-grid {
    grid-template-columns: 1fr;
  }
  .company-info-grid dl.wide {
    grid-column: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}

/* v3 transparency dashboard and advisor cutout presentation */
.drm-legal-bar,
.drm-legal-bar span,
.drm-legal-bar > a {
  font-size: 12px;
  line-height: 1.55;
  letter-spacing: 0;
}
.drm-legal-bar strong {
  font-size: 13px;
}
.drm-hero {
  background:
    radial-gradient(circle at 23% 38%, #2834a78a 0 13%, transparent 34%),
    linear-gradient(135deg, #05081b, #10173b 58%, #17114a);
}
.drm-hero-image {
  isolation: isolate;
}
.drm-hero-image:before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(#31d8e80e 1px, transparent 1px),
    linear-gradient(90deg, #31d8e80e 1px, transparent 1px),
    radial-gradient(circle at 70% 25%, #7d52ff42, transparent 28%);
  background-size: 54px 54px, 54px 54px, auto;
  -webkit-mask-image: linear-gradient(90deg, #000, #0008 62%, transparent 92%);
  mask-image: linear-gradient(90deg, #000, #0008 62%, transparent 92%);
}
.drm-hero-image:after {
  z-index: 2;
  background:
    linear-gradient(90deg, #05081b80 0%, transparent 34%, #05081b99 100%),
    linear-gradient(0deg, #05081bd9 0%, transparent 48%);
}
.drm-hero-image img {
  position: absolute;
  z-index: 1;
  left: -4%;
  bottom: -1%;
  width: 82%;
  height: 96%;
  max-width: none;
  object-fit: contain;
  object-position: left bottom;
  filter: drop-shadow(0 28px 38px #0008);
}
.drm-hero-panel {
  width: min(600px, 56vw);
}

.drm-transparency {
  padding: 86px clamp(26px, 5vw, 72px);
  background: #0b1030;
  color: #fff;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 34px 45px;
  border-top: 1px solid #687cff66;
  border-bottom: 8px solid var(--drm-aqua);
}
.drm-transparency > .drm-section-code {
  align-self: start;
  color: #8490b7;
}
.drm-transparency-head > span {
  color: var(--drm-aqua);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}
.drm-transparency-head h2 {
  margin: 16px 0 0;
  max-width: 900px;
  color: #fff;
  font-size: clamp(39px, 4.8vw, 65px);
  font-weight: 860;
  letter-spacing: -0.07em;
  line-height: 1.05;
}
.drm-transparency-head p {
  max-width: 770px;
  margin: 21px 0 0;
  color: #b9c1df;
  font-size: 14px;
  line-height: 1.8;
}
.drm-data-grid {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 0.9fr 0.9fr 1.7fr 0.9fr;
  gap: 1px;
  background: #6b75a55c;
  border: 1px solid #6b75a55c;
}
.drm-data-grid article {
  min-width: 0;
  min-height: 225px;
  padding: 26px;
  background:
    linear-gradient(145deg, #151d49, #0d1335);
  display: flex;
  flex-direction: column;
}
.drm-data-grid article > span {
  color: var(--drm-aqua);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
}
.drm-data-grid article > b {
  margin-top: auto;
  color: #fff;
  font-size: clamp(18px, 1.8vw, 25px);
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.drm-data-grid article > p {
  margin: 12px 0 0;
  color: #aeb7d5;
  font-size: 12px;
  line-height: 1.7;
  overflow-wrap: anywhere;
}
.drm-data-grid .drm-data-example > p {
  color: #d6dcf1;
  font-size: 13px;
}
.drm-transparency .legal-missing {
  color: #8ff5ff !important;
}
.drm-data-warning {
  grid-column: 1/-1;
  padding: 20px 24px;
  background: linear-gradient(90deg, var(--drm-violet), #3346bd);
  border: 1px solid #a9b3ff78;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px 28px;
  flex-wrap: wrap;
}
.drm-data-warning strong {
  font-size: 18px;
}
.drm-data-warning span {
  font-size: 12px;
  line-height: 1.6;
}

.form-consent input:focus-visible + span {
  outline: 3px solid var(--drm-aqua);
  outline-offset: 3px;
}
.drm-submit:disabled,
.drm-submit:disabled:hover {
  opacity: 1;
  cursor: not-allowed;
  background: #515a79;
  color: #fff;
  box-shadow: inset 0 0 0 2px #ffffff40;
}
.finance-info-grid p.wide {
  grid-column: span 2;
  align-items: flex-start;
  flex-direction: column;
}

@media (max-width: 1100px) and (min-width: 761px) {
  .drm-hero-image img {
    left: -10%;
    width: 88%;
  }
  .drm-hero-panel {
    width: min(540px, 57vw);
  }
  .drm-transparency {
    grid-template-columns: 1fr;
  }
  .drm-data-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
	.finance-info-grid p.wide {
	  grid-column: 1;
	}
  .drm-legal-bar,
  .drm-legal-bar span,
  .drm-legal-bar > a {
    font-size: 12px;
    line-height: 1.55;
    letter-spacing: 0;
  }
  .drm-legal-bar strong {
    font-size: 13px;
  }
  .drm-legal-bar > a {
    position: static;
  }
  .drm-hero-panel {
    width: auto;
  }
  .drm-hero-image {
    min-height: 400px;
    aspect-ratio: auto;
    background:
      radial-gradient(circle at 50% 42%, #2834a78c, transparent 58%),
      #070b22;
  }
  .drm-hero-image:before {
    background-size: 34px 34px, 34px 34px, auto;
    -webkit-mask-image: linear-gradient(#000, #000a 70%, transparent);
    mask-image: linear-gradient(#000, #000a 70%, transparent);
  }
  .drm-hero-image img {
    left: 50%;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-position: center bottom;
    transform: translateX(-50%) scale(1.42);
    transform-origin: center bottom;
  }
  .drm-transparency {
    padding: 68px 20px;
    display: block;
  }
  .drm-transparency-head {
    margin-top: 34px;
  }
  .drm-transparency-head p {
    font-size: 13px;
  }
  .drm-data-grid {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }
  .drm-data-grid article {
    min-height: 185px;
    padding: 24px;
  }
  .drm-data-grid article > span,
  .drm-data-grid article > p,
  .drm-data-grid .drm-data-example > p,
  .drm-data-warning span {
    font-size: 12px;
  }
  .drm-data-warning {
    margin-top: 20px;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 380px) {
  .drm-legal-bar span:nth-of-type(3) {
    display: inline;
  }
  .drm-legal-bar {
    gap: 7px 12px;
  }
  .drm-hero-image {
    min-height: 370px;
  }
  .drm-transparency {
    padding-inline: 16px;
  }
}
