@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --bg: #08131a;
  --bg-soft: #0f1d27;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-strong: rgba(11, 29, 37, 0.92);
  --border: rgba(255, 255, 255, 0.14);
  --text: #ecf5ff;
  --text-muted: rgba(236, 245, 255, 0.72);
  --accent: #4dd6b6;
  --accent-2: #f79f40;
  --accent-3: #7bb3ff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --max-width: 1160px;
  --font-heading: "Sora", sans-serif;
  --form-placeholder: rgba(236, 245, 255, 0.58);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  background: radial-gradient(circle at top right, rgba(123, 179, 255, 0.14), transparent 45%), var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

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

a[href^="mailto:"] {
  color: var(--accent-2) !important;
}

.site-footer a[href^="mailto:"] {
  color: var(--text-muted) !important;
}

main a:not(.btn) {
  color: var(--accent-2);
}

img {
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 19, 26, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-row.compact {
  padding: 8px 0;
}

.promo-strip {
  background: linear-gradient(90deg, rgba(77, 214, 182, 0.28), rgba(247, 159, 64, 0.24));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-strip-inner {
  padding: 13px 0;
  text-align: center;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 120px;
  object-fit: contain;
  display: block;
  transform: scale(1.5);
  transform-origin: left center;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--text-muted);
}

.nav a {
  transition: color 0.2s ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

.btn-primary {
  border: 1px solid transparent;
  background:
    linear-gradient(125deg, #f9d551, #f46b2c) padding-box,
    linear-gradient(125deg, #f9d551, #f46b2c) border-box;
  color: #082026;
  height: 46px;
  min-width: 190px;
  padding: 12px 22px;
  border-radius: 12px;
  line-height: 1;
  white-space: nowrap;
  font-size: 0.94rem;
}

.btn-outline {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.site-header .btn-outline {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--accent-2);
  background: rgba(255, 255, 255, 0.02);
  padding: 7px 18px;
}

.site-header .btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.06);
}

.btn-ghost {
  color: var(--text-muted);
}

.hero {
  padding: 96px 0 54px;
}

.hero-grid {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  align-items: end;
}

.hero-copy {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 28px;
  align-items: stretch;
}

.hero-main-text {
  min-width: 0;
  min-height: 380px;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(77, 214, 182, 0.18);
  color: #9ef5df;
  padding: 8px 14px;
  margin-bottom: 18px;
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-copy h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 2.5vw + 1rem, 2.85rem);
  line-height: 1.2;
  margin-bottom: 30px;
  letter-spacing: 0.01em;
  max-width: 860px;
}

.brand-word {
  color: var(--accent-2);
}

.hero-copy p {
  color: var(--text-muted);
  font-size: 1.06rem;
  max-width: 680px;
}

.hero-lead {
  font-size: 1.22rem;
  line-height: 1.9;
  max-width: 820px;
  margin-bottom: 0;
  align-self: center;
}

.hero-cta {
  display: flex;
  justify-content: center;
  width: calc(100% + 408px);
  margin-bottom: 28px;
  margin-top: 32px;
}

.hero-cta .btn {
  width: auto;
}

.hero-visual {
  width: 380px;
  max-width: 100%;
  justify-self: end;
  border-radius: 0;
  border: 0;
  background: transparent;
  min-height: 380px;
  height: 380px;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  box-shadow: none;
  overflow: hidden;
}

.hero-visual-inner {
  width: 100%;
  height: 100%;
  border-radius: 0;
  border: 0;
  background: transparent;
  padding: 0;
}

.hero-visual-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.meta {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
}

.meta-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.meta-value {
  font-weight: 700;
}

.hero-panel {
  position: relative;
}

.status-card {
  background: var(--bg-card-strong);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.status-kicker {
  color: var(--accent-2);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.status-row:last-child {
  border-bottom: 0;
}

.status-row span {
  color: var(--text-muted);
}

.section {
  padding: 42px 0;
}

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

.section-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 1.5vw + 1.3rem, 2.9rem);
  margin-bottom: 14px;
}

.section-head p {
  color: var(--text-muted);
}

.columns-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vertical-column {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 26px;
  min-height: 460px;
}

.column-label {
  font-family: var(--font-heading);
  color: var(--accent-2);
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.vertical-column h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.vertical-column p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.list li {
  position: relative;
  color: var(--text-muted);
  padding-left: 16px;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-2);
}

.section-dark {
  background: linear-gradient(180deg, rgba(123, 179, 255, 0.08), rgba(77, 214, 182, 0.08));
}

.editor-spotlight-wrap {
  padding-top: 8px;
}

.editor-spotlight {
  border-radius: 24px;
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  padding: 30px;
  display: grid;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.editor-spotlight h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 1vw + 1rem, 2rem);
}

