.site-header__inner {
  gap: 16px;
}

.site-nav {
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(12px, 1.3vw, 22px);
  min-width: 0;
  white-space: nowrap;
}

.site-nav > a,
.solution-menu__button {
  font-size: clamp(0.86rem, 0.95vw, 1rem);
}

.solution-menu__list {
  top: calc(100% - 1px);
  min-width: 260px;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 8px;
  margin-left: 0;
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 15px;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
  text-decoration: none;
  transition: 180ms ease;
}

.site-nav .header-action--primary {
  color: #fffaf4;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: 0 14px 30px rgba(102, 126, 234, 0.28);
}

.site-nav .header-action--primary:hover {
  color: #fffaf4;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  border-color: transparent;
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(102, 126, 234, 0.34);
}

.site-nav .header-action--secondary {
  color: #fffaf4;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0 12px 26px rgba(102, 126, 234, 0.2);
}

.site-nav .header-action--secondary:hover {
  color: #fffaf4;
  transform: translateY(-1px);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  border-color: transparent;
  box-shadow: 0 16px 34px rgba(102, 126, 234, 0.28);
}

.landing-structured .product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  min-height: min(calc(100vh - 78px), 720px);
  max-height: 1080px;
  padding-top: clamp(68px, 7vh, 96px);
  padding-bottom: clamp(56px, 7vh, 92px);
}

.register-auth-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
}

.register-auth-page {
  width: 100%;
  display: flex;
  justify-content: center;
}

.register-auth-card {
  width: 100%;
  max-width: 500px;
  padding: 40px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.register-auth-card--thanks {
  text-align: center;
}

.register-auth-header {
  margin-bottom: 30px;
  text-align: center;
}

.register-auth-header h1,
.register-auth-card--thanks h1 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.14;
  color: #333;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.register-auth-header p,
.register-auth-card--thanks .lead {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

.register-auth-form .form-group {
  margin-bottom: 20px;
}

.register-auth-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.register-auth-form label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-size: 14px;
  font-weight: 500;
}

.register-auth-form input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  color: #333;
  background: #fff;
  font: inherit;
  font-size: 16px;
  transition: all 0.3s ease;
}

.register-auth-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.register-auth-form small {
  display: block;
  margin-top: 6px;
  color: #666;
  font-size: 12px;
  line-height: 1.4;
}

.field-status {
  min-height: 16px;
  margin-top: 6px;
  color: #666;
  font-size: 12px;
  line-height: 1.35;
}

.field-status--success {
  color: #4caf50;
}

.field-status--error {
  color: #f44336;
}

.field-status--warning {
  color: #ff9800;
}

.password-strength {
  margin-top: 6px;
  color: #666;
  font-size: 12px;
}

.strength-bar {
  height: 4px;
  margin-top: 5px;
  overflow: hidden;
  border-radius: 2px;
  background: #e0e0e0;
}

.strength-fill {
  width: 0%;
  height: 100%;
  background: #4caf50;
  transition: width 0.3s ease, background 0.3s ease;
}

.register-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 4px 0 18px;
}

.register-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--accent);
}

.register-auth-form .register-consent label {
  margin: 0;
  color: #666;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

.register-consent a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.register-consent a:hover {
  text-decoration: underline;
}

.register-auth-submit {
  width: 100%;
  min-height: 48px;
  padding: 14px;
  border: none;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.register-auth-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.register-login-link {
  margin-top: 20px;
  color: #666;
  font-size: 14px;
  text-align: center;
}

.legal-note {
  margin-top: 16px;
  color: #666;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.register-login-link a,
.legal-note a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.register-login-link a:hover,
.legal-note a:hover {
  text-decoration: underline;
}

.form-message {
  padding: 12px;
  margin-bottom: 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
}

.form-message--error {
  color: #c62828;
  background: #ffebee;
  border-left: 4px solid #c62828;
}

.form-message--success {
  color: #236b42;
  background: #edf9f1;
  border-left: 4px solid #2f8d57;
}

.contact-body .page-shell {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 76px);
  min-height: calc(100dvh - 76px);
}

.contact-body .page-shell > main {
  display: flex;
  flex: 1;
  min-height: 0;
}

.contact-section {
  display: flex;
  align-items: center;
  flex: 1;
  width: 100%;
  padding-top: clamp(44px, 6vh, 72px);
  padding-bottom: clamp(44px, 6vh, 72px);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: stretch;
  width: 100%;
}

.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 0;
}

.contact-copy h1 {
  max-width: 12ch;
  margin: 8px 0 20px;
  color: var(--text);
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.contact-copy .lead {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.65;
}

.contact-direct {
  display: grid;
  gap: 5px;
  max-width: 460px;
  margin-top: 34px;
  padding: 22px 24px;
}

.contact-direct span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-direct strong {
  color: var(--text);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.contact-direct p {
  margin: 4px 0 0;
  color: var(--muted);
}

.contact-form-card {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 28px;
}

.contact-form {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
}

.contact-form > label:not(.contact-consent) {
  margin-top: 10px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-form input[type="text"],
.contact-form textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(102, 126, 234, 0.24);
  border-radius: 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form textarea {
  flex: 1 1 190px;
  min-height: 190px;
  resize: vertical;
  line-height: 1.55;
}

.contact-form input[type="text"]:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.12);
}

.contact-topic {
  margin: 0 0 4px;
  padding: 11px 13px;
  border-radius: 10px;
  color: var(--muted);
  background: rgba(102, 126, 234, 0.08);
}

.contact-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 10px 0 4px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.contact-consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--accent);
}

