:root {
  color-scheme: dark;
  --bg: #16161a;
  --bg-soft: #1c1c22;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-2: rgba(255, 255, 255, 0.08);
  --text: #fffffe;
  --muted: rgba(255, 255, 255, 0.6);
  --soft: rgba(255, 255, 255, 0.85);
  --line: #000000;
  --brand: #ff8906;
  --brand-2: #f25f4c;
  --accent: #e53170;
  --danger: #ef4444;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.7);
  --radius: 16px;
  --radius-lg: 24px;
  --max: 1160px;
  --font:
    "Cairo", "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont,
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.65;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--text);
  color: var(--bg);
  border-radius: var(--radius);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  height: 80px;
  display: flex;
  align-items: center;
}

.nav {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  letter-spacing: -0.05em;
  white-space: nowrap;
  text-transform: none;
  font-size: 1.25rem;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--text);
  color: var(--bg);
  font-weight: 900;
  position: relative;
}

.brand-logo {
  height: 40px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 8px 0;
  color: var(--soft);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  transition: color 0.18s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--text);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  margin: 0 auto;
  content: "";
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.menu-toggle span::before {
  transform: translateY(-6px);
}

.menu-toggle span::after {
  transform: translateY(4px);
}

.menu-open .menu-toggle span {
  transform: rotate(45deg);
}

.menu-open .menu-toggle span::before {
  opacity: 0;
}

.menu-open .menu-toggle span::after {
  transform: translateY(-2px) rotate(-90deg);
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 8px 20px;
  border: 1px solid transparent;
  border-radius: 9999px;
  background: var(--panel);
  color: var(--text);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition:
    opacity 0.18s ease,
    background 0.18s ease;
}

.btn:hover {
  opacity: 0.9;
}

.btn.primary {
  background: var(--brand);
  color: #000000;
}

.btn.accent {
  background: var(--brand-2);
  color: #fffffe;
}

.btn.tertiary {
  background: var(--accent);
  color: #fffffe;
}

.btn.ghost {
  border: 1px solid var(--text);
  background: transparent;
  color: var(--text);
}

.btn.small {
  min-height: 38px;
  padding: 8px 16px;
  font-size: 0.7rem;
}

.btn.full {
  width: 100%;
}

.page {
  min-height: calc(100vh - 80px);
}

.section {
  padding: 88px 0;
}

.section.tight {
  padding: 56px 0;
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 80px);
  display: grid;
  align-items: center;
  padding: 74px 0 38px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: 48px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.dot {
  display: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.85;
  letter-spacing: -0.05em;
  font-weight: 900;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  font-weight: 900;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 700;
}

.lead {
  max-width: 720px;
  color: var(--soft);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
}

.muted {
  color: var(--muted);
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.trust-item {
  min-height: auto;
  padding: 0;
  border: none;
  background: transparent;
}

.trust-item strong {
  display: block;
  font-size: 0.625rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  margin-bottom: 4px;
}

.trust-item span {
  display: block;
  margin-top: 0;
  color: var(--brand);
  font-size: 0.875rem;
  line-height: 1.35;
  font-weight: 500;
}

.device-stage {
  position: relative;
  min-height: 610px;
  display: grid;
  align-items: center;
  justify-items: center;
}

.desktop-window {
  width: min(100%, 560px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.window-bar {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}

.window-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.05em;
}

.window-dots {
  display: flex;
  gap: 8px;
}

.window-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.window-dots span:nth-child(2) {
  background: rgba(255, 255, 255, 0.4);
}

.window-dots span:nth-child(3) {
  background: rgba(255, 255, 255, 0.6);
}

.tool-ui {
  padding: 32px;
}

.device-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.phone-icon {
  width: 52px;
  height: 86px;
  border: 3px solid var(--text);
  border-radius: 12px;
  background: var(--bg);
  position: relative;
}

.phone-icon::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 16px;
  height: 3px;
  border-radius: 999px;
  background: var(--muted);
  transform: translateX(-50%);
}

.progress {
  height: 4px;
  border-radius: 999px;
  background: var(--line);
  overflow: hidden;
  margin-top: 12px;
}

.progress span {
  display: block;
  width: 98%;
  height: 100%;
  background: var(--text);
}

.tool-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.metric {
  padding: 0;
  border: none;
  background: transparent;
}

.metric b {
  display: block;
  color: var(--muted);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 4px;
}

.metric span {
  color: var(--brand);
  font-size: 0.875rem;
}

.log-list {
  display: grid;
  gap: 16px;
}

.log-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  background: transparent;
  color: var(--text);
  font-size: 0.875rem;
}