.editor-spotlight p {
  color: var(--text-muted);
  max-width: 880px;
}

.editor-cta {
  display: flex;
  justify-content: flex-end;
}

.editor-btn {
  width: auto;
}

.opportunities {
  padding-top: 8px;
}

.split-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.split-card {
  --card-bg: linear-gradient(170deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  --card-bg-hover: linear-gradient(165deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  border-radius: 22px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  min-height: 950px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 74px;
  margin-bottom: 2px;
}

.card-cover {
  width: 76px;
  max-height: 66px;
  height: auto;
  flex: 0 0 auto;
  border-radius: 12px;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 4px;
}

.split-card > .seo-copy:first-of-type {
  min-height: 7.2em;
}

.split-card-editor {
  /*background-size: auto, 26px 26px, 26px 26px, auto;*/
}

.split-card-tasks {
}

.split-card-work {
}

.split-card h3,
.card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 1vw + 1rem, 2rem);
  line-height: 1.25;
  color: var(--accent-2);
  display: flex;
  align-items: center;
}

.card-title {
  margin: 0;
  min-height: 0;
  flex: 1 1 auto;
}

.split-card p {
  color: var(--text-muted);
}

.seo-copy {
  color: var(--text-muted);
  line-height: 1.72;
}

.split-card::before,
.editor-spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 100% 0%, rgba(123, 179, 255, 0.16), transparent 58%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.split-card::after,
.editor-spotlight::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  pointer-events: none;
  opacity: 1;
}

.split-card:hover,
.split-card:focus-within,
.split-card.highlight,
.editor-spotlight:hover,
.editor-spotlight:focus-within {
  transform: translateY(-0px) scale(1.003);
  border-color: rgba(123, 179, 255, 0.35);
  box-shadow: 0 18px 36px rgba(2, 10, 15, 0.35), 0 0 0 1px rgba(123, 179, 255, 0.14);
  background: var(--card-bg-hover);
}

.split-card:hover::before,
.split-card:focus-within::before,
.split-card.highlight::before,
.editor-spotlight:hover::before,
.editor-spotlight:focus-within::before {
  opacity: 1;
}

.split-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 0.45vw + 0.9rem, 1.25rem);
  line-height: 1.35;
  padding-top: 12px;
  margin-bottom: 8px;
}

.split-card p + .split-subtitle {
  margin-top: auto;
}

.action-btn {
  width: 176px;
  min-width: 176px;
  max-width: 176px;
  align-self: center;
  margin-left: 0;
  margin-right: 0;
  margin-top: 8px;
}

.split-card-editor .list {
  margin-top: 4px;
}

.split-card-editor .action-btn {
  margin-top: auto;
}

.scroll-list {
  display: grid;
  gap: 10px;
  max-height: calc(3 * 112px + 2 * 14px);
  overflow-y: auto;
  overflow-x: hidden;
  width: calc(100% + 10px);
  margin-right: -10px;
  padding-right: 0;
  margin-bottom: 6px;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}

.scroll-row {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  padding: 20px 16px 20px 78px;
  background: rgba(10, 28, 37, 0.72);
  display: grid;
  gap: 7px;
  min-height: 112px;
  position: relative;
}

.scroll-avatar {
  position: absolute;
  left: 16px;
  top: 50%;
  width: 44px;
  height: 44px;
  transform: translateY(-50%);
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.36);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  display: block;
}

.person-avatar {
  border-radius: 50%;
}

.work-avatar {
  border-radius: 10px;
  border: 0;
  box-shadow: none;
}

.scroll-row strong {
  font-size: 0.98rem;
}

.scroll-row span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.scroll-list::-webkit-scrollbar {
  width: 6px;
}

.scroll-list::-webkit-scrollbar-track {
  background: transparent;
}

.scroll-list::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 999px;
}

.split-card:hover .scroll-list,
.split-card:focus-within .scroll-list,
.scroll-list:hover {
  scrollbar-color: rgba(255, 255, 255, 0.24) transparent;
}

.split-card:hover .scroll-list::-webkit-scrollbar,
.split-card:focus-within .scroll-list::-webkit-scrollbar,
.scroll-list:hover::-webkit-scrollbar {
  width: 6px;
}

