:root {
  --wm-ink: #102033;
  --wm-muted: #647286;
  --wm-paper: #f5f8fc;
  --wm-line: #dae4ef;
  --wm-cyan: #28d4de;
  --wm-coral: #ff7168;
  --wm-shadow: 0 20px 50px rgba(16, 32, 51, 0.11);
}

html {
  min-height: 100%;
  font-size: 16px;
}

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background: var(--wm-paper);
  color: var(--wm-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

p,
h1,
h2,
a {
  overflow-wrap: break-word;
}

a {
  color: #146b78;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: #0f5360;
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus,
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(40, 212, 222, 0.38);
  outline-offset: 3px;
  box-shadow: none;
}

.site-main {
  flex: 1 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(218, 228, 239, 0.95);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
}

.site-nav {
  min-height: 72px;
  padding: 0.65rem 0;
}

.site-brand,
.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--wm-ink);
  font-weight: 850;
  letter-spacing: 0;
  text-decoration: none;
}

.site-brand:hover,
.site-footer__brand:hover {
  color: var(--wm-ink);
}

.site-brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(22, 24, 48, 0.16);
}

.site-brand span {
  font-size: 1.08rem;
}

.site-nav .nav-link {
  color: #314155;
  font-weight: 750;
  padding: 0.55rem 0.75rem;
}

.site-nav .nav-link:hover {
  color: var(--wm-ink);
}

.nav-link--support {
  margin-left: 0.25rem;
  border: 1px solid var(--wm-line);
  border-radius: 8px;
  background: #ffffff;
}

.site-nav__toggle {
  border-color: var(--wm-line);
  border-radius: 8px;
}

.site-footer {
  flex-shrink: 0;
  border-top: 1px solid var(--wm-line);
  background: #ffffff;
}

.site-footer__inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.site-footer__brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem 1.15rem;
  color: var(--wm-muted);
  font-size: 0.95rem;
}

.home-hero {
  position: relative;
  isolation: isolate;
  min-height: 570px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(110deg, rgba(9, 17, 30, 0.98) 0%, rgba(18, 30, 52, 0.96) 48%, rgba(59, 39, 70, 0.94) 100%),
    #101621;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(125deg, rgba(40, 212, 222, 0.24), transparent 36%),
    linear-gradient(25deg, transparent 50%, rgba(255, 113, 104, 0.22) 100%),
    repeating-linear-gradient(112deg, rgba(255, 255, 255, 0.085) 0 1px, transparent 1px 92px);
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 38%;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(40, 212, 222, 0.08));
  transform: skewY(-5deg);
  transform-origin: left bottom;
}

.home-hero__inner,
.section-shell {
  width: calc(100% - 2rem);
  max-width: 1120px;
  margin: 0 auto;
}

.home-hero__inner {
  position: relative;
  z-index: 2;
  padding: 5.8rem 0 5.4rem;
}

.home-hero__art {
  position: absolute;
  right: max(2rem, calc((100vw - 1120px) / 2));
  top: 50%;
  width: clamp(280px, 28vw, 430px);
  transform: translateY(-50%);
  opacity: 0.78;
  pointer-events: none;
}

.home-hero__art::before {
  content: "";
  position: absolute;
  inset: 10% -4% -8% 14%;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.12), rgba(40, 212, 222, 0.08));
  transform: rotate(-7deg);
}

.home-hero__art img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 34px 54px rgba(0, 0, 0, 0.46));
}

.home-hero__eyebrow,
.section-kicker {
  margin: 0 0 0.8rem;
  color: var(--wm-cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-hero h1 {
  width: min(100%, 650px);
  margin: 0;
  color: #ffffff;
  font-size: clamp(3.25rem, 6.7vw, 5.15rem);
  line-height: 0.92;
  letter-spacing: 0;
  font-weight: 950;
}

.home-hero__lede {
  width: min(100%, 560px);
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.18rem;
  line-height: 1.65;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1.08rem;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 850;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  color: #0e2033;
  background: #64edf4;
  box-shadow: 0 14px 32px rgba(40, 212, 222, 0.24);
}

.button--primary:hover {
  color: #0e2033;
  background: #83f3f8;
}

.button--secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

.button--secondary:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.16);
}

.button--on-light {
  color: var(--wm-ink);
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.94);
}

.button--on-light:hover {
  color: var(--wm-ink);
  background: #ffffff;
}

.home-hero__note {
  width: fit-content;
  max-width: 100%;
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.96rem;
}

.home-hero__note span {
  font-weight: 800;
}

.home-hero__note a {
  color: #ffffff;
  font-weight: 800;
}

.home-section {
  padding: 4.2rem 0;
}

.home-section--minimal {
  background:
    radial-gradient(circle at 16% 0%, rgba(40, 212, 222, 0.12), transparent 28%),
    #f5f8fc;
}

.home-section--support {
  padding-top: 0;
  background: linear-gradient(180deg, #f5f8fc, #eef5fa);
}

.minimal-panel {
  max-width: 780px;
}

.minimal-panel h2,
.support-panel h2 {
  margin: 0;
  color: var(--wm-ink);
  font-size: clamp(1.9rem, 3vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 950;
}

.minimal-panel p:last-child,
.support-panel p {
  margin: 1rem 0 0;
  color: var(--wm-muted);
  line-height: 1.7;
  font-size: 1.04rem;
}

.support-panel {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  overflow: hidden;
  padding: 2rem;
  border: 1px solid rgba(218, 228, 239, 0.92);
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(120deg, rgba(11, 22, 38, 0.98), rgba(39, 32, 78, 0.96)),
    #101621;
  box-shadow: var(--wm-shadow);
}

.support-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 82% 20%, rgba(40, 212, 222, 0.18), transparent 24%),
    linear-gradient(25deg, transparent 44%, rgba(255, 113, 104, 0.14) 100%);
}