.log-list div::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

.log-list div:not(:first-child)::before {
  background: transparent;
  border: 1px solid var(--muted);
}

.log-list div:not(:first-child) {
  /* removed opacity */
}

.log-list div:nth-child(1)::before {
  background: #3b82f6; /* Blue dot */
  border: none;
}

.log-list div:nth-child(2)::before {
  background: transparent;
  border: 1px solid #068c00; /* Green ring */
}

.log-list div:nth-child(3)::before {
  background: transparent;
  border: 1px solid #009cff; /* Blue ring */
}

.iphone-shell {
  display: none;
}

.iphone-screen {
  display: none;
}

.screen-lock {
  display: none;
}

.screen-title {
  display: none;
}

.screen-sub {
  display: none;
}

.screen-checks {
  display: none;
}

.band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}

.section-head {
  max-width: 760px;
  margin-bottom: 48px;
}

.grid {
  display: grid;
  gap: 32px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  transition: background 0.2s ease;
}

.card:hover {
  background: var(--panel-2);
}

.card.highlight {
  border-color: var(--line);
  background: var(--panel-2);
}

.card-image-wrapper {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  overflow: hidden;
  background: transparent;
  padding: 0;
  border: none;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .card-image {
  transform: scale(1.05);
}

.icon {
  width: auto;
  height: auto;
  display: block;
  margin-bottom: 16px;
  background: transparent;
  color: var(--brand);
  font-weight: 700;
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--soft);
  font-size: 0.875rem;
}

.list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

.device-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: var(--soft);
  font-size: 0.875rem;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 16px;
}

.step {
  counter-increment: step;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
}

.step::before {
  content: "0" counter(step) ".";
  color: var(--brand);
  font-weight: 700;
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 4px;
}

.form-panel {
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg);
  box-shadow: none;
}

.field {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.field label {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 56px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--text);
  outline: none;
}

.field textarea {
  resize: vertical;
  min-height: 160px;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--text);
}

.hint {
  color: var(--muted);
  font-size: 0.875rem;
}

.notice {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--text);
}

.success {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--text);
}

.error {
  padding: 24px;
  border: 1px solid var(--danger);
  border-radius: var(--radius);
  background: rgba(239, 68, 68, 0.1);
  color: var(--danger);
}

.drop-zone {
  min-height: 240px;
  display: grid;
  place-items: center;
  padding: 32px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  text-align: center;
}

.drop-zone.dragover {
  background: var(--panel-2);
  border-color: var(--text);
}

.drop-zone input {
  display: none;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.post-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
}

.post-card.featured {
  grid-column: 1 / -1;
  background: var(--panel-2);
}

.post-meta {
  color: var(--muted);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.article {
  max-width: 820px;
}

.article h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
}

.article h2 {
  margin-top: 64px;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.article p,
.article li {
  color: var(--soft);
}

.article a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 0.875rem;
}

.breadcrumbs a {
  color: var(--text);
}

.cta-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
}

.site-footer {
  padding: 48px 0;
  background: var(--text);
  color: var(--bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 32px;
}

.footer-title {
  margin-bottom: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links a {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--bg);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.5);
  font-size: 0.875rem;
  font-weight: 600;
}

@media (max-width: 980px) {
  .hero-grid,
  .grid.two,
  .blog-grid,
  .cta-strip {
    grid-template-columns: 1fr;
  }

  .grid.three,
  .grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .device-stage {
    min-height: 520px;
  }
}

