:root {
  --ink: #001d2f;
  --muted: #333333;
  --button: #001b2a;
  --paper: #fff9f4;
  --line: #d6d6d6;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 1120px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  background: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  height: 60px;
  background: #ffffff;
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 166px;
  gap: 0;
  white-space: nowrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 100%;
  color: #5e5e5e;
  font-size: 20px;
  font-weight: 600;
}

.microsoft-mark {
  display: grid;
  grid-template-columns: repeat(2, 10px);
  grid-template-rows: repeat(2, 10px);
  gap: 2px;
  width: 22px;
  height: 22px;
}

.microsoft-mark span:nth-child(1) {
  background: #7fba00;
}

.microsoft-mark span:nth-child(2) {
  background: #f25022;
}

.microsoft-mark span:nth-child(3) {
  background: #ffb900;
}

.microsoft-mark span:nth-child(4) {
  background: #00a4ef;
}

.divider {
  width: 2px;
  height: 24px;
  margin: 0 17px 0 21px;
  background: #272727;
}

.product-name {
  margin-right: 26px;
  color: #000000;
  font-size: 20px;
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  min-width: 480px;
}

.main-nav a {
  color: #000000;
  font-size: 13px;
  line-height: 1;
}

.chevron,
.down {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 4px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 21px;
  margin-left: auto;
  color: #000000;
  font-size: 13px;
}

.search-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.search-icon {
  position: relative;
  display: inline-block;
  width: 17px;
  height: 17px;
}

.search-icon::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  width: 10px;
  height: 10px;
  border: 1.6px solid #000000;
  border-radius: 50%;
}

.search-icon::after {
  content: "";
  position: absolute;
  right: 1px;
  bottom: 1px;
  width: 7px;
  height: 1.6px;
  background: #000000;
  transform: rotate(-48deg);
  transform-origin: left center;
}

.trial-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 31px;
  padding: 0 17px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  background: #000000;
  border-radius: 2px;
}

.signin {
  margin-left: -2px;
}

.profile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 37px;
  color: #111111;
  font: inherit;
  background: transparent;
  border: 1px solid #222222;
  border-radius: 50%;
}

.locale-row {
  display: flex;
  justify-content: flex-end;
  height: 43px;
  padding-right: 14px;
  background: #ffffff;
  border-bottom: 1px solid #f1f1f1;
}

.locale-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 194px;
  height: 39px;
  margin-top: 0;
  padding: 0 13px;
  color: #000000;
  font: 16px "Segoe UI", Arial, sans-serif;
  background: #ffffff;
  border: 2px solid #555555;
}

.locale-select .down {
  margin-left: 0;
  transform: translateY(-3px) rotate(45deg);
}

.hero {
  position: relative;
  min-height: 708px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(244, 231, 221, .36), rgba(255, 249, 244, 0) 20%),
    var(--paper);
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(850px, 80vw);
  margin: 0 auto;
  padding-top: 169px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: #001c2d;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: #001d35;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: 0;
}

.lede {
  margin: 20px 0 0;
  color: #001d35;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
}

sup {
  position: relative;
  top: -0.25em;
  color: #0067b8;
  font-size: 65%;
  line-height: 0;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid var(--button);
  border-radius: 7px;
}

.button-primary {
  color: #ffffff;
  background: var(--button);
}

.button-secondary {
  color: #000000;
  background: #ffffff;
}

.hero-buttons .button-primary {
  width: 164px;
}

.hero-buttons .button-secondary {
  width: 220px;
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.shape {
  position: absolute;
  display: block;
  filter: saturate(1.28);
}

.shape-left-blue {
  left: -74px;
  bottom: -17px;
  width: 497px;
  height: 142px;
  background:
    radial-gradient(ellipse at 75% 18%, rgba(0, 214, 245, .92) 0 18%, rgba(3, 159, 226, .82) 31%, rgba(17, 107, 220, .7) 57%, rgba(7, 70, 167, .22) 82%, transparent 100%),
    linear-gradient(178deg, rgba(133, 243, 255, .95), rgba(17, 137, 216, .76) 45%, rgba(0, 67, 163, .56));
  border-radius: 58% 42% 53% 47% / 48% 49% 51% 52%;
  box-shadow: inset -50px -18px 36px rgba(0, 62, 154, .38), inset 56px 18px 28px rgba(126, 239, 255, .62);
  transform: rotate(-2deg);
  opacity: .95;
}

.shape-left-blue::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -7px;
  width: 254px;
  height: 64px;
  background: linear-gradient(8deg, rgba(0, 64, 160, .88), rgba(77, 216, 255, .78) 45%, rgba(0, 97, 196, .34));
  border-radius: 50%;
  filter: blur(2px);
}