.split-card:hover .scroll-list::-webkit-scrollbar-thumb,
.split-card:focus-within .scroll-list::-webkit-scrollbar-thumb,
.scroll-list:hover::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.24);
}

.pricing-preview {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.preview-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: center;
}

.preview-grid h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 1.1vw + 1.2rem, 2.5rem);
  margin-bottom: 12px;
}

.preview-grid p {
  color: var(--text-muted);
}

.preview-card {
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(8, 25, 31, 0.86);
  padding: 24px;
  box-shadow: var(--shadow);
}

.preview-plan {
  font-size: 0.95rem;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.preview-price {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  margin: 8px 0 8px;
}

.preview-card p {
  margin-bottom: 18px;
}

.section-cta {
  padding-bottom: 72px;
}

.about-details {
  padding-top: 8px;
  padding-bottom: 42px;
}

.additional-details {
  padding-top: 8px;
  padding-bottom: 42px;
}

.about-copy {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  padding: 26px;
  display: grid;
  gap: 16px;
}

.about-copy p {
  color: var(--text-muted);
  font-size: 1.03rem;
  line-height: 1.78;
}

.about-copy h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 1vw + 1rem, 2rem);
  line-height: 1.25;
  margin-bottom: 2px;
  color: var(--accent-2);
}

.cta-box {
  display: grid;
  gap: 24px;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  padding: 36px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(77, 214, 182, 0.16), rgba(123, 179, 255, 0.13));
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-box > div {
  align-self: start;
  margin-top: 0;
  padding-top: 0;
}

.cta-box:hover,
.cta-box:focus-within {
  transform: translateY(-1px) scale(1.003);
  box-shadow: 0 16px 34px rgba(2, 10, 15, 0.25);
}

.cta-box h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 1vw + 1rem, 2rem);
  color: var(--accent-2);
  margin-top: 0;
  margin-bottom: 12px;
  line-height: 1.2;
}

.cta-box p {
  color: var(--text-muted);
}

.cta-demo-note {
  margin-top: 16px;
}

.cta-demo-note a {
  font-weight: 700;
}

.cta-form {
  display: grid;
  gap: 12px;
}

.cta-form input {
  background: rgba(8, 23, 31, 0.95);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 16px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.4;
}

.cta-form input::placeholder {
  color: var(--form-placeholder);
  opacity: 1;
}

.cta-form select {
  background: rgba(8, 23, 31, 0.95);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 16px;
  color: var(--text);
  appearance: none;
}

.cta-form select:invalid {
  color: var(--form-placeholder);
}

.cta-form select option {
  color: var(--text);
}

.cta-form select option[value=""] {
  color: var(--form-placeholder);
}

.cta-form input:focus {
  outline: none;
  border-color: var(--accent-2);
}

.cta-form select:focus {
  outline: none;
  border-color: var(--accent-2);
}

.custom-select {
  position: relative;
}

.custom-select-trigger {
  width: 100%;
  background: rgba(8, 23, 31, 0.95);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 16px;
  color: var(--form-placeholder);
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  transition: border-color 0.2s ease;
}

.custom-select-trigger:focus {
  outline: none;
  border-color: var(--accent-2);
}

.custom-select-trigger.has-value {
  color: var(--text);
}

.custom-select-trigger svg {
  flex-shrink: 0;
  opacity: 0.5;
  transition: transform 0.2s ease;
}

.custom-select.open .custom-select-trigger svg {
  transform: rotate(180deg);
}

.custom-select-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: rgb(8, 23, 31);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 6px 0;
  list-style: none;
  z-index: 30;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.custom-select.open .custom-select-dropdown {
  display: block;
}

.custom-select-dropdown li {
  padding: 11px 16px;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.custom-select-dropdown li:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.custom-select-dropdown li.selected {
  color: var(--accent-2);
}

.cta-form .hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-note {
  color: var(--text-muted);
  font-size: 0.84rem;
}

.form-note a {
  color: var(--accent);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 34px 0 46px;
}

.footer-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(220px, 1.1fr) repeat(3, minmax(160px, 0.9fr));
  align-items: start;
}

.footer-note {
  margin-top: 10px;
  color: var(--text-muted);
}

.footer-links-group {
  display: grid;
  gap: 8px;
  color: var(--text-muted);
  align-content: start;
  align-items: start;
}

.footer-title {
  color: var(--text);
  font-weight: 700;
  margin-bottom: 4px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--text-muted);
}