@media (max-width: 780px) {
  .nav {
    min-height: 64px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: fixed;
    inset: 80px 0 auto 0;
    display: none;
    min-height: calc(100vh - 80px);
    padding: 32px 24px;
    background: var(--bg);
    border-top: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-open .nav-links {
    display: flex;
  }

  .nav-links a {
    min-height: 50px;
    font-size: 1.25rem;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 58px 0 30px;
  }

  .trust-row,
  .tool-metrics {
    grid-template-columns: 1fr;
  }

  .device-stage {
    min-height: auto;
    padding-bottom: 0;
  }

  .desktop-window {
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }
}

@media (max-width: 560px) {
  .container,
  .nav {
    width: min(100% - 24px, var(--max));
  }

  h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .grid.three,
  .grid.four,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .inline-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .device-card {
    grid-template-columns: 1fr;
  }

  .tool-ui {
    padding: 24px;
  }

  .step {
    grid-template-columns: 1fr;
  }

  .step::before {
    margin-bottom: 8px;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

/* Focus Mode Styles */
main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > h1:nth-of-type(1) {
  font-size: 53.8px;
  line-height: 76.48px;
}

/* Removed fixed width to fix the box shape */

main#main:nth-of-type(1)
  > section:nth-of-type(2)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > h2:nth-of-type(1) {
  font-size: 42px;
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > span:nth-of-type(3) {
  background-color: #ff4b4b;
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > span:nth-of-type(2) {
  background-color: #77ff4a;
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > span:nth-of-type(1) {
  background-color: #4dc1ff;
}

#hero-register-btn {
  color: #4dff6f;
  border-color: #61ff91;
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(2)
  > strong:nth-of-type(1) {
  color: #ffffff;
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(1)
  > strong:nth-of-type(1) {
  color: #ffffff;
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(3)
  > strong:nth-of-type(1) {
  color: #ffffff;
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(1)
  > div:nth-of-type(2) {
  background-color: #c0c0c0;
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > strong:nth-of-type(1) {
  color: #000000;
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > p:nth-of-type(1) {
  color: #000000;
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(1)
  > span:nth-of-type(1) {
  color: #00b319;
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(2)
  > div:nth-of-type(2)
  > h3:nth-of-type(1) {
  color: #212121;
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(2)
  > div:nth-of-type(2)
  > p:nth-of-type(1) {
  color: #151515;
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(2)
  > div:nth-of-type(2)
  > div:nth-of-type(1)
  > span:nth-of-type(1) {
  background-color: #6cc14e;
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(3)
  > div:nth-of-type(1)
  > b:nth-of-type(1) {
  color: #0a0a0a;
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(3)
  > div:nth-of-type(2)
  > b:nth-of-type(1) {
  color: #151515;
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(3)
  > div:nth-of-type(3)
  > b:nth-of-type(1) {
  color: #101010;
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(4)
  > div:nth-of-type(1)
  > span:nth-of-type(1) {
  color: #101010;
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(4)
  > div:nth-of-type(2)
  > span:nth-of-type(1) {
  color: #068c00;
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(4)
  > div:nth-of-type(3)
  > span:nth-of-type(1) {
  color: #009cff;
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(4)
  > div:nth-of-type(3)
  > strong:nth-of-type(1) {
  color: #000000;
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(4)
  > div:nth-of-type(1)
  > strong:nth-of-type(1) {
  color: #060606;
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(4)
  > div:nth-of-type(2)
  > strong:nth-of-type(1) {
  color: #000000;
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(1)
  > div:nth-of-type(1) {
  background-color: #c0c0c0;
}

main#main:nth-of-type(1)
  > section:nth-of-type(3)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > h2:nth-of-type(1) {
  font-size: 42px;
}

main#main:nth-of-type(1)
  > section:nth-of-type(4)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > h2:nth-of-type(1) {
  font-size: 37px;
}

main#main:nth-of-type(1)
  > section:nth-of-type(5)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > h2:nth-of-type(1) {
  font-size: 42px;
}

footer:nth-of-type(1) {
  background-color: #a4a4a4;
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > span:nth-of-type(3) {
  background-color: #ff4b4b;
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > span:nth-of-type(2) {
  background-color: #63ff53;
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > span:nth-of-type(1) {
  background-color: #30d9ff;
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > strong:nth-of-type(1) {
  color: #222222;
}

footer:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > p:nth-of-type(1) {
  color: #010101;
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > h1:nth-of-type(1) {
  color: #c0c0c0;
}

#hero-download-btn {
  background-color: #c0c0c0;
  color: var(--bg);
  height: 44px;
  padding-top: 6px;
  padding-left: 17px;
  padding-right: 19px;
  width: 248.562px;
  line-height: 18.1px;
  font-size: 14px;
  text-align: center;
  border-radius: 9998px;
  border-width: 0px;
  padding-left: 17px;
}

main#main:nth-of-type(1)
  > section:nth-of-type(2)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > h2:nth-of-type(1) {
  color: #c0c0c0;
}

main#main:nth-of-type(1)
  > section:nth-of-type(3)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > h2:nth-of-type(1) {
  color: #c0c0c0;
}

#patcher-btn {
  background-color: #6bcfff;
}

main#main:nth-of-type(1)
  > section:nth-of-type(4)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > h2:nth-of-type(1) {
  color: #c0c0c0;
}

main#main:nth-of-type(1)
  > section:nth-of-type(5)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > h2:nth-of-type(1) {
  color: #c0c0c0;
}

footer:nth-of-type(1) {
  background-color: #c0c0c0;
}

header:nth-of-type(1) {
  height: 50px;
}

#header-download-btn {
  width: 86.9219px;
  height: 25.9688px;
  font-size: 10.2px;
}

main#main:nth-of-type(1)
  > section:nth-of-type(4)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > h2:nth-of-type(1) {
  font-size: 68px;
  line-height: 61.1px;
  height: 61.0938px;
}

main#main:nth-of-type(1)
  > section:nth-of-type(4)
  > div:nth-of-type(1)
  > div:nth-of-type(1) {
}

#hero-device-card {
  background-color: #aaaaaa;
  height: 133px;
}

#hero-metric-3-span {
  font-size: 13px;
}

#hero-phone-icon {
  width: 52px;
  height: 97px;
}

#hero-device-title {
  color: #1f1f1f;
}

#hero-device-desc {
  color: #2c2c2c;
}

#hero-metric-1-b {
  color: #292929;
}

#hero-metric-2-b {
  color: #222222;
}

#hero-metric-3-b {
  color: #252525;
}

#hero-log-1-span {
  color: #1e84bc;
}

#hero-log-2-span {
  color: #18ae2d;
}

#hero-log-3-span {
  color: #00b308;
}

#hero-log-1-strong {
  color: #3b89ff;
}

#hero-log-2-strong {
  color: #28a317;
}

#hero-log-3-strong {
  color: #00911c;
}

#hero-progress-span {
  background-color: #148522;
}

#window-dot-2 {
  background-color: #ff5353;
}

#window-dot-1 {
  color: #02cd0b;
  background-color: #30ff51;
}

#section-2 {
  background-color: #2c2c2c;
}

#section-4 {
  background-color: #2c2c2c;
}

#blog-hero-title {
  font-size: 52.8px;
}

#blog-hero-section {
  height: 359px;
  width: 1368px;
}

#blog-hero-desc {
  font-size: 16.4px;
}

#blog-featured-title {
  font-size: 27px;
}

/* User Specific Focused Styles */
main#main:nth-of-type(1)
  > section#main-hero-section:nth-of-type(1)
  > div#main-hero-container:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(2)
  > div:nth-of-type(1)
  > span:nth-of-type(1) {
  color: #0067d9;
}

main#main:nth-of-type(1)
  > section#main-hero-section:nth-of-type(1)
  > div#main-hero-container:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(2)
  > div:nth-of-type(2)
  > span:nth-of-type(1) {
  color: #0067d9;
}

main#main:nth-of-type(1)
  > section#main-hero-section:nth-of-type(1)
  > div#main-hero-container:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(2)
  > div:nth-of-type(3)
  > span#hero-metric-3-span:nth-of-type(1) {
  color: #0067d9;
}

main#main:nth-of-type(1)
  > section#main-hero-section:nth-of-type(1)
  > div#main-hero-container:nth-of-type(1)
  > div:nth-of-type(1)
  > div#hero-actions-container:nth-of-type(1) {
  height: auto;
  min-height: 102px;
  max-width: 546.109px;
}

header:nth-of-type(1)
  > nav:nth-of-type(1)
  > div:nth-of-type(2)
  > a#header-download-btn:nth-of-type(1) {
  background-color: #c0c0c0;
  color: #000000;
  width: 87.9219px;
  height: 22px;
}

main#main:nth-of-type(1)
  > section#main-hero-section:nth-of-type(1)
  > div#main-hero-container:nth-of-type(1)
  > div:nth-of-type(1)
  > p:nth-of-type(1) {
  color: #0067d9;
}

main#main:nth-of-type(1)
  > section:nth-of-type(5)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > a:nth-of-type(1) {
  color: #ffffff;
  border-color: #ffffff;
  background-color: #0067d9;
}

main#main:nth-of-type(1)
  > section#section-4:nth-of-type(4)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > a:nth-of-type(1)
  > h3:nth-of-type(1) {
  color: #0067d9;
}

main#main:nth-of-type(1)
  > section#section-4:nth-of-type(4)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > a:nth-of-type(2)
  > h3:nth-of-type(1) {
  color: #1dff32;
}

main#main:nth-of-type(1)
  > section#section-4:nth-of-type(4)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > a:nth-of-type(3)
  > h3:nth-of-type(1) {
  color: #ff6b6b;
}

main#main:nth-of-type(1)
  > section:nth-of-type(3)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > p:nth-of-type(1) {
  color: #0067d9;
}

main#main:nth-of-type(1)
  > section:nth-of-type(3)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > a#patcher-btn:nth-of-type(1) {
  color: #000000;
  background-color: #ff5858;
}

