/* Clean design system — extends hero/practices style site-wide */

html {
 --mouse-x: 50%;
 --mouse-y: 35%;
}

.section {
 position: relative;
 overflow: visible;
 background: transparent;
}

.section__glow {
 display: none;
}

.hl {
 color: var(--accent, var(--blue));
 font-style: normal;
 font-weight: inherit;
}

.section-label,
.practices__label {
 font-size: 0.6875rem;
 font-weight: 500;
 letter-spacing: 0.16em;
 text-transform: uppercase;
 color: var(--muted);
 margin-bottom: 1.25rem;
}

.section-head {
 max-width: 28rem;
 margin-bottom: clamp(3rem, 8vw, 4.5rem);
}

.section-head h2,
.origin__text > h2,
#contact h2,
.cta h2 {
 padding-bottom: 0;
 display: block;
 font-weight: 600;
 font-size: clamp(1.75rem, 4.5vw, 2.75rem);
 letter-spacing: -0.04em;
 line-height: 1.12;
}

.section-head h2::after,
.origin__text > h2::after,
#contact h2::after,
.cta h2::after {
 display: none;
}

.section-head p {
 font-size: 0.9375rem;
 line-height: 1.75;
 max-width: 26rem;
 margin-inline: auto;
}

.section--subtle {
 background: transparent;
}

.section--dark {
 background: transparent;
 color: var(--ink);
}

.section--dark .section-label {
 color: var(--muted);
}

.section--dark .section-head h2,
.section--dark .origin__text h2 {
 color: var(--ink);
}

.section--dark .section-head p,
.section--dark .origin__text p {
 color: var(--muted);
}

.section--dark .origin__region {
 background: transparent;
 border: none;
 padding: 0;
 border-radius: 0;
 color: var(--muted);
 font-size: 0.8125rem;
}

.section--dark .tech-pill {
 color: var(--muted);
}

/* Services / cards → minimal list grid */
.services-grid {
 max-width: 44rem;
 margin-inline: auto;
 gap: 0;
 border-top: 1px solid var(--border);
 grid-template-columns: 1fr;
}

@media (min-width: 640px) {
 .services-grid {
  grid-template-columns: repeat(2, 1fr);
 }
}

.card {
 background: transparent;
 border: none;
 border-bottom: 1px solid var(--border);
 border-radius: 0;
 padding: clamp(1.5rem, 3vw, 1.85rem) 0.25rem;
 box-shadow: none;
 transition: background 0.35s ease;
}

@media (min-width: 640px) {
 .services-grid .card:nth-child(odd) {
  padding-right: 1.5rem;
  border-right: 1px solid var(--border);
 }

 .services-grid .card:nth-child(even) {
  padding-left: 1.5rem;
 }
}

.card:hover {
 transform: none;
 box-shadow: none;
 background: rgba(10, 132, 255, 0.025);
 border-color: var(--border);
}

.card:hover h3 {
 color: var(--blue);
}

.card__icon {
 width: auto;
 height: auto;
 background: none;
 border-radius: 0;
 margin-bottom: 0.65rem;
 padding: 0;
}

.card__icon svg {
 width: 1rem;
 height: 1rem;
 color: var(--blue);
 opacity: 0.85;
}

.card h3 {
 font-size: 1.0625rem;
 font-weight: 600;
 letter-spacing: -0.02em;
 transition: color 0.35s ease;
}

.card p {
 font-size: 0.875rem;
 line-height: 1.65;
}

/* Portfolio */
.section--work {
 background: transparent;
 border: none;
}

.section--work::before {
 display: none;
}

.work-highlight,
.hl-num {
 color: var(--blue);
 font-weight: 600;
}

.work-grid {
 gap: 0.75rem;
}

