:root {
  color-scheme: light;
  --ink: #070b2f;
  --muted: #9aa2b5;
  --page: #ffffff;
  --chrome-dark: #182130;
  --chrome-mid: #2b3546;
  --chrome-line: #3a465a;
  --orange: #f7931e;
  --blue: #2377eb;
  --shadow: 0 28px 70px rgba(20, 31, 54, 0.18);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  background: var(--page);
  color: var(--ink);
  font: 17px/1.45 Arial, Helvetica, sans-serif;
}

.mock-brand img,
.active-tab img,
.menu-row img,
.pinned-extension img {
  border-radius: 7px;
}

.page {
  width: min(1480px, calc(100% - 36px));
  margin: 0 auto;
  padding: 22px 0 72px;
}

.intro {
  display: none;
  text-align: center;
}

h1 {
  width: min(850px, 100%);
  margin: 0 auto 34px;
  font-size: 48px;
  line-height: 1.18;
  letter-spacing: 0;
}

.intro p,
.step-copy {
  margin: 0 0 14px;
  color: #000;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}

.browser-shot {
  margin: 0 auto;
}

.chrome-frame {
  position: relative;
  width: min(1498px, calc(100vw - 104px));
  height: min(884px, calc(100vh - 80px));
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
  background: #f8faff;
  box-shadow: var(--shadow);
}

.first-shot {
  display: block;
  padding: 0;
}

.first-screen-art {
  display: block;
  width: min(1040px, 100%);
  margin: 0 auto;
  max-height: 58vh;
  object-fit: contain;
}

.second-screen-art {
  display: block;
  width: min(1480px, 100%);
  margin: 0 auto;
  object-fit: contain;
}

.chrome-titlebar {
  height: 94px;
  display: grid;
  grid-template-columns: 154px minmax(500px, 1fr) 64px 104px;
  align-items: end;
  gap: 18px;
  padding: 16px 28px 0;
  background: var(--chrome-dark);
}

.traffic {
  align-self: center;
  display: flex;
  gap: 18px;
  padding-left: 0;
}

.traffic span {
  width: 25px;
  height: 25px;
  border-radius: 50%;
}

.traffic span:nth-child(1) {
  background: #ff5f57;
}

.traffic span:nth-child(2) {
  background: #ffbd2e;
}

.traffic span:nth-child(3) {
  background: #28c840;
}

.active-tab {
  min-width: 0;
  height: 78px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 32px;
  gap: 20px;
  align-items: center;
  padding: 0 26px;
  border-radius: 18px 18px 0 0;
  background: #253044;
  color: #cbd4e1;
  font-size: 28px;
}

.active-tab img {
  width: 40px;
  height: 40px;
}

.active-tab span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.active-tab b {
  color: #8d98aa;
  font-size: 30px;
  font-weight: 400;
}

.new-tab,
.window-menu {
  color: #b7c0cf;
  align-self: center;
  text-align: center;
  font-size: 42px;
}

.window-menu {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  justify-self: end;
  border-radius: 18px;
  background: #344057;
}

.chrome-toolbar {
  height: 96px;
  display: grid;
  grid-template-columns: 48px 48px 58px minmax(0, 1fr) 70px 70px 32px;
  gap: 16px;
  align-items: center;
  padding: 0 28px;
  background: var(--chrome-mid);
  color: #cad4e4;
}

.nav-arrow,
.reload,
.kebab {
  text-align: center;
  font-size: 52px;
  line-height: 1;
}

.reload {
  font-size: 42px;
}

.address {
  min-width: 0;
  height: 62px;
  display: flex;
  align-items: center;
  gap: 18px;
  overflow: hidden;
  padding: 0 26px;
  border-radius: 999px;
  background: #3a4558;
  color: #cbd4e1;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 30px;
}

.address span {
  width: 41px;
  height: 41px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid #cbd4e1;
  font-size: 24px;
  font-weight: 700;
}

.extension-button,
.pinned-extension,
.profile,
.side-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
}

.extension-button svg {
  width: 44px;
  height: 44px;
  color: #cbd4e1;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.extension-button.small svg {
  width: 38px;
  height: 38px;
}

.profile {
  border-radius: 50%;
  background: #1497d6;
  color: #fff;
  font-size: 34px;
  font-weight: 800;
}

.side-icon {
  display: none;
}

.site-mock {
  position: absolute;
  inset: 190px 0 0;
  overflow: hidden;
  background: #fff;
}

.mock-header {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
}

.mock-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
}

.mock-actions {
  display: flex;
  gap: 18px;
}

.mock-actions span {
  width: 30px;
  height: 4px;
  border-radius: 999px;
  background: #1f2a44;
}

.site-mock h2 {
  margin: 118px 0 10px;
  text-align: center;
  font-size: 44px;
  line-height: 1.1;
}

.site-mock p {
  margin: 0;
  color: #a4adbd;
  text-align: center;
  font-size: 16px;
  font-weight: 800;
}