.shape-left-pink {
  left: 411px;
  bottom: -79px;
  width: 249px;
  height: 331px;
  background:
    repeating-linear-gradient(74deg, rgba(170, 99, 173, .13) 0 3px, rgba(255, 255, 255, .18) 3px 7px),
    linear-gradient(137deg, rgba(244, 174, 207, .18) 0%, rgba(235, 146, 188, .56) 45%, rgba(212, 94, 155, .12) 100%);
  clip-path: polygon(21% 2%, 100% 100%, 0% 100%);
  opacity: .62;
  transform: rotate(-3deg);
}

.shape-mid-wave {
  left: 605px;
  bottom: -39px;
  width: 514px;
  height: 104px;
  background:
    linear-gradient(180deg, rgba(110, 202, 246, .18), rgba(35, 128, 219, .78) 52%, rgba(0, 69, 170, .72)),
    radial-gradient(ellipse at 30% 4%, rgba(175, 242, 255, .92), transparent 50%);
  border-radius: 47% 53% 39% 61% / 56% 42% 58% 44%;
  box-shadow: inset 28px 24px 26px rgba(167, 241, 255, .38), inset -78px -18px 24px rgba(0, 62, 148, .4);
  transform: rotate(-3deg);
  opacity: .83;
}

.shape-right-blue {
  right: 97px;
  bottom: 129px;
  width: 610px;
  height: 250px;
  background:
    radial-gradient(ellipse at 42% 25%, rgba(99, 203, 255, .95), rgba(43, 151, 237, .91) 40%, rgba(0, 84, 216, .85) 65%, rgba(0, 52, 176, .55) 100%),
    linear-gradient(135deg, rgba(164, 232, 255, .86), rgba(13, 112, 229, .88));
  border-radius: 68% 32% 38% 62% / 52% 39% 61% 48%;
  box-shadow: inset 25px 18px 16px rgba(175, 235, 255, .45), inset -48px -30px 26px rgba(0, 48, 166, .42), 8px 16px 20px rgba(69, 107, 189, .12);
  transform: rotate(-6deg);
  opacity: .87;
}

.shape-right-blue::before {
  content: "";
  position: absolute;
  left: 54%;
  top: 5%;
  width: 46%;
  height: 92%;
  background: rgba(3, 63, 183, .38);
  border-radius: 72% 28% 38% 62% / 51% 42% 58% 49%;
  box-shadow: inset 26px 10px 18px rgba(130, 211, 255, .36);
  transform: rotate(6deg);
}

.shape-right-blue::after {
  content: "";
  position: absolute;
  left: 12%;
  top: 18%;
  width: 82%;
  height: 22%;
  background: rgba(157, 224, 255, .19);
  border-radius: 50%;
  filter: blur(7px);
}

.shape-right-purple {
  right: -65px;
  bottom: -92px;
  width: 742px;
  height: 190px;
  background:
    repeating-linear-gradient(4deg, rgba(79, 73, 191, .16) 0 3px, rgba(255, 255, 255, .18) 3px 8px),
    linear-gradient(170deg, rgba(229, 206, 255, .8), rgba(141, 103, 220, .67) 48%, rgba(71, 76, 186, .36));
  border-radius: 54% 46% 43% 57% / 64% 48% 52% 36%;
  transform: rotate(7deg);
  opacity: .74;
}

.audience-tabs {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 123px;
  display: grid;
  grid-template-columns: 260px 230px 297px 202px;
  align-items: center;
  width: 1065px;
  min-height: 89px;
  padding: 7px 10px;
  color: #000000;
  background: #ffffff;
  border-radius: 48px;
  transform: translateX(-50%);
}

.audience-tabs a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  font-size: 14px;
  font-weight: 700;
}

.audience-tabs .active {
  color: #ffffff;
  background: var(--button);
  border-radius: 38px;
}

.arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 15px;
  border-top: 1.6px solid currentColor;
  border-right: 1.6px solid currentColor;
  transform: rotate(45deg);
}

.section-nav {
  height: 58px;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.section-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1336px, calc(100vw - 320px));
  height: 100%;
  margin: 0 auto;
}

.section-links {
  display: flex;
  align-items: center;
  gap: 45px;
  height: 100%;
}

