/* Palette seed: IT BUSINESS MERCHANT → hue 355 */
:root {
  --accent-h: 355;
  --accent-s: 77%;
  --accent-l: 54%;
  --accent-two-h: 85;
  --accent-two-s: 78%;
  --accent-two-l: 49%;
  --bg-h: 215;
  --bg-s: 31%;
  --bg-l: 9%;

  --accent: hsl(var(--accent-h), var(--accent-s), var(--accent-l));
  --accent-two: hsl(var(--accent-two-h), var(--accent-two-s), var(--accent-two-l));
  --bg: hsl(var(--bg-h), var(--bg-s), var(--bg-l));
  --text: hsl(var(--bg-h), 20%, 96%);
  --panel: color-mix(in srgb, var(--bg) 72%, hsl(var(--bg-h), 22%, 18%));
  --muted: color-mix(in srgb, var(--text) 62%, transparent);
  --line: color-mix(in srgb, var(--text) 14%, transparent);
  --gradient: linear-gradient(135deg, var(--accent), var(--accent-two));
  --radius: 18px;
  --header-h: 72px;
  --font: "Manrope", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body.grid {
  font-family: var(--font);
  background:
    radial-gradient(circle at 21% 15%, color-mix(in srgb, var(--accent) 20%, transparent), transparent 42%),
    radial-gradient(circle at 79% 7%, color-mix(in srgb, var(--accent-two) 18%, transparent), transparent 38%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.header {
  position: sticky;
  top: 16px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 16px auto 0;
  padding: 12px 20px;
  width: min(1120px, calc(100% - 32px));
  background: color-mix(in srgb, var(--panel) 82%, transparent);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(14px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--gradient);
  color: var(--bg);
  font-weight: 900;
  font-size: 1.1rem;
}

.logo-text {
  font-size: 0.92rem;
  max-width: 180px;
  line-height: 1.2;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
  background: color-mix(in srgb, var(--text) 8%, transparent);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 48px;
}

.section-head {
  margin-bottom: 28px;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.section-sub {
  margin-top: 10px;
  color: var(--muted);
  max-width: 52ch;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding: 72px 0 56px;
}

.tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.hero-text {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 54ch;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: var(--gradient);
  color: var(--bg);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--accent) 28%, transparent);
}

.btn.secondary {
  border-color: var(--line);
  background: color-mix(in srgb, var(--panel) 60%, transparent);
  color: var(--text);
}

.hero-card {
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--panel) 88%, var(--accent) 12%);
  transform: rotate(2deg);
  box-shadow: 0 24px 60px color-mix(in srgb, var(--bg) 40%, transparent);
}

.hero-card-letter {
  display: block;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
}

.hero-card-words {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.profile {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  padding: 56px 0;
  border-top: 1px solid var(--line);
}

.profile-body p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.profile-facts {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.profile-facts li {
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--panel) 80%, var(--accent-two) 20%);
}

.profile-facts dt {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 6px;
}

.profile-facts dd {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.areas {
  padding: 56px 0;
  border-top: 1px solid var(--line);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.area-card {
  padding: 24px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  min-height: 180px;
}

.areas-grid .area-card:nth-child(2n) {
  background: color-mix(in srgb, var(--panel) 70%, var(--accent) 30%);
}

.area-num {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent-two);
  margin-bottom: 12px;
  letter-spacing: 0.08em;
}

.area-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.area-card p {
  font-size: 0.92rem;
  color: var(--muted);
}

.process {
  padding: 56px 0;
  border-top: 1px solid var(--line);
}

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.steps li {
  padding: 24px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
}

.step-num {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 14px;
  letter-spacing: 0.08em;
}

.steps h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.steps p {
  font-size: 0.9rem;
  color: var(--muted);
}

.contact {
  padding: 56px 0 24px;
  border-top: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: start;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.contact-card {
  padding: 20px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
}

.contact-card h3 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 10px;
}

.contact-value {
  font-weight: 700;
  font-size: 0.95rem;
  word-break: break-word;
}

.contact-value a {
  color: var(--accent-two);
  transition: opacity 0.2s;
}

.contact-value a:hover {
  opacity: 0.8;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--panel) 90%, var(--accent-two) 10%);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  color: var(--text);
  font: inherit;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid color-mix(in srgb, var(--accent) 50%, transparent);
  outline-offset: 2px;
}

.footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-note {
  margin-top: 8px;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .nav {
    position: fixed;
    inset: 88px 16px auto;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--panel) 94%, transparent);
    backdrop-filter: blur(14px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav a {
    padding: 12px 16px;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 360px;
    margin: 0 auto;
  }

  .profile {
    grid-template-columns: 1fr;
  }

  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .logo-text {
    font-size: 0.78rem;
    max-width: 140px;
  }

  .areas-grid,
  .steps,
  .contact-info {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }

  .profile-facts {
    grid-template-columns: 1fr;
  }
}