.work-item {
 border-radius: var(--radius);
 box-shadow: none;
 transition: border-color 0.35s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-item:hover {
 transform: translateY(-2px);
 box-shadow: none;
 border-color: rgba(10, 132, 255, 0.35);
}

.work-banner {
 margin-top: 2.5rem;
 padding: 2rem 0;
 background: transparent;
 border: none;
 border-top: 1px solid var(--border);
 border-bottom: 1px solid var(--border);
 border-radius: 0;
}

.work-banner:hover {
 box-shadow: none;
}

.work-banner__num {
 font-weight: 600;
 font-size: clamp(1.5rem, 4vw, 2rem);
}

/* Process */
.process-grid {
 max-width: 40rem;
 margin-inline: auto;
 gap: 0;
 grid-template-columns: 1fr;
 border-top: 1px solid var(--border);
}

.step {
 padding: clamp(1.5rem, 3vw, 2rem) 0;
 border-bottom: 1px solid var(--border);
 display: grid;
 grid-template-columns: 2.5rem 1fr;
 gap: 0 1.25rem;
 align-items: start;
}

.step__num {
 margin-bottom: 0;
 padding-top: 0.2rem;
 color: var(--gray-light);
 font-weight: 500;
 font-size: 0.6875rem;
 letter-spacing: 0.06em;
}

.step h3 {
 font-size: 1.0625rem;
 font-weight: 600;
 letter-spacing: -0.02em;
}

/* Pricing / engagement */
.pricing-grid {
 max-width: 40rem;
 margin-inline: auto;
 gap: 0;
 border-top: 1px solid var(--border);
 grid-template-columns: 1fr;
}

.pricing-card {
 border: none;
 border-bottom: 1px solid var(--border);
 border-radius: 0;
 background: transparent;
 padding: clamp(1.75rem, 4vw, 2.25rem) 0;
 box-shadow: none;
 transition: background 0.35s ease;
}

.pricing-card--featured {
 background: transparent;
 border-color: var(--border);
 box-shadow: none;
}

.pricing-card:hover {
 background: rgba(10, 132, 255, 0.025);
}

.pricing-card__label {
 color: var(--muted);
 font-size: 0.6875rem;
 letter-spacing: 0.16em;
}

.pricing-card h3 {
 font-weight: 600;
 letter-spacing: -0.03em;
}

/* Origin / team */
.origin__card {
 background: var(--bg);
 color: var(--ink);
 border: 1px solid var(--border);
 border-radius: var(--radius-lg);
 box-shadow: none;
 padding: clamp(1.75rem, 4vw, 2.5rem);
}

.origin__card::before {
 display: none;
}

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

.origin__card-label {
 color: var(--blue);
 letter-spacing: 0.16em;
}

.origin__stats {
 border-top-color: var(--border);
}

.origin__stat strong {
 color: var(--ink);
 font-weight: 600;
}

.origin__stat span {
 color: var(--muted);
 text-transform: none;
 letter-spacing: 0;
 font-size: 0.8125rem;
}

/* Location */
.location-grid {
 gap: clamp(3rem, 6vw, 5rem);
}

.location-map {
 background: transparent;
 border: none;
 border-top: 1px solid var(--border);
 border-radius: 0;
 padding: 2rem 0 0;
 min-height: auto;
}

.location-map::before {
 display: none;
}

.location-stat {
 background: transparent;
 border: none;
 border-top: 1px solid var(--border);
 border-radius: 0;
 padding: 1rem 0;
}

.location-stat strong {
 font-weight: 600;
}

/* Features marquee → static tags */
.marquee-group {
 gap: 0.75rem;
}

.marquee {
 mask-image: none;
 overflow: visible;
}

.marquee__track {
 animation: none;
 flex-wrap: wrap;
 justify-content: center;
 width: 100%;
 max-width: 36rem;
 margin-inline: auto;
 gap: 0.35rem 0.75rem;
}

.tech-pill {
 border: none;
 background: none;
 padding: 0;
 font-size: 0.8125rem;
 font-weight: 500;
 color: var(--muted);
}

.tech-pill:not(:last-child)::after {
 content: '·';
 margin-left: 0.75rem;
 color: var(--border);
}

/* Owners */
.owners-grid,
.owners-split {
 max-width: 44rem;
 margin-inline: auto;
}

.owners-grid {
 gap: 0;
 border-top: 1px solid var(--border);
 grid-template-columns: 1fr;
}

.owners-card {
 background: transparent;
 border: none;
 border-bottom: 1px solid var(--border);
 border-radius: 0;
 padding: 1.5rem 0;
}

.owners-card:hover {
 box-shadow: none;
 background: rgba(10, 132, 255, 0.02);
}

.owners-panel {
 background: transparent;
 border: none;
 border-top: 1px solid var(--border);
 border-radius: 0;
 padding: 1.75rem 0;
}

.owners-panel h3 {
 color: var(--muted);
 letter-spacing: 0.16em;
 font-size: 0.6875rem;
}

.owners-tags li {
 background: none;
 border: none;
 padding: 0;
 color: var(--muted);
 font-size: 0.8125rem;
}

.owners-tags li:not(:last-child)::after {
 content: '·';
 margin: 0 0.5rem;
 color: var(--border);
}

/* FAQ */
.faq {
 max-width: 40rem;
 border-top: 1px solid var(--border);
}

.faq-item {
 padding: 1.5rem 0;
}

.faq-item h3 {
 font-size: 1rem;
 font-weight: 600;
 letter-spacing: -0.02em;
}

.faq-item p {
 font-size: 0.875rem;
 line-height: 1.7;
}

/* Contact */
.contact-grid {
 gap: clamp(3rem, 8vw, 5rem);
 max-width: 52rem;
 margin-inline: auto;
}

.contact-form {
 background: transparent;
 border: none;
 border-top: 1px solid var(--border);
 border-radius: 0;
 padding: 0;
 padding-top: 0.5rem;
}

.contact-form--panel,
.contact-block .contact-form--panel {
 background: var(--bg);
 border: 1px solid var(--border);
 border-radius: var(--radius-lg);
 padding: clamp(1.75rem, 4vw, 2.25rem);
 border-top: 1px solid var(--border);
 padding-top: clamp(1.75rem, 4vw, 2.25rem);
 box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
}

input,
select,
textarea {
 border: none;
 border-bottom: 1px solid var(--border);
 border-radius: 0;
 padding: 0.8rem 0;
 background: transparent;
 transition: border-color 0.3s ease;
}

.contact-form--panel input,
.contact-form--panel select,
.contact-form--panel textarea {
 border: 1px solid var(--border);
 border-radius: 10px;
 padding: 0.7rem 0.875rem;
 background: var(--bg);
}

input:focus,
select:focus,
textarea:focus {
 box-shadow: none;
 border-color: var(--accent, var(--blue));
}

.contact-form--panel input:focus,
.contact-form--panel select:focus,
.contact-form--panel textarea:focus {
 box-shadow: 0 0 0 3px rgba(var(--accent-rgb, 10, 132, 255), 0.12);
 border-color: var(--accent, var(--blue));
}

.contact-meta {
 border-top: 1px solid var(--border);
 padding-top: 2rem;
}

.contact-meta dt {
 letter-spacing: 0.14em;
 font-size: 0.625rem;
}

/* CTA */
.section--cta {
 padding: clamp(5rem, 14vw, 8rem) 0;
}

.cta {
 background: transparent;
 border: none;
 border-top: 1px solid var(--border);
 border-radius: 0;
 box-shadow: none;
 color: var(--ink);
 padding: clamp(4rem, 10vw, 6rem) 0 0;
 overflow: visible;
}

.cta::before {
 display: none;
}

.cta p {
 color: var(--muted);
 max-width: 24rem;
}

.cta .logo--lg {
 margin-bottom: 2rem;
}

.cta .logo__azor,
.cta .logo__labs {
 color: var(--ink);
}

/* Footer — keep atmosphere visible */
.footer {
 background: transparent;
 border-top: 1px solid var(--border);
}

.footer__bottom {
 border-top: 1px solid var(--border);
}

/* Nav & buttons */
.nav__inner {
 box-shadow: none;
 background: rgba(255, 255, 255, 0.72);
}

.nav__links .btn,
.btn--blue,
.btn--primary {
 box-shadow: none;
}

.btn--blue:hover,
.btn--primary:hover {
 box-shadow: none;
}

.btn--ghost {
 border-color: var(--border);
 font-weight: 500;
}

.clean-title {
 margin: 0 0 1rem;
 font-size: clamp(1.75rem, 4.5vw, 2.75rem);
 font-weight: 600;
 letter-spacing: -0.04em;
 line-height: 1.12;
}

.clean-text {
 color: var(--muted);
 margin: 0 0 1rem;
 font-size: 0.9375rem;
 line-height: 1.75;
 max-width: 26rem;
}

.clean-text:last-of-type {
 margin-bottom: 0;
}

.contact-form .btn[type="submit"] {
 width: 100%;
 padding: 0.875rem;
}

.hero .hl {
 font-weight: 600;
 color: var(--accent, var(--blue));
}

@media (prefers-reduced-motion: reduce) {
 .cursor-glow,
 .section__glow {
  display: none;
 }
}