.section-links a {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  color: #0b1520;
  font-size: 14px;
  font-weight: 600;
}

.section-links .selected::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: #233c62;
  border-radius: 2px 2px 0 0;
}

.section-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.button.small {
  min-height: 37px;
  padding: 0 15px;
  font-size: 14px;
  border-radius: 7px;
}

.after-space {
  height: 113px;
  background: #ffffff;
}

.feedback {
  position: fixed;
  left: 20px;
  bottom: 36px;
  z-index: 10;
  width: 98px;
  height: 48px;
  color: #ffffff;
  font: 16px "Segoe UI", Arial, sans-serif;
  background: var(--button);
  border: 0;
  border-radius: 7px;
}

@media (max-width: 1280px) {
  html {
    min-width: 0;
  }

  .header-inner {
    padding: 0 24px;
  }

  .main-nav,
  .search-link span:first-child,
  .signin {
    display: none;
  }

  .hero-copy {
    padding-top: 120px;
  }

  h1 {
    font-size: clamp(34px, 6vw, 48px);
  }

  .audience-tabs {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    border-radius: 24px;
  }

  .audience-tabs a {
    min-height: 52px;
  }

  .audience-tabs .active {
    border-radius: 18px;
  }

  .section-nav-inner {
    width: calc(100% - 32px);
  }

  .section-links {
    gap: 22px;
    overflow: hidden;
  }
}

.login-page {
  min-height: 100vh;
  color: #1b1b1b;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 42% 36%, rgba(255, 255, 255, .78) 0 12%, rgba(255, 255, 255, 0) 26%),
    linear-gradient(115deg, rgba(229, 243, 248, .92) 0 23%, rgba(248, 247, 251, .86) 42%, rgba(246, 241, 248, .92) 100%);
  overflow: hidden;
}

.login-page::before,
.login-page::after {
  content: "";
  position: fixed;
  z-index: -2;
  display: block;
  pointer-events: none;
}

.login-page::before {
  left: 33px;
  bottom: -140px;
  width: 870px;
  height: 470px;
  background: linear-gradient(135deg, rgba(219, 244, 250, .8), rgba(254, 253, 255, .78));
  border: 2px solid rgba(255, 255, 255, .72);
  border-radius: 23px;
  box-shadow: 0 0 0 1px rgba(189, 231, 245, .32), 20px 24px 90px rgba(171, 189, 211, .14);
  transform: rotate(-17deg);
}

.login-page::after {
  right: -88px;
  top: -188px;
  width: 780px;
  height: 360px;
  background: linear-gradient(152deg, rgba(246, 246, 255, .72), rgba(236, 244, 250, .44));
  border: 2px solid rgba(204, 230, 251, .48);
  border-radius: 22px;
  transform: rotate(-10deg);
}

.login-shell {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding-top: 1px;
}

.login-shell::before,
.login-shell::after {
  content: "";
  position: fixed;
  z-index: -1;
  pointer-events: none;
}

.login-shell::before {
  top: -68px;
  left: 560px;
  width: 405px;
  height: 745px;
  background: linear-gradient(160deg, rgba(235, 246, 250, .82), rgba(255, 253, 255, .62));
  border-right: 4px solid rgba(210, 231, 253, .68);
  border-radius: 30px;
  transform: rotate(-22deg);
}

.login-shell::after {
  right: 323px;
  bottom: 160px;
  width: 565px;
  height: 285px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .86), rgba(246, 252, 254, .76));
  border-top: 2px solid rgba(255, 255, 255, .8);
  border-radius: 22px;
  box-shadow: 0 -1px 0 rgba(226, 249, 244, .9);
  transform: rotate(15deg);
}

.signin-card {
  width: 440px;
  min-height: 340px;
  padding: 41px 44px 42px;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .18);
}

.demo-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 24px;
  margin-bottom: 20px;
  color: #5e5e5e;
  font-size: 21px;
  font-weight: 600;
}

.demo-mark {
  display: grid;
  grid-template-columns: repeat(2, 10px);
  grid-template-rows: repeat(2, 10px);
  gap: 2px;
  width: 22px;
  height: 22px;
}

.demo-mark span:nth-child(1) {
  background: #7fba00;
}

.demo-mark span:nth-child(2) {
  background: #f25022;
}

.demo-mark span:nth-child(3) {
  background: #ffb900;
}

.demo-mark span:nth-child(4) {
  background: #00a4ef;
}