.extensions-menu {
  position: absolute;
  z-index: 4;
  top: 190px;
  right: 236px;
  width: 884px;
  padding-top: 72px;
  border: 1px solid #2a3038;
  border-radius: 24px;
  background: #191d22;
  color: #f2f5fa;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.35);
}

.menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 56px 56px;
  font-size: 42px;
  font-weight: 700;
}

.menu-head b {
  color: #c7ced8;
  font-size: 58px;
  font-weight: 400;
}

.extensions-menu > strong {
  display: block;
  padding: 0 56px;
  font-size: 32px;
  font-weight: 700;
}

.extensions-menu > p {
  width: 560px;
  margin: 24px 0 72px;
  padding: 0 56px;
  color: #d2d8e2;
  font-size: 32px;
  line-height: 1.6;
}

.menu-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 68px 56px;
  gap: 38px;
  align-items: center;
  min-height: 98px;
  padding: 0 56px;
  color: #f2f5fa;
  font-size: 36px;
}

.menu-row img {
  width: 72px;
  height: 72px;
  border-radius: 14px;
}

.menu-row span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.menu-row button {
  width: 68px;
  height: 76px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #d2d8e2;
}

.menu-row svg {
  width: 40px;
  height: 40px;
  fill: #d2d8e2;
}

.menu-row .more-button {
  width: 56px;
  font-size: 52px;
  line-height: 1;
}

.manage {
  display: flex;
  gap: 34px;
  align-items: center;
  min-height: 116px;
  margin-top: 70px;
  padding: 0 56px;
  border-top: 1px solid #2b3139;
  color: #d2d8e2;
  font-size: 36px;
}

.manage svg {
  width: 54px;
  height: 54px;
  fill: #d2d8e2;
}

.number {
  position: absolute;
  z-index: 6;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #11172a;
  font-size: 44px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(247, 147, 30, 0.38);
}

.number-one {
  right: 438px;
  top: 286px;
}

.number-two {
  right: 250px;
  top: 542px;
}

.number-three {
  right: 130px;
  top: 85px;
}

.arrow {
  position: absolute;
  z-index: 5;
  width: 260px;
  height: 150px;
  fill: none;
  stroke: var(--orange);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 14;
  filter: drop-shadow(0 3px 0 rgba(112, 92, 0, 0.18));
}

.arrow-one {
  right: 238px;
  top: 188px;
}

.arrow-two {
  right: 332px;
  top: 568px;
}

.step-copy {
  margin: 22px 0 12px;
}

.compact-frame {
  height: 255px;
}

.password-page {
  position: absolute;
  inset: 84px 0 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 120%, rgba(37, 119, 235, 0.12), transparent 34%),
    #fff;
}

.password-card {
  width: min(470px, calc(100% - 56px));
  padding: 26px;
  border: 1px solid #dfe5ef;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(20, 31, 54, 0.08);
}

.password-card label {
  display: block;
  margin-bottom: 10px;
  color: #737f92;
  font-size: 14px;
  font-weight: 800;
}

.password-field {
  min-height: 52px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 0 12px;
  border: 1px solid #d7dfeb;
  border-radius: 8px;
}

.password-field span {
  overflow: hidden;
  white-space: nowrap;
  letter-spacing: 0;
  font-size: 22px;
}

.password-field button {
  border: 0;
  border-radius: 7px;
  padding: 8px 12px;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
}

.pinned-extension {
  position: relative;
  border-radius: 8px;
  outline: 3px solid rgba(255, 212, 0, 0.62);
}

.arrow-three {
  right: 83px;
  top: 34px;
}

@media (max-width: 760px) {
  .site-header {
    height: auto;
    justify-content: space-between;
    padding: 18px 0;
  }

  .site-header nav {
    display: none;
  }

  .page {
    width: min(100% - 24px, 560px);
    padding-top: 28px;
  }

  h1 {
    font-size: 34px;
  }

  .intro p,
  .step-copy {
    font-size: 18px;
  }

  .chrome-frame {
    height: 360px;
  }

  .chrome-titlebar {
    grid-template-columns: 50px minmax(110px, 1fr) 26px 28px;
  }

  .chrome-toolbar {
    grid-template-columns: 18px 18px minmax(0, 1fr) 28px 24px;
    gap: 6px;
  }

  .reload {
    display: none;
  }

  .extensions-menu {
    right: 18px;
    width: min(272px, calc(100% - 36px));
  }

  .number-one {
    right: 88px;
    top: 104px;
  }

  .number-two {
    right: 20px;
    top: 258px;
  }

  .arrow-one,
  .arrow-two {
    display: none;
  }

  .site-mock h2 {
    margin-top: 150px;
    font-size: 34px;
  }

  .compact-frame {
    height: 280px;
  }

  .number-three {
    right: 76px;
  }

  .arrow-three {
    display: none;
  }
}