.faq-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.faq-item {
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  padding: 20px;
}

.faq-item h3 {
  margin-bottom: 10px;
}

.faq-item p {
  color: var(--text-muted);
}

.legal-content {
  max-width: 860px;
}

.legal-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 2.2vw + 1rem, 2.8rem);
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text);
}

.legal-content .legal-lead {
  font-size: 1.12rem;
  line-height: 1.75;
  margin: 0 0 30px;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin: 28px 0 10px;
  color: var(--text);
}

.legal-content p {
  color: var(--text-muted);
  font-size: 1.03rem;
  line-height: 1.72;
}

.legal-list {
  margin: 10px 0 14px 20px;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.legal-list li + li {
  margin-top: 6px;
}

.legal-content a {
  color: var(--accent);
}

.bg-orb {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.42;
  z-index: 0;
  pointer-events: none;
}

.orb-1 {
  top: -120px;
  left: -130px;
  background: radial-gradient(circle, rgba(77, 214, 182, 0.8), transparent 70%);
}

.orb-2 {
  bottom: 120px;
  right: -150px;
  background: radial-gradient(circle, rgba(123, 179, 255, 0.78), transparent 70%);
}

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 82px 82px;
}

#editor,
#projects,
#work,
#opportunities {
  scroll-margin-top: 134px;
}
#cta{
  scroll-margin-top: 92px;
}
#about-platform {
  scroll-margin-top: 126px;
}

main,
header,
footer {
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .hero-grid,
  .preview-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .meta {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .columns-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

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

  .hero-cta {
    justify-content: center;
    width: 100%;
  }

  .hero-copy {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero {
    padding: 74px 0 40px;
  }

  .hero-main-text,
  .hero-visual {
    min-height: 0;
  }

  .hero-main-text {
    grid-template-rows: auto auto auto;
    gap: 18px;
  }

  .hero-lead {
    align-self: start;
  }

  .hero-visual {
    width: min(100%, 520px);
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
    justify-self: center;
  }

  .hero-cta {
    margin-top: 0;
    margin-bottom: 0;
  }

  .editor-cta {
    justify-content: flex-start;
  }

  .vertical-column {
    min-height: 0;
  }

  .footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  }
}

@media (max-width: 860px) {
  .header-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 12px 0;
  }

  .logo-mark {
    width: 96px;
    transform: none;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-left: 0;
  }

  .header-actions .btn {
    width: auto;
    min-width: 0;
    padding: 10px 14px;
    font-size: 0.84rem;
    border-radius: 10px;
  }

  .nav {
    width: 100%;
    order: 3;
    justify-content: space-between;
    font-size: 0.9rem;
  }

  .header-actions {
    margin-left: 0;
  }

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

  #editor,
  #projects,
  #work,
  #opportunities {
    scroll-margin-top: 184px;
  }
  #cta  {
    scroll-margin-top: 136px;
  }
  #about-platform,
  #about-details {
    scroll-margin-top: 136px;
  }

  .split-card {
    padding: 18px;
    min-height: 0;
  }

  .card-head {
    min-height: 60px;
    gap: 10px;
  }

  .card-cover {
    width: 64px;
    max-height: 56px;
    padding: 2px;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 30px, var(--max-width));
  }

  .promo-strip-inner {
    text-align: left;
    line-height: 1.4;
    font-size: 0.88rem;
  }

  .hero {
    padding: 58px 0 28px;
  }

  .btn {
    width: auto;
  }

  .action-btn {
    width: 176px;
    min-width: 176px;
    max-width: 176px;
  }

  .hero-lead {
    font-size: 1.02rem;
    line-height: 1.7;
  }

  .hero-copy h1 {
    font-size: clamp(1.45rem, 4.5vw + 0.8rem, 2rem);
    margin-bottom: 10px;
  }

  .hero-visual {
    width: 100%;
    aspect-ratio: 16 / 10;
  }

  .hero-cta {
    width: 100%;
    justify-content: center;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
  }

  .nav {
    gap: 12px;
    flex-wrap: wrap;
  }

  .section {
    padding: 48px 0;
  }

  .cta-box {
    padding: 20px;
    border-radius: 18px;
  }

  .split-card {
    padding: 16px;
    gap: 12px;
    min-height: 0;
  }

  .split-subtitle {
    font-size: 1rem;
  }

  .scroll-row {
    min-height: 96px;
    padding: 14px 14px 14px 66px;
  }

  .scroll-avatar {
    width: 38px;
    height: 38px;
    left: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