.login-step {
  display: none;
}

.login-step.is-active {
  display: block;
}

.login-step h1 {
  margin: 0 0 18px;
  color: #1b1b1b;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
}

.demo-notice {
  margin: -9px 0 11px;
  color: #666666;
  font-size: 12px;
  line-height: 1.35;
}

.login-field {
  display: block;
  width: 100%;
}

.login-field input {
  display: block;
  width: 100%;
  height: 32px;
  padding: 3px 0 6px;
  color: #1b1b1b;
  font: 15px "Segoe UI", Arial, Helvetica, sans-serif;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #0067b8;
  border-radius: 0;
  outline: 0;
}

.login-field input::placeholder {
  color: #6b6b6b;
  opacity: 1;
}

.login-field input:focus {
  border-bottom-width: 1px;
}

.password-error:not([hidden]) + .login-field input {
  border-bottom-color: #e81123;
}

.login-small {
  margin: 17px 0 0;
  color: #333333;
  font-size: 12px;
  line-height: 1.35;
}

.login-small a,
.login-link-row a {
  color: #0067b8;
}

.login-link-row {
  margin: 20px 0 0;
  font-size: 12px;
  line-height: 1.35;
}

.login-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
}

.ms-blue-button {
  min-width: 108px;
  height: 32px;
  padding: 0 12px 2px;
  color: #ffffff;
  font: 14px "Segoe UI", Arial, Helvetica, sans-serif;
  background: #0067b8;
  border: 1px solid #0067b8;
  border-radius: 0;
}

.ms-blue-button:hover,
.ms-blue-button:focus-visible {
  background: #005da6;
  border-color: #005da6;
}

.account-line {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  margin: -2px 0 16px;
  padding: 0;
  color: #1b1b1b;
  font: 14px "Segoe UI", Arial, Helvetica, sans-serif;
  text-align: left;
  background: transparent;
  border: 0;
}

.back-arrow {
  margin-right: 8px;
  color: #5e5e5e;
  font-size: 20px;
  line-height: 1;
}

#shownEmail {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.password-error {
  margin: -2px 0 8px;
  color: #e81123;
  font-size: 14px;
  line-height: 1.42;
}

.locked-step {
  min-height: 214px;
  padding-top: 26px;
}

.locked-step h1 {
  margin-bottom: 18px;
  color: #1b1b1b;
}

.locked-step p {
  margin: 0;
  color: #1b1b1b;
  font-size: 17px;
  line-height: 1.45;
}


.signin-options {
  display: flex;
  align-items: center;
  width: 440px;
  height: 49px;
  margin-top: 20px;
  padding: 0 48px;
  color: #1b1b1b;
  font: 15px "Segoe UI", Arial, Helvetica, sans-serif;
  text-align: left;
  background: #ffffff;
  border: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .18);
}

.key-icon {
  position: relative;
  width: 22px;
  height: 22px;
  margin-right: 19px;
}

.key-icon::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 3px;
  width: 11px;
  height: 11px;
  border: 1.6px solid #333333;
  border-radius: 50%;
}

.key-icon::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 13px;
  width: 11px;
  height: 1.7px;
  background: #333333;
  box-shadow: 6px 4px 0 -1px #333333, 3px 4px 0 -1px #333333;
  transform: rotate(45deg);
  transform-origin: left center;
}

.login-footer {
  position: fixed;
  right: 8px;
  bottom: 7px;
  display: flex;
  align-items: center;
  gap: 24px;
  color: #000000;
  font-size: 12px;
}

.login-footer button {
  width: 24px;
  height: 18px;
  padding: 0;
  color: #000000;
  font: 18px/1 "Segoe UI", Arial, Helvetica, sans-serif;
  background: transparent;
  border: 0;
  letter-spacing: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 640px) {
  .login-page {
    overflow: auto;
    background: #ffffff;
  }

  .login-page::before,
  .login-page::after,
  .login-shell::before,
  .login-shell::after {
    display: none;
  }

  .login-shell {
    justify-content: flex-start;
    min-height: calc(100vh - 46px);
    padding: 24px;
  }

  .signin-card,
  .signin-options {
    width: 100%;
    box-shadow: none;
  }

  .signin-card {
    padding: 0;
    min-height: 0;
  }

  .signin-options {
    margin-top: 34px;
    padding: 0;
  }

  .login-footer {
    position: static;
    justify-content: flex-end;
    padding: 0 12px 8px;
  }
}
