:root {
  --bg: #0b1c2c;
  --bg2: #071725;
  --panel: #11364f;
  --panel2: #1a3a53;
  --glass: rgba(255,255,255,.075);
  --glass2: rgba(255,255,255,.11);
  --line: rgba(103,232,249,.16);
  --line-soft: rgba(255,255,255,.14);
  --text: #ffffff;
  --muted: #cbd5e1;
  --muted2: #9fb5c7;
  --cyan: #67e8f9;
  --blue: #2563eb;
  --green: #20c997;
  --yellow: #facc15;
  --red: #e31b3c;
  --office-violet: #8b5cf6;
  --office-violet-light: #a855f7;
  --civic-cyan: #0891b2;
  --civic-cyan-light: #67e8f9;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 12% 0, rgba(37,99,235,.18), transparent 26%),
    radial-gradient(circle at 88% 10%, rgba(32,201,151,.10), transparent 30%),
    var(--bg);
  color: var(--text);
}

a {
  color: inherit;
}

.registry-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* Shared header */
.market-banner {
  background: var(--yellow);
  color: #1f2937;
  text-align: center;
  font-weight: 900;
  padding: 9px;
}

.registry-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(11,28,44,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.registry-header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.registry-brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: #fff;
}

.registry-brand-image {
  line-height: 0;
}

.registry-logo-img {
  display: block;
  width: 150px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.registry-dot {
  display: none;
}

.registry-nav {
  display: flex;
  gap: 6px;
}

.registry-nav a,
.registry-actions a {
  text-decoration: none;
  padding: 9px 11px;
  border-radius: 999px;
  font-weight: 800;
  color: #dffbff;
  font-size: 14px;
}

.registry-nav a:hover,
.registry-nav a.is-active,
.registry-actions .lang.is-active {
  background: rgba(103,232,249,.13);
  color: #fff;
}

.registry-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.back-kulore {
  border: 1px solid rgba(103,232,249,.24);
}

/* Shared layout */
.hero {
  padding: 86px 0 58px;
  background:
    radial-gradient(circle at 12% 0, rgba(37,99,235,.28), transparent 26%),
    radial-gradient(circle at 88% 12%, rgba(32,201,151,.12), transparent 30%),
    transparent;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: center;
}

.section,
.section-light,
.section-dark,
.pricing-section,
.enterprise-section {
  padding: 62px 0;
  background: transparent;
  color: var(--text);
}

.eyebrow {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(103,232,249,.12);
  color: var(--cyan);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  margin-bottom: 15px;
}

h1 {
  font-size: clamp(42px, 6vw, 74px);
  line-height: .96;
  letter-spacing: -.06em;
  margin: 0 0 20px;
  color: #fff;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: -.04em;
  margin: 0 0 15px;
  color: #fff;
}

h3 {
  font-size: 22px;
  margin: 0 0 10px;
  color: #fff;
}

p,
.lead,
.long-copy,
.card p,
.muted {
  color: var(--muted);
}

.lead {
  font-size: 20px;
  max-width: 760px;
}

.long-copy {
  font-size: 17px;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 900;
  text-decoration: none;
  border: 0;
}

.btn-primary {
  background: var(--green);
  color: #071b15;
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,.72);
  color: #e0faff;
  background: transparent;
}

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

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

.card,
.office-card,
.price-card,
.enterprise-card,
.future-card,
.pricing-highlight-card,
.contact-card {
  background: var(--glass);
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 18px 55px rgba(0,0,0,.18);
  color: var(--text);
}

.card li,
.office-card li,
.price-card li,
.enterprise-card li,
.future-card li {
  color: var(--muted);
}

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

.feature-list li {
  padding-left: 28px;
  position: relative;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.mockup {
  border-radius: 22px;
  border: 1px solid rgba(103,232,249,.18);
  background: rgba(255,255,255,.06);
  padding: 16px;
  box-shadow: 0 24px 80px rgba(0,0,0,.25);
}

.placeholder {
  min-height: 310px;
  border: 1px dashed rgba(103,232,249,.25);
  border-radius: 18px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #d7faff;
  background: linear-gradient(135deg, rgba(103,232,249,.08), rgba(255,255,255,.03));
}

.notice,
.callout {
  border-radius: 22px;
  padding: 22px 24px;
  margin-top: 20px;
}

.notice {
  border: 1px solid rgba(250,204,21,.26);
  background: rgba(250,204,21,.10);
  color: #f8fafc;
}

.notice p,
.notice li {
  color: #fde68a;
}

.callout {
  background: rgba(8,145,178,.12);
  border: 1px solid rgba(8,145,178,.32);
  color: #f8fafc;
}

.callout p,
.callout li {
  color: #cffafe;
}

/* Anchor strips */
.anchor-strip,
.anchor-strip-dark {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
}

.anchor-strip a,
.anchor-strip-dark a {
  text-decoration: none;
  border-radius: 999px;
  padding: 9px 12px;
  font-weight: 850;
  color: #f8fafc;
  background: rgba(255,255,255,.08);
}

.anchor-strip a:hover {
  background: rgba(8,145,178,.22);
  color: #a5f3fc;
}

.anchor-strip-dark a:hover {
  background: rgba(168,85,247,.20);
  color: #e9d5ff;
}

/* Process blocks */
.module-section {
  scroll-margin-top: 95px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
  margin-top: 18px;
}

.process-list div {
  border-radius: 18px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  padding: 18px;
  color: var(--muted);
}

.final-cta {
  text-align: center;
}

.final-cta .actions {
  justify-content: center;
}

/* Civic variant: same dark background, cyan accent */
.registry-civic {
  background: var(--bg);
  color: var(--text);
}

.registry-civic .hero {
  background:
    radial-gradient(circle at 12% 0, rgba(8,145,178,.28), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(32,201,151,.16), transparent 28%),
    transparent;
}

.registry-civic .eyebrow,
.registry-civic .price-card .price,
.registry-civic .pricing-highlight-card h2 {
  color: var(--civic-cyan-light);
}

.registry-civic .feature-list li::before {
  color: var(--civic-cyan-light);
}

.registry-civic .btn-secondary {
  color: #f8fafc;
  border-color: rgba(255,255,255,.72);
}

/* Office variant: same dark background, violet accent */
.registry-office {
  background: var(--bg);
  color: var(--text);
}

.registry-office .hero {
  background:
    radial-gradient(circle at 12% 0, rgba(139,92,246,.26), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(103,232,249,.12), transparent 28%),
    transparent;
}

.registry-office .eyebrow {
  background: rgba(168,85,247,.14);
  color: #e9d5ff;
}

.registry-office .feature-list li::before {
  color: var(--office-violet-light);
}

.office-callout {
  background: rgba(168,85,247,.12);
  border-color: rgba(168,85,247,.32);
}

.office-callout p,
.office-callout li {
  color: #d8b4fe;
}

.office-notice {
  background: rgba(250,204,21,.12);
  border-color: rgba(250,204,21,.26);
}

/* Pricing page: same dark background */
.registry-pricing {
  background: var(--bg);
  color: var(--text);
}

.registry-pricing .hero,
.registry-pricing .pricing-hero {
  background:
    radial-gradient(circle at 10% 0, rgba(32,201,151,.18), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(168,85,247,.18), transparent 30%),
    transparent;
}

.pricing-highlight-card h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin: 14px 0;
}