.contact-consent a {
  color: var(--accent-strong);
  font-weight: 700;
}

.contact-submit {
  width: 100%;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
}

.contact-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (max-width: 820px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    padding: 0;
  }

  .contact-copy h1 {
    max-width: 15ch;
  }

  .contact-direct {
    margin-top: 22px;
  }
}

@media (max-width: 520px) {
  .contact-section {
    padding-top: 64px;
    padding-bottom: 44px;
  }

  .contact-form-card {
    padding: 20px;
    border-radius: 20px;
  }
}

.product-hero__copy {
  display: grid;
  align-content: center;
  gap: clamp(14px, 2vh, 22px);
}

.product-hero__copy h1 {
  max-width: 13.5ch;
  margin: 0;
  font-family: "Rubik", "Segoe UI", sans-serif;
  font-size: clamp(2.35rem, 4.1vw, 4.15rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.product-hero__copy .lead {
  max-width: 740px;
  margin: 0;
  font-size: clamp(1rem, 1.2vw, 1.16rem);
}

.product-hero__visual {
  display: grid;
  align-items: stretch;
  min-height: clamp(360px, 44vw, 560px);
}

.product-hero__visual .visual-placeholder {
  min-height: 100%;
}

.value-strip-section {
  padding: 8px 0 42px;
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(18px, 2.5vw, 28px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.18), transparent 34%),
    radial-gradient(circle at 92% 8%, rgba(102, 126, 234, 0.32), transparent 36%),
    linear-gradient(135deg, #201b3f 0%, #33255f 58%, #17172d 100%);
  box-shadow: 0 28px 80px rgba(23, 23, 45, 0.24);
}

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

.value-strip__item {
  min-height: 158px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.14), transparent 42%),
    rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.value-strip__item h3 {
  margin: 0 0 12px;
  color: #fff;
  font-family: "Rubik", "Segoe UI", sans-serif;
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.value-strip__item p {
  margin: 0;
  color: rgba(239, 242, 255, 0.78);
  font-size: 0.98rem;
  line-height: 1.55;
}

.landing-structured .section-heading h2 {
  max-width: 19ch;
  font-size: clamp(1.75rem, 3vw, 3.2rem);
  line-height: 1.02;
}

.system-features__list {
  display: grid;
  gap: clamp(22px, 4vw, 42px);
}

.feature-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  padding: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.92), transparent 42%),
    linear-gradient(135deg, rgba(102, 126, 234, 0.11), rgba(118, 75, 162, 0.06)),
    var(--panel);
}

.feature-block--reverse {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
}

.feature-block--reverse .feature-block__copy {
  order: 2;
}

.feature-block--reverse .feature-block__visual {
  order: 1;
}

.feature-block__copy {
  display: grid;
  align-content: center;
  gap: 16px;
  min-height: 360px;
  padding: clamp(28px, 4vw, 48px);
}

.feature-block__copy h3 {
  margin: 0;
  font-family: "Rubik", "Segoe UI", sans-serif;
  font-size: clamp(1.55rem, 2.35vw, 2.55rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.feature-block__copy p {
  margin: 0;
  max-width: 720px;
}

.feature-block__visual {
  display: grid;
  align-items: stretch;
  min-height: 360px;
  padding: clamp(14px, 2vw, 24px);
}

.feature-block__visual .visual-placeholder {
  min-height: 100%;
}

.feature-shot {
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius) - 8px);
}