main#main:nth-of-type(1)
  > section#main-hero-section:nth-of-type(1)
  > div#main-hero-container:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > span#window-dot-2:nth-of-type(2) {
  background-color: #ff5353;
  color: #ff4747;
}

main#main:nth-of-type(1)
  > section#main-hero-section:nth-of-type(1)
  > div#main-hero-container:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > span#window-dot-1:nth-of-type(1) {
  background-color: #37c100;
  color: #00d008;
}

header:nth-of-type(1)
  > nav:nth-of-type(1)
  > div:nth-of-type(2)
  > a:nth-of-type(1) {
  background-color: #6cff7a;
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > a:nth-of-type(1) {
  background-color: #0067d9;
  color: #ffffff;
  border-color: #ffffff;
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > a:nth-of-type(2) {
  border-color: #58ff7b;
  color: #00c823;
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(2) {
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > p:nth-of-type(3) {
}

main#main:nth-of-type(1) > section:nth-of-type(1) {
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > p:nth-of-type(1) {
  color: #0067d9;
}

main#main:nth-of-type(1)
  > section:nth-of-type(4)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > a:nth-of-type(1) {
  background-color: #57ff5e;
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > aside:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > span:nth-of-type(1) {
  color: #0067d9;
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > aside:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > span:nth-of-type(1) {
  color: #0067d9;
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > aside:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(3)
  > span:nth-of-type(1) {
  color: #0067d9;
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > aside:nth-of-type(1)
  > ul:nth-of-type(1)
  > li:nth-of-type(1) {
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > aside:nth-of-type(1) {
}

/* Custom Showcase Carousel/Slider inside download sidebar */
.showcase-slider-container {
  position: relative;
  width: calc(100% + 96px); /* 48px padding on both sides */
  margin: -48px -48px 32px -48px; /* Bleed to the top, left, right edges */
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  overflow: hidden;
}

.showcase-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 3; /* Perfectly match 2000x1200 aspect ratio */
  height: auto;
  min-height: 250px;
  max-height: none;
  overflow: hidden;
  border-radius: 0;
  background: transparent; /* Absolutely no background as requested */
  border: none;
}

.showcase-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.8s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.showcase-slider .slide.active {
  opacity: 1;
  visibility: visible;
}

.showcase-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.showcase-slider .slide.active img {
  transform: scale(1.02);
}

.showcase-slider .slide-caption {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Cairo", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  padding: 6px 16px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 10;
}

.slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 10;
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.slider-dots .dot:hover {
  background: rgba(255, 255, 255, 0.4);
}

.slider-dots .dot.active {
  background: var(--brand); /* #ff8906 */
  transform: scale(1.25);
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > aside#download-sidebar-panel:nth-of-type(1) {
  height: 829.344px;
  width: 552px;
  padding-left: 43px;
  padding-top: 0px;
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > aside#download-sidebar-panel:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(1) {
  padding-top: 5px;
  padding-left: 16px;
  padding-right: 17px;
  margin-left: 1px;
  margin-right: -1px;
  margin-top: -15px;
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > aside#download-sidebar-panel:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(1) {
  margin-top: -15px;
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > aside#download-sidebar-panel:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(4)
  > img:nth-of-type(1) {
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > aside#download-sidebar-panel:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(4)
  > div:nth-of-type(1) {
  margin-top: -15px;
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > aside#download-sidebar-panel:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(3)
  > div:nth-of-type(1) {
  margin-top: -15px;
}

main#main:nth-of-type(1) > section:nth-of-type(1) {
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > aside#download-sidebar-panel:nth-of-type(1)
  > a#sidebar-download-btn:nth-of-type(1) {
  background-color: #ff8906;
  color: #000000;
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > aside#download-sidebar-panel:nth-of-type(1) {
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > aside#download-sidebar-panel:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(1)
  > span:nth-of-type(1) {
  color: #008eff;
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > aside#download-sidebar-panel:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(2)
  > span:nth-of-type(1) {
  color: #008eff;
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > aside#download-sidebar-panel:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(3)
  > span:nth-of-type(1) {
  color: #008eff;
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > aside#download-sidebar-panel:nth-of-type(1)
  > h2:nth-of-type(1) {
  height: 28.7969px;
  width: 459px;
  padding-left: 0px;
  margin-left: 136px;
  margin-top: -30px;
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > aside#download-sidebar-panel:nth-of-type(1)
  > div:nth-of-type(2) {
  margin-left: 0px;
  margin-top: -12px;
}
main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > h1:nth-of-type(1) {
  font-size: 49.8px;
}
main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > a:nth-of-type(1) {
  background-color: #161823;
  color: #52ff75;
  border-color: #40ff90;
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(2)
  > a:nth-of-type(2) {
  background-color: #f25f4c;
  color: #ffffff;
  border-color: #ffffff;
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > div#verification:nth-of-type(2) {
  color: #67c170;
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(1)
  > p:nth-of-type(2) {
  color: #008eff;
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > form:nth-of-type(1)
  > p:nth-of-type(1) {
  height: 22.0938px;
  margin-top: 9px;
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > form:nth-of-type(1) {
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > article:nth-of-type(1)
  > h1:nth-of-type(1) {
  font-size: 45px;
  color: #008eff;
}

main#main:nth-of-type(1) > section:nth-of-type(1) {
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > form:nth-of-type(1)
  > div:nth-of-type(3) {
  color: #00ea0a;
}

main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > form:nth-of-type(1)
  > div:nth-of-type(2)
  > div:nth-of-type(1) {
  border-color: #3bba4d;
}
main#main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > form:nth-of-type(1)
  > button:nth-of-type(1) {
  color: #ffffff;
  padding-top: 8px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 7px;
  margin-bottom: 0px;
  width: 466px;
  height: 44px;
}

header:nth-of-type(1)
  > nav:nth-of-type(1)
  > div:nth-of-type(2)
  > a:nth-of-type(1) {
  background-color: #b3b3b3;
  color: #060606;
}