.price {
  font-size: 34px;
  font-weight: 900;
}

.price-card .price {
  font-size: 34px;
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -.04em;
  margin: 8px 0 12px;
  color: var(--cyan);
}

.price-card .price small {
  display: block;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0;
  color: #a7f3d0;
  margin-top: 4px;
}

.price-card-featured {
  border-color: rgba(32,201,151,.35);
  box-shadow: 0 18px 60px rgba(32,201,151,.12);
}

.enterprise-card {
  border-color: rgba(168,85,247,.28);
}

.enterprise-card .price {
  color: #c4b5fd;
}

.full-btn {
  width: 100%;
  margin-top: 16px;
  text-align: center;
}

.mini-btn {
  padding: 8px 10px;
  font-size: 13px;
  white-space: nowrap;
}

.pricing-table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.075);
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
}

.pricing-table {
  width: 100%;
  min-width: 1040px;
  border-collapse: collapse;
  font-size: 14px;
  color: #f8fafc;
}

.small-table .pricing-table {
  min-width: 720px;
}

.pricing-table th,
.pricing-table td {
  padding: 14px 16px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.10);
  vertical-align: middle;
}

.pricing-table th:first-child,
.pricing-table td:first-child {
  text-align: left;
  font-weight: 850;
  position: sticky;
  left: 0;
  z-index: 1;
}

.pricing-table thead th,
.pricing-table thead th:first-child {
  background: rgba(3,12,23,.96);
  color: #ffffff;
  font-weight: 900;
  z-index: 2;
}

.pricing-table td {
  color: #dbeafe;
}

.pricing-table td:first-child {
  background: #0b1c2c;
  color: #ffffff;
}

.pricing-table tbody tr:hover td {
  background: rgba(8,145,178,.16);
}

.pricing-table tbody tr:hover td:first-child {
  background: #102944;
}

.price-row td {
  font-weight: 950;
  color: #67e8f9;
}

.order-row td {
  border-bottom: 0;
  background: rgba(32,201,151,.10);
}

.future-card span {
  display: inline-block;
  margin-top: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(103,232,249,.14);
  color: #a5f3fc;
  font-weight: 850;
  font-size: 13px;
}

.price-example strong {
  display: block;
  margin: 14px 0 4px;
  color: #fff;
}

/* Forms / contact */
.form-grid,
.contact-card .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}

.field,
.form-field,
.contact-card .form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field.full,
.form-field.full,
.contact-card .form-field.full {
  grid-column: 1 / -1;
}

label,
.contact-card label {
  font-weight: 850;
  color: #f8fafc;
}

input,
select,
textarea,
.contact-card input,
.contact-card select,
.contact-card textarea {
  width: 100%;
  border: 1px solid rgba(19,36,59,.18);
  border-radius: 14px;
  padding: 12px 13px;
  font: inherit;
  background: #fff;
  color: #13243b;
}

textarea,
.contact-card textarea {
  min-height: 125px;
  resize: vertical;
}

.checkbox-field label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 650;
  color: #cbd5e1;
}

.checkbox-field input {
  width: auto;
  margin-top: 5px;
}

/* Footer */
.registry-footer {
  background: #071725;
  border-top: 1px solid rgba(103,232,249,.18);
  padding: 34px 0 0;
}

.registry-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  font-size: 28px;
  font-weight: 900;
}

.registry-footer p {
  color: #b8d7df;
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-links a {
  color: #67e8f9;
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(103,232,249,.14);
  margin-top: 28px;
  padding: 14px;
  color: #67e8f9;
  font-size: 12px;
}

/* Responsive */
@media (max-width: 920px) {
  .registry-header-inner {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .registry-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
  }

  .hero-grid,
  .grid-2,
  .grid-3,
  .form-grid,
  .contact-card .form-grid,
  .process-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .registry-logo-img {
    width: 120px;
    max-height: 48px;
  }
}

  h1 {
    font-size: 42px;
  }

  .registry-actions {
    flex-wrap: wrap;
  }

  .back-kulore {
    display: none;
  }
}