.feature-shot__button {
  width: 100%;
  height: 100%;
  display: block;
  padding: 0;
  border: 0;
  border-radius: calc(var(--radius) - 8px);
  background: #fff;
  cursor: zoom-in;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(44, 51, 73, 0.13);
}

.feature-shot img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  object-position: top left;
  border-radius: inherit;
  border: 1px solid rgba(215, 222, 244, 0.86);
  background: #fff;
  transition: transform 220ms ease, filter 220ms ease;
}

.feature-shot__video-frame {
  width: 100%;
  aspect-ratio: var(--video-frame-ratio, 16 / 9);
  height: auto;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(215, 222, 244, 0.86);
  border-radius: calc(var(--radius) - 8px);
  background: #fff;
  box-shadow: 0 18px 42px rgba(44, 51, 73, 0.13);
}

.feature-shot__video {
  display: block;
  width: var(--video-crop-width, 116%);
  max-width: none;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center top;
  transform: translateX(var(--video-crop-x, -8%));
}

.product-hero__shot {
  align-self: center;
  width: 100%;
  min-height: 0;
  --video-crop-width: 128%;
  --video-crop-x: -11%;
  --video-frame-ratio: 16 / 9;
}

.feature-shot__button:hover img {
  transform: scale(1.018);
  filter: saturate(1.04) contrast(1.02);
}

.feature-details {
  margin-top: 8px;
}

.feature-details summary,
.feature-details__button {
  width: fit-content;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.76);
  font: inherit;
  font-weight: 900;
  list-style: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(44, 51, 73, 0.06);
}

.feature-details summary::-webkit-details-marker {
  display: none;
}

.feature-details[open] summary {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #2b3148, var(--accent-strong));
  box-shadow: 0 16px 32px rgba(43, 49, 72, 0.18);
}

.feature-details__content {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  transition: height 280ms ease, opacity 190ms ease, transform 240ms ease;
}

.feature-details[open] .feature-details__content {
  opacity: 1;
  transform: translateY(0);
}

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

.feature-details li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.55;
}

.feature-details li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(102, 126, 234, 0.11);
}

.feature-details-list,
.fit-card ul {
  display: grid;
  gap: 10px;
  padding: 4px 0 0;
  margin: 0;
  list-style: none;
}

.feature-details-list li,
.fit-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.55;
}

.feature-details-list li::before,
.fit-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(102, 126, 234, 0.11);
}

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

.landing-structured .segment-grid.segment-grid--4 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fit-card {
  display: grid;
  align-content: start;
  gap: 22px;
  min-height: 390px;
  padding: clamp(26px, 4vw, 44px);
}

.fit-card--accent {
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.9), transparent 42%),
    linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.08)),
    var(--panel);
}

.fit-card h3 {
  margin: 0;
  font-family: "Rubik", "Segoe UI", sans-serif;
  font-size: clamp(1.45rem, 2.2vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.fit-card .button {
  width: fit-content;
  margin-top: auto;
}

.pricing-section {
  scroll-margin-top: 100px;
}

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

.pricing-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  min-width: 0;
  min-height: 520px;
  padding: clamp(20px, 2.2vw, 28px);
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.86), transparent 34%),
    radial-gradient(circle at 94% 8%, rgba(102, 126, 234, 0.12), transparent 34%);
}

.pricing-card--bronze {
  background: linear-gradient(145deg, rgba(183, 121, 62, 0.25), rgba(255, 255, 255, 0.88));
}

.pricing-card--silver {
  background: linear-gradient(145deg, rgba(150, 164, 196, 0.25), rgba(255, 255, 255, 0.9));
}

.pricing-card--gold {
  background: linear-gradient(145deg, rgba(215, 169, 76, 0.25), rgba(255, 255, 255, 0.9));
}

.pricing-card--platinum {
  background: linear-gradient(145deg, rgba(120, 147, 190, 0.25), rgba(255, 255, 255, 0.9));
}

.pricing-card > * {
  position: relative;
  min-width: 0;
}

.pricing-card--featured {
  border-color: rgba(102, 126, 234, 0.42);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.88), transparent 35%),
    linear-gradient(145deg, rgba(150, 164, 196, 0.25), rgba(255, 255, 255, 0.88));
  box-shadow: 0 30px 90px rgba(74, 76, 142, 0.18);
  transform: translateY(-8px);
}

.pricing-card__head {
  display: grid;
  gap: 8px;
}

.pricing-card__badge {
  width: fit-content;
  margin: 2px 0 0;
  padding: 6px 10px;
  border: 1px solid rgba(102, 126, 234, 0.18);
  border-radius: 999px;
  color: var(--accent-2);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  font-weight: 800;
}