.support-panel h2,
.support-panel p {
  color: #ffffff;
}

.support-panel p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
}

.support-panel__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
}

.support-link {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 900;
}

.support-link:hover {
  color: #9af7fb;
}

.account-delete {
  width: calc(100% - 2rem);
  max-width: 920px;
  margin: 0 auto;
  padding: 2rem 0 4.5rem;
}

.account-delete__hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 1rem 0 1.4rem;
  padding: 2.4rem;
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(120deg, rgba(9, 17, 30, 0.98), rgba(46, 33, 65, 0.96)),
    #101621;
  box-shadow: var(--wm-shadow);
}

.account-delete__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(125deg, rgba(40, 212, 222, 0.18), transparent 36%),
    linear-gradient(25deg, transparent 54%, rgba(255, 113, 104, 0.16) 100%),
    repeating-linear-gradient(112deg, rgba(255, 255, 255, 0.075) 0 1px, transparent 1px 92px);
}

.account-delete__hero h1 {
  max-width: 720px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 950;
}

.account-delete__hero p:last-child {
  max-width: 660px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.7;
}

.account-delete__steps {
  display: grid;
  gap: 0.85rem;
}

.account-delete__step {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1.2rem;
  border: 1px solid var(--wm-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 34px rgba(16, 32, 51, 0.07);
}

.account-delete__step span {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #0e2033;
  background: #64edf4;
  font-weight: 950;
}

.account-delete__step h2,
.account-delete__support h2 {
  margin: 0;
  color: var(--wm-ink);
  font-size: 1.15rem;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: 0;
}

.account-delete__step p,
.account-delete__support p {
  margin: 0.35rem 0 0;
  color: var(--wm-muted);
  line-height: 1.65;
}

.account-delete__support {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1.4rem;
  padding: 1.35rem;
  border: 1px solid var(--wm-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--wm-shadow);
}

.privacy-policy {
  width: calc(100% - 2rem);
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.privacy-policy > section:first-child {
  margin: 1rem 0 2.5rem;
  padding: 2.2rem;
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(120deg, rgba(9, 17, 30, 0.98), rgba(46, 33, 65, 0.96)),
    #101621;
}

.privacy-policy > section:first-child .text-primary,
.privacy-policy > section:first-child .text-muted {
  color: rgba(255, 255, 255, 0.76) !important;
}

.privacy-policy > section:first-child .lead {
  color: rgba(255, 255, 255, 0.86);
}

.privacy-policy section {
  scroll-margin-top: 96px;
}

.privacy-policy h1,
.privacy-policy h2 {
  color: inherit;
  letter-spacing: 0;
}

.privacy-policy h2 {
  margin-bottom: 0.85rem;
}

.privacy-policy p,
.privacy-policy li {
  color: #44546a;
  line-height: 1.72;
}

.privacy-policy strong {
  color: var(--wm-ink);
}

.privacy-policy > section:first-child strong {
  color: #ffffff;
}

@media (max-width: 1099.98px) {
  .home-hero__art {
    right: -5rem;
    width: 430px;
    opacity: 0.22;
  }

  .home-hero__inner {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

@media (max-width: 991.98px) {
  .home-hero {
    min-height: 540px;
  }

  .support-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .site-nav {
    min-height: 66px;
  }

  .site-nav .navbar-nav {
    padding: 0.8rem 0 0.25rem;
  }

  .nav-link--support {
    display: inline-flex;
    width: fit-content;
    margin-left: 0;
    padding-right: 0.95rem;
    padding-left: 0.95rem;
  }

  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__links {
    justify-content: flex-start;
  }

  .home-hero {
    min-height: 500px;
  }

  .home-hero__inner,
  .section-shell,
  .privacy-policy {
    width: calc(100% - 1.5rem);
  }

  .home-hero__inner {
    padding: 3.7rem 0 4rem;
  }

  .home-hero__art {
    display: none;
  }

  .home-hero__lede {
    font-size: 1.05rem;
  }

  .home-section {
    padding: 3rem 0;
  }

  .home-section--support {
    padding-top: 0;
  }

  .support-panel {
    padding: 1.35rem;
  }

  .account-delete {
    width: calc(100% - 1.5rem);
  }

  .account-delete__hero {
    padding: 1.5rem;
  }

  .account-delete__support {
    align-items: stretch;
    flex-direction: column;
  }

  .privacy-policy > section:first-child {
    padding: 1.4rem;
  }
}

@media (max-width: 575.98px) {
  .home-hero__inner,
  .section-shell,
  .account-delete,
  .privacy-policy {
    width: calc(100% - 1.5rem);
    max-width: 350px;
    margin-right: auto;
    margin-left: 0.75rem;
  }

  .home-hero__lede {
    max-width: 340px;
  }

  .home-hero__actions,
  .support-panel__links {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .home-hero h1 {
    font-size: 2.7rem;
  }

  .account-delete__step {
    grid-template-columns: 1fr;
  }
}