.pricing-card h3 {
  margin: 0;
  font-family: "Rubik", "Segoe UI", sans-serif;
  font-size: 1.16rem;
  line-height: 1.08;
  letter-spacing: -0.035em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.pricing-card__audience {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.pricing-card .pricing-card__price {
  width: 100%;
  margin: 8px 0 0;
  padding: 10px 12px;
  border: 1px solid rgba(102, 126, 234, 0.16);
  border-radius: 18px;
  color: var(--accent-2);
  background: rgba(102, 126, 234, 0.1);
  font-family: "Rubik", "Segoe UI", sans-serif;
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.05em;
  text-align: center;
  box-shadow: 0 16px 32px rgba(44, 48, 78, 0.08);
}

.pricing-card--bronze .pricing-card__price {
  background: rgba(183, 121, 62, 0.18);
  border-color: rgba(183, 121, 62, 0.18);
}

.pricing-card--silver .pricing-card__price {
  background: rgba(150, 164, 196, 0.2);
  border-color: rgba(150, 164, 196, 0.22);
}

.pricing-card--gold .pricing-card__price {
  background: rgba(215, 169, 76, 0.2);
  border-color: rgba(215, 169, 76, 0.22);
}

.pricing-card--platinum .pricing-card__price {
  background: rgba(120, 147, 190, 0.2);
  border-color: rgba(120, 147, 190, 0.22);
}

.pricing-card__features {
  display: grid;
  align-content: start;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-card__features li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
  font-weight: 450;
  line-height: 1.42;
  overflow-wrap: anywhere;
}

.pricing-card__features li::before {
  content: "";
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #3f2d69;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.09);
}

.pricing-card__action {
  display: grid;
  gap: 10px;
  align-content: end;
}

.pricing-card__action .button {
  width: 100%;
}

.pricing-card__action span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

.pricing-terms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 36px);
  margin-top: 18px;
  padding: clamp(24px, 3vw, 34px);
  background:
    radial-gradient(circle at 9% 16%, rgba(255, 255, 255, 0.9), transparent 36%),
    rgba(255, 255, 255, 0.72);
}

.pricing-terms h3 {
  margin: 0 0 10px;
  font-family: "Rubik", "Segoe UI", sans-serif;
  font-size: 1.28rem;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.pricing-terms p {
  margin: 0;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.6;
}

.image-popup {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
  background: rgba(28, 31, 48, 0.64);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.image-popup.is-open {
  opacity: 1;
  pointer-events: auto;
}

.has-image-popup {
  overflow: hidden;
}

.image-popup__dialog {
  position: relative;
  width: min(1380px, 96vw);
  max-height: 92vh;
  display: grid;
  gap: 12px;
  padding: clamp(12px, 2vw, 22px);
  border: 1px solid rgba(215, 222, 244, 0.86);
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.96), transparent 44%),
    rgba(248, 250, 255, 0.96);
  box-shadow: 0 30px 90px rgba(20, 23, 38, 0.35);
  transform: translateY(12px) scale(0.98);
  transition: transform 220ms ease;
}

.image-popup.is-open .image-popup__dialog {
  transform: translateY(0) scale(1);
}

.image-popup__title {
  margin: 0;
  padding-right: 52px;
  color: var(--text);
  font-weight: 900;
}

.image-popup img {
  display: block;
  width: 100%;
  max-height: calc(92vh - 92px);
  object-fit: contain;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.image-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 980px) {
  .landing-structured .product-hero {
    grid-template-columns: 1fr;
    max-height: none;
    min-height: auto;
  }

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

  .landing-structured .segment-grid.segment-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .feature-block,
  .feature-block--reverse {
    grid-template-columns: 1fr;
  }

  .feature-block--reverse .feature-block__copy,
  .feature-block--reverse .feature-block__visual {
    order: initial;
  }

  .feature-block__copy {
    min-height: auto;
  }

  .feature-block__visual {
    min-height: 280px;
    padding-top: 0;
  }

  .feature-shot img {
    min-height: 260px;
  }

  .header-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    margin-left: 0;
  }

  .header-action {
    width: 100%;
  }

  .register-auth-form .form-row {
    grid-template-columns: 1fr;
  }

  .register-auth-card {
    padding: 26px 22px;
  }
}

@media (max-width: 640px) {
  .value-strip {
    grid-template-columns: 1fr;
  }

  .landing-structured .segment-grid.segment-grid--4 {
    grid-template-columns: 1fr;
  }
}

.story-split {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.85fr);
  gap: 28px;
  align-items: stretch;
  padding: clamp(28px, 4vw, 46px);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.92), transparent 42%),
    linear-gradient(135deg, rgba(102, 126, 234, 0.13), rgba(118, 75, 162, 0.07)),
    var(--panel);
}

.story-split__copy {
  display: grid;
  align-content: center;
}

.story-split__copy h2,
.module-showcase-section h2,
.workflow-board-section h2,
.outcome-strip h2 {
  margin: 0;
  font-family: "Rubik", "Segoe UI", sans-serif;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.story-split__copy h2 {
  max-width: 16ch;
  font-size: clamp(1.9rem, 3.2vw, 3.4rem);
}

.story-split__copy p,
.module-showcase-section .section-heading p,
.workflow-board-section .section-heading p,
.outcome-strip__heading p {
  max-width: 760px;
}

.story-split__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.story-split__list li {
  position: relative;
  padding: 13px 14px 13px 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--text);
  font-weight: 700;
}

.story-split__list li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 19px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(102, 126, 234, 0.14);
}

.story-split__visual {
  display: grid;
  align-items: stretch;
}

.mini-chart {
  display: grid;
  align-content: space-between;
  gap: 18px;
  min-height: 300px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 8px);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.mini-chart strong {
  font-size: 1.1rem;
}

.mini-chart__bars {
  display: grid;
  gap: 12px;
}

.mini-chart__bar {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}

.mini-chart__bar::after {
  content: "";
  display: block;
  width: var(--value);
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 22px rgba(102, 126, 234, 0.2);
}

.mini-chart p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.module-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1.38fr);
  gap: 18px;
  overflow: hidden;
  padding: clamp(24px, 3vw, 36px);
  background:
    radial-gradient(circle at 18% 50%, rgba(102, 126, 234, 0.18), transparent 34%),
    radial-gradient(circle at 88% 10%, rgba(118, 75, 162, 0.12), transparent 32%),
    rgba(255, 255, 255, 0.7);
}

.module-showcase::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px dashed rgba(102, 126, 234, 0.22);
  border-radius: calc(var(--radius) - 10px);
  pointer-events: none;
}

.module-showcase__core {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 10px;
  min-height: 360px;
  padding: 24px;
  border-radius: calc(var(--radius) - 8px);
  background:
    linear-gradient(135deg, rgba(102, 126, 234, 0.16), rgba(118, 75, 162, 0.1)),
    rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.module-showcase__core span {
  color: var(--accent-strong);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 900;
}

.module-showcase__core strong {
  max-width: 8ch;
  font-family: "Rubik", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.module-showcase__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.module-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 170px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 36px rgba(44, 51, 73, 0.08);
}

.module-card span {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--accent-strong);
  background: rgba(102, 126, 234, 0.11);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.module-card h3,
.workflow-card h3,
.outcome-strip__items strong {
  margin: 0;
}

.module-card p {
  margin: 0;
}

.workflow-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.workflow-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 240px;
}

.workflow-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 52px;
  right: -15px;
  width: 14px;
  height: 14px;
  border-top: 2px solid rgba(102, 126, 234, 0.35);
  border-right: 2px solid rgba(102, 126, 234, 0.35);
  transform: rotate(45deg);
}

.workflow-card__head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.workflow-card__head span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--accent-strong);
  background: var(--panel-strong);
  font-weight: 900;
}

.workflow-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.workflow-card__tags span {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(102, 126, 234, 0.09);
  font-size: 0.85rem;
  font-weight: 800;
}

.outcome-strip {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 22px;
  align-items: center;
  padding: clamp(26px, 4vw, 42px);
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 255, 255, 0.86), transparent 42%),
    linear-gradient(135deg, rgba(102, 126, 234, 0.16), rgba(118, 75, 162, 0.08)),
    var(--panel);
}

.outcome-strip__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.outcome-strip__items article {
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.outcome-strip__items span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-strong);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.outcome-strip__items p {
  margin-bottom: 0;
}

@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-card--featured {
    transform: none;
  }

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

  .workflow-card::after {
    display: none;
  }
}

@media (max-width: 860px) {
  .story-split,
  .module-showcase,
  .outcome-strip {
    grid-template-columns: 1fr;
  }

  .story-split__list,
  .module-showcase__grid,
  .outcome-strip__items {
    grid-template-columns: 1fr;
  }

  .module-showcase__core {
    min-height: 220px;
  }

  .pricing-terms {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    min-height: auto;
  }

  .workflow-board {
    grid-template-columns: 1fr;
  }
}
