/* =========================================================
   SITE — main visual layer loaded on non-product pages.
   Massive typography, scroll-driven reveals, cinematic showcase.
   ========================================================= */

/* Apple's signature easing curve */
:root {
  --apple-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --apple-ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

/* -------- SF-adjacent system type -------- */
body {
  font-family: 'SF Pro Display', 'SF Pro Text', -apple-system, BlinkMacSystemFont,
               'Inter', 'Mulish', 'Segoe UI', system-ui, sans-serif;
  background: #ffffff;
  color: #1d1d1f;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "kern", "liga", "ss01";
}

h1, h2, h3, h4 {
  font-family: inherit;
  color: #1d1d1f;
  letter-spacing: -0.035em;
  font-weight: 700;
  line-height: 1.04;
}
h1 { font-size: clamp(52px, 7vw, 112px); font-weight: 700; letter-spacing: -0.045em; }
h2 { font-size: clamp(40px, 5vw, 80px); font-weight: 700; letter-spacing: -0.04em; }
h3 { font-size: clamp(26px, 2.8vw, 40px); font-weight: 600; letter-spacing: -0.025em; }

h1 em, h2 em, h3 em {
  font-style: normal;
  color: transparent;
  background: linear-gradient(135deg, #108fd4 0%, #00c2ff 50%, #0a7dc4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 700;
}

.lead {
  color: #6e6e73;
  font-size: clamp(19px, 1.6vw, 24px);
  font-weight: 400;
  line-height: 1.4;
}

p { color: #424245; }

/* -------- Apple-style nav: frosted, minimal -------- */
.topbar { display: none; }
.site-header {
  background: rgba(255,255,255,0.72);
  backdrop-filter: saturate(1.8) blur(20px);
  -webkit-backdrop-filter: saturate(1.8) blur(20px);
  border-bottom: none;
  height: 52px;
}
.nav {
  padding: 0 22px;
  height: 52px;
  max-width: var(--maxw);
}
.brand__img { height: 38px; }
.nav__links {
  gap: 28px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(29,29,31,0.85);
}
.nav__links a { color: inherit; padding: 4px 0; }
.nav__links a::after { display: none; }
.nav__links a:hover { color: #1d1d1f; opacity: .7; }
.nav__links a.active { color: #1d1d1f; font-weight: 500; }
.nav__cta {
  padding: 6px 14px;
  background: #19A3DD;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  border-radius: 980px;
  transition: all .3s var(--apple-ease);
}
.nav__cta:hover { background: #1A478D; transform: none; }

/* -------- Buttons: Apple pill buttons -------- */
.btn {
  border-radius: 980px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 400;
  border: none;
  background: #19A3DD;
  color: #fff;
  letter-spacing: 0;
  transition: background .25s var(--apple-ease), transform .25s var(--apple-ease);
}
.btn:hover {
  background: #1A478D;
  border: none;
  transform: none;
}
.btn .arrow {
  font-weight: 500;
  margin-left: 4px;
}
.btn--ghost {
  background: transparent;
  color: #19A3DD;
  border: none;
  padding-left: 0;
}
.btn--ghost:hover {
  background: transparent;
  color: #1A478D;
  text-decoration: none;
}
.btn--ghost .arrow { margin-left: 6px; }

/* Typography Apple calls "cherry" — accent link */
.eyebrow {
  color: #6e6e73;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

/* -------- Hero: enormous, centered, scroll-pinned -------- */
.hero {
  min-height: 100vh;
  background: linear-gradient(180deg, #f5f5f7 0%, #ffffff 100%);
  padding: 0;
  position: relative;
  overflow: hidden;
  align-items: flex-start;
  padding-top: 120px;
}
.hero .wrap { padding-top: 0; }
.hero__glow { display: none; }
.hero__grid { opacity: 0.3; }

.hero__inner {
  grid-template-columns: 1fr !important;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  gap: 30px !important;
  padding: 40px 0 0;
}
.hero__text { text-align: center; }
.hero__text .eyebrow {
  display: block;
  margin-bottom: 16px;
  color: #19A3DD;
  font-weight: 600;
}
.hero__text h1 {
  font-size: clamp(48px, 8vw, 112px) !important;
  line-height: 1 !important;
  letter-spacing: -0.05em !important;
  font-weight: 700;
  color: #1d1d1f;
  margin: 0 auto 20px;
  max-width: 16ch;
}
.hero__lead {
  font-size: clamp(20px, 1.8vw, 28px);
  color: #6e6e73;
  font-weight: 400;
  max-width: 720px;
  margin: 0 auto 32px;
  text-align: center;
}
.hero__cta {
  justify-content: center;
  gap: 18px;
  margin-top: 8px;
}
.hero__cta .btn {
  padding: 14px 28px;
  font-size: 15px;
}

/* Hero meta as pill callouts */
.hero__meta {
  margin-top: 70px !important;
  padding-top: 0 !important;
  border: none !important;
  justify-content: center !important;
  gap: 80px !important;
}
.hero__meta-item {
  text-align: center;
}
.hero__meta-item .n {
  font-family: inherit;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 700;
  color: #1d1d1f;
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero__meta-item .l {
  font-family: inherit;
  color: #6e6e73;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  margin-top: 10px;
}

/* Hysteresis curve — keep but make it feel integrated */
.hero__visual {
  justify-self: center;
  max-width: 440px;
  margin-top: 60px;
}
.hysteresis-svg .curve {
  filter: drop-shadow(0 0 20px rgba(25,163,221,.4));
}
.hysteresis-svg .axis { stroke: rgba(29,29,31,.2); }
.hysteresis-svg .grid { stroke: rgba(29,29,31,.05); }
.hysteresis-svg .label { fill: rgba(29,29,31,.5); }
.hysteresis-svg .label--accent { fill: #19A3DD; }

/* -------- Sections: generous whitespace -------- */
section {
  padding: clamp(100px, 12vw, 180px) 0;
  background: #ffffff;
}

/* Alternating panel backgrounds like Apple */
section:nth-of-type(even) {
  background: #f5f5f7;
}

.sec-head {
  grid-template-columns: 1fr !important;
  gap: 0 !important;
  text-align: center;
  margin-bottom: 80px !important;
  padding-bottom: 0 !important;
  border: none !important;
  max-width: 900px;
  margin-left: auto !important;
  margin-right: auto !important;
}
.sec-head__title {
  font-size: clamp(40px, 5vw, 80px);
  letter-spacing: -0.04em;
  font-weight: 700;
  margin-bottom: 14px;
}
.sec-head__desc {
  font-size: clamp(17px, 1.5vw, 22px);
  color: #6e6e73;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

/* -------- Product cards: enormous showcase tiles -------- */
.products-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.product-card {
  background: #f5f5f7;
  border: none;
  border-radius: 22px;
  overflow: hidden;
  transition: transform .6s var(--apple-ease);
  min-height: 520px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card:hover {
  transform: scale(1.01);
  border: none;
}
.product-card__body {
  order: -1;
  padding: 48px 48px 16px;
  text-align: center;
  border: none;
  flex: 0 0 auto;
}
.product-card__tag {
  background: transparent;
  color: #6e6e73;
  border: none;
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  margin-bottom: 6px;
  text-transform: none;
  letter-spacing: 0;
  font-family: inherit;
}
.product-card__title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #1d1d1f;
  margin: 4px 0 12px;
  font-family: inherit;
}
.product-card__desc {
  font-size: 17px;
  color: #1d1d1f;
  max-width: 38ch;
  margin: 0 auto 20px;
  line-height: 1.4;
}
.product-card__arrow {
  color: #19A3DD;
  font-weight: 400;
  font-size: 16px;
}
.product-card__img {
  aspect-ratio: 16/10;
  margin: 20px 0 0;
  position: relative;
  overflow: hidden;
  background: transparent;
}
.product-card__img img {
  transition: transform 1.2s var(--apple-ease);
  object-fit: cover;
}
.product-card:hover .product-card__img img { transform: scale(1.04); }

/* Featured card variant (fills full row) */
.product-card:first-child {
  grid-column: span 2;
  min-height: 640px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
}

/* -------- About / hero-style pillars (Apple feature cards) -------- */
.about {
  grid-template-columns: 1fr !important;
  gap: 48px !important;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.about__quote {
  font-family: inherit;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
  font-style: normal;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #1d1d1f;
  border-left: none;
  padding-left: 0;
  text-align: center;
  margin-bottom: 40px;
}

.pillars {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.pillar {
  background: #f5f5f7;
  padding: 32px 24px;
  border-radius: 18px;
  border: none;
  text-align: center;
  transition: background .3s var(--apple-ease);
}
section:nth-of-type(even) .pillar { background: #ffffff; }
.pillar:hover { background: rgba(25,163,221,.06); }
.pillar__num {
  color: #19A3DD;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
}
.pillar h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0;
  color: #1d1d1f;
}
.pillar p {
  font-size: 14px;
  color: #6e6e73;
  line-height: 1.5;
}

/* -------- Industries: Apple-style badge row -------- */
.industries {
  background: #ffffff;
  color: #1d1d1f;
  padding: 100px 0;
  overflow: visible;
}
.industries__header {
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 720px;
  margin: 0 auto 60px;
  gap: 12px;
}
.industries__header .eyebrow { color: #19A3DD; }
.industries__title {
  color: #1d1d1f;
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: -0.04em;
  font-weight: 700;
  max-width: none;
}
.industries__list {
  grid-template-columns: repeat(6, 1fr);
  background: transparent;
  border: none;
  gap: 16px;
}
.industry {
  background: #f5f5f7;
  border-radius: 18px;
  padding: 28px 16px;
  text-align: center;
  align-items: center;
  transition: transform .35s var(--apple-ease), background .3s;
}
.industry:hover {
  background: rgba(25,163,221,.08);
  transform: translateY(-4px);
}
.industry__num {
  color: #19A3DD;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
}
.industry__name, .industry span:last-child {
  color: #1d1d1f;
  font-family: inherit;
  font-weight: 500;
  font-size: 15px;
}

/* -------- News cards: Apple cards -------- */
.news-grid { gap: 20px; }
.news-card {
  background: #f5f5f7;
  border: none;
  border-radius: 18px;
  padding: 30px;
  transition: transform .5s var(--apple-ease), box-shadow .5s;
}
section:nth-of-type(even) .news-card { background: #ffffff; }
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -12px rgba(0,0,0,.08);
}
.news-card__date {
  color: #19A3DD;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}
.news-card__title {
  font-family: inherit;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: #1d1d1f;
}
.news-card__excerpt, .news-card__desc {
  color: #6e6e73;
  font-size: 15px;
  line-height: 1.5;
}
.news-card__link {
  color: #19A3DD;
  font-weight: 400;
  font-size: 15px;
}
.news-card__link::after { display: none; }
.news-card__link:hover { text-decoration: none; opacity: .8; }

/* -------- CTA banner: Apple "learn more" strip -------- */
.cta-banner {
  background: #ffffff;
  border: none;
  padding: 60px 0 !important;
  text-align: center;
}
.cta-banner__inner {
  grid-template-columns: 1fr !important;
  text-align: center;
  gap: 20px !important;
}
.cta-banner h2 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
}
.cta-banner p { color: #6e6e73; font-size: 18px; }

/* -------- Page hero for inner pages -------- */
.page-hero {
  background: #f5f5f7;
  padding: 120px 0 80px;
  text-align: center;
}
.page-hero .eyebrow { color: #19A3DD; display: block; margin-bottom: 14px; }
.page-hero h1 {
  color: #1d1d1f;
  font-size: clamp(48px, 6.5vw, 88px);
  font-weight: 700;
  letter-spacing: -0.045em;
  margin: 0 auto 18px;
}
.page-hero p {
  color: #6e6e73;
  font-size: clamp(19px, 1.6vw, 24px);
  max-width: 640px;
  margin: 0 auto;
}

.breadcrumb {
  font-family: inherit;
  font-size: 13px;
  font-weight: 400;
  color: #6e6e73;
  letter-spacing: 0;
  text-transform: none;
  text-align: center;
}
.breadcrumb a:hover { color: #19A3DD; }
.breadcrumb span { color: #19A3DD; }

/* -------- Product detail hero -------- */
.product-hero {
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
  padding: 60px 0 100px;
}
.product-hero__inner {
  text-align: center;
  grid-template-columns: 1fr !important;
  max-width: 900px;
  margin: 0 auto;
  gap: 40px !important;
}
.product-hero__img {
  aspect-ratio: 16/10;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 22px;
  background: #f5f5f7;
  border: none;
  overflow: hidden;
}
.product-hero h1 em {
  background: linear-gradient(135deg, #108fd4 0%, #00c2ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.highlights {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: left;
}
.highlights li { color: #1d1d1f; font-size: 17px; }
.highlights li::before { color: #19A3DD; }

/* -------- Metrics: enormous Apple-style -------- */
.metrics {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0;
}
.metric {
  padding: 40px 20px;
  background: #f5f5f7;
  border-radius: 18px;
  border: none;
  text-align: center;
  transition: transform .4s var(--apple-ease);
}
.metric:hover { transform: translateY(-4px); }
.metric__num {
  font-family: inherit;
  font-size: clamp(42px, 4.5vw, 64px);
  font-weight: 700;
  color: #1d1d1f;
  letter-spacing: -0.035em;
  display: block;
  line-height: 1;
}
.metric__unit {
  font-size: 0.45em;
  color: #19A3DD;
  margin-left: 4px;
  font-weight: 500;
}
.metric__label {
  font-family: inherit;
  color: #6e6e73;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  margin-top: 10px;
}

/* -------- Components grid -------- */
.components { gap: 60px 30px; }
.component { border: none; padding: 0; text-align: left; }
.component__num {
  font-family: inherit;
  font-size: 40px;
  color: rgba(25,163,221,0.2);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 12px;
}
.component h4 {
  font-size: 22px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 8px;
}
.component p {
  color: #6e6e73;
  font-size: 16px;
  line-height: 1.5;
}

/* -------- Spec table -------- */
.spec-table table {
  background: #f5f5f7;
  border-radius: 18px;
  overflow: hidden;
  border: none;
}
.spec-table th, .spec-table td { border-color: rgba(29,29,31,.08); }
.spec-table th {
  background: transparent;
  color: #1d1d1f;
  font-weight: 600;
  letter-spacing: 0;
}
.spec-table td { color: #424245; }

/* -------- FAQ accordion -------- */
.faq-item {
  border: none;
  border-bottom: 1px solid rgba(29,29,31,.1);
  padding: 24px 0;
}
.faq-item summary {
  font-family: inherit;
  font-size: 19px;
  font-weight: 500;
  color: #1d1d1f;
  padding: 0;
}
.faq-item summary:hover { color: #19A3DD; }
.faq-item[open] summary { color: #19A3DD; }
.faq-item__body p { color: #6e6e73; font-size: 16px; }

/* -------- Timeline -------- */
.timeline__item { border-left-color: rgba(29,29,31,.1); }
.timeline__year {
  color: #19A3DD;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0;
}
.timeline__title {
  color: #1d1d1f;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.timeline__text { color: #6e6e73; font-size: 17px; }
.timeline__item.is-accent::before { background: #19A3DD; border-color: #19A3DD; }

/* -------- Contact / Form -------- */
.contact-grid { gap: 20px; }
.location-card {
  background: #f5f5f7;
  border: none;
  border-radius: 22px;
  padding: 40px;
}
.location-card h3 {
  font-size: 24px;
  font-weight: 600;
}
.location-card a { color: #19A3DD; }

.form input, .form select, .form textarea {
  border-radius: 12px;
  border: 1px solid rgba(29,29,31,.15);
  padding: 14px 16px;
  background: #ffffff;
  color: #1d1d1f;
  font-size: 16px;
  font-family: inherit;
  transition: border-color .3s var(--apple-ease), box-shadow .3s;
}
.form input:focus, .form select:focus, .form textarea:focus {
  border-color: #19A3DD;
  box-shadow: 0 0 0 4px rgba(25,163,221,.15);
  outline: none;
}
.form label {
  color: #1d1d1f;
  font-weight: 500;
  font-size: 14px;
}

/* -------- Resources -------- */
.resources-grid { gap: 20px; }
.resource {
  background: #f5f5f7;
  border: none;
  border-radius: 18px;
  padding: 28px;
  transition: transform .4s var(--apple-ease), background .3s;
}
.resource:hover {
  transform: translateY(-4px);
  background: #ffffff;
  border: none;
  box-shadow: 0 16px 32px -12px rgba(0,0,0,.08);
}
.resource__icon {
  background: #19A3DD;
  color: #fff;
  border-radius: 10px;
  font-family: inherit;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0;
}
.resource h4 {
  color: #1d1d1f;
  font-size: 17px;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: 0;
}
.resource p { color: #6e6e73; font-size: 14px; }

/* -------- Footer: Apple-style minimal -------- */
.site-footer {
  background: #f5f5f7;
  color: #6e6e73;
  border-top: 1px solid rgba(29,29,31,.1);
  padding: 60px 0 30px;
}
.footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 30px; border-bottom: 1px solid rgba(29,29,31,.1); }
.footer-col h4 {
  color: #1d1d1f;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 14px;
}
.footer-col a { color: #6e6e73; font-size: 13px; }
.footer-col a:hover { color: #19A3DD; text-decoration: underline; }
.footer-address { color: #6e6e73; font-size: 13px; }
.footer-address a { color: #19A3DD; }
.footer-bottom {
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
  color: #86868b;
  padding-top: 20px;
}
.footer-brand img {
  height: 36px;
}

/* -------- Scroll progress -------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, #108fd4, #00c2ff);
  z-index: 9998;
}

/* -------- Reveal: fade + slight rise (Apple-style) -------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.1s var(--apple-ease), transform 1.1s var(--apple-ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* -------- Scroll-pinned product showcase on homepage -------- */
.apple-showcase {
  background: #000;
  color: #fff;
  padding: 160px 0;
  overflow: hidden;
}
.apple-showcase .sec-head { color: #fff; }
.apple-showcase h2, .apple-showcase .sec-head__title {
  color: #fff;
  font-size: clamp(48px, 6vw, 96px);
}
.apple-showcase h2 em {
  background: linear-gradient(135deg, #108fd4 0%, #00c2ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.apple-showcase .sec-head__desc { color: rgba(255,255,255,.72); }

.apple-showcase__frame {
  max-width: 1200px;
  margin: 80px auto 0;
  position: relative;
}
.apple-showcase__slides {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  /* "proximity" instead of "mandatory" so the slider can fully scroll to
     the rightmost slides — the featured first slide is 560px wide, so
     "start"-aligned mandatory snap was rejecting any scroll position past
     slide 3 (forcing the dots for slides 5–6 to snap back and appear
     non-functional). */
  scroll-snap-type: x proximity;
  padding: 0 20px 30px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.apple-showcase__slides::-webkit-scrollbar { display: none; }
.apple-showcase__slide {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: #141416;
  border-radius: 22px;
  padding: 40px 32px;
  color: #fff;
  text-decoration: none;
  transition: background .4s var(--apple-ease), transform .4s var(--apple-ease);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 420px;
}
.apple-showcase__slide:hover { background: #1d1d1f; transform: translateY(-4px); }

.apple-showcase__slide--featured {
  flex: 0 0 560px;
  background: linear-gradient(145deg, #0a2c44 0%, #081b2a 55%, #050d17 100%);
  border: 1px solid rgba(25, 163, 221, .35);
  box-shadow: 0 20px 60px rgba(25, 163, 221, .18);
  position: relative;
  overflow: hidden;
}
.apple-showcase__slide--featured::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(600px 200px at 0% 0%, rgba(0, 194, 255, .18), transparent 60%);
  pointer-events: none;
}
.apple-showcase__slide--featured:hover {
  background: linear-gradient(145deg, #0d3653 0%, #0a2335 55%, #071220 100%);
  transform: translateY(-4px);
}
.apple-showcase__slide--featured h3 { font-size: 44px; }
.apple-showcase__slide--featured h3 em {
  background: linear-gradient(135deg, #108fd4 0%, #00c2ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
}
.apple-showcase__slide--featured p { font-size: 16px; color: rgba(255,255,255,.82); }
.apple-showcase__slide--featured .apple-showcase__slide__img {
  aspect-ratio: 16/9;
  background: #0a1624;
  padding: 12px;
}
.apple-showcase__slide--featured .apple-showcase__slide__img img {
  object-fit: contain;
}

.apple-showcase__slide .tag {
  color: #19A3DD;
  font-size: 13px;
  font-weight: 600;
}
.apple-showcase__slide .tag--new {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #108fd4 0%, #00c2ff 100%);
  color: #fff;
  letter-spacing: .02em;
  align-self: flex-start;
}
.apple-showcase__slide h3 {
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0;
  color: #fff;
}
.apple-showcase__slide p {
  color: rgba(255,255,255,.72);
  font-size: 15px;
  line-height: 1.5;
}
.apple-showcase__slide__link {
  color: #19A3DD;
  margin-top: auto;
  font-size: 15px;
}
.apple-showcase__slide__img {
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  margin-top: 12px;
}
.apple-showcase__slide__img img { width: 100%; height: 100%; object-fit: cover; }

.apple-showcase__controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.apple-showcase__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  border: none;
  cursor: pointer;
  transition: background .3s;
}
.apple-showcase__dot.is-active { background: #19A3DD; width: 24px; border-radius: 4px; }

/* -------- Sticky floating CTA -------- */
.sticky-cta {
  position: fixed;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(1.8) blur(20px);
  -webkit-backdrop-filter: saturate(1.8) blur(20px);
  border-radius: 980px;
  padding: 10px 10px 10px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 32px -8px rgba(0,0,0,.15);
  z-index: 500;
  transition: bottom .4s var(--apple-ease);
  border: 1px solid rgba(29,29,31,.08);
}
.sticky-cta.is-visible { bottom: 20px; }
/* Hide the floating CTA on phones and tablet-portrait — at narrow widths
   it covers content and feels intrusive. Show only at landscape-tablet
   widths and up (1024px is the standard iPad-landscape breakpoint). */
@media (max-width: 1023px) {
  .sticky-cta { display: none !important; }
}
.sticky-cta__text {
  font-size: 14px;
  color: #1d1d1f;
  font-weight: 500;
}
.sticky-cta__btn {
  background: #19A3DD;
  color: #fff;
  padding: 8px 16px;
  border-radius: 980px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background .3s;
}
.sticky-cta__btn:hover { background: #1A478D; }
.sticky-cta__close {
  background: transparent;
  border: none;
  color: #6e6e73;
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
}

/* -------- Apple-style feature section (injected on inner pages) --------
   The first "content" section after a page-hero becomes a dark, cinematic
   moment — prevents inner pages from feeling flat after the title. */
section.apple-feature {
  background: #000 !important;
  color: #fff;
  padding: clamp(120px, 14vw, 200px) 0 !important;
  position: relative;
  overflow: hidden;
}
section.apple-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(16,143,212,.18), transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(0,194,255,.1), transparent 60%);
  pointer-events: none;
}
section.apple-feature > .wrap { position: relative; z-index: 1; }

/* Headline treatment: huge, gradient emphasis */
section.apple-feature .sec-head {
  text-align: center;
  grid-template-columns: 1fr !important;
  max-width: 920px;
  margin: 0 auto clamp(60px, 8vw, 100px) !important;
  padding-bottom: 0 !important;
  border: none !important;
  gap: 16px !important;
}
section.apple-feature .sec-head__title,
section.apple-feature h2 {
  color: #fff !important;
  font-size: clamp(44px, 5.6vw, 88px) !important;
  font-weight: 700 !important;
  letter-spacing: -0.04em !important;
  line-height: 1.02 !important;
  margin: 0 !important;
}
section.apple-feature .sec-head__title em,
section.apple-feature h2 em {
  background: linear-gradient(135deg, #108fd4 0%, #00c2ff 50%, #7fd4ff 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  font-style: normal !important;
  font-weight: 700 !important;
}
section.apple-feature .eyebrow {
  color: #19A3DD !important;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}
section.apple-feature .sec-head__desc {
  color: rgba(255,255,255,.65) !important;
  font-size: clamp(17px, 1.5vw, 22px) !important;
  max-width: 680px;
  margin: 0 auto !important;
  line-height: 1.5;
}

/* Product cards inside get dark panel treatment */
section.apple-feature .product-card {
  background: #0a0a0b !important;
  border: 1px solid #1a1a1e !important;
  transition: all .5s var(--apple-ease);
}
section.apple-feature .product-card:hover {
  background: #111114 !important;
  border-color: rgba(25,163,221,.4) !important;
  transform: translateY(-6px) scale(1.01);
}
section.apple-feature .product-card__title { color: #fff !important; font-size: 28px !important; }
section.apple-feature .product-card__desc { color: rgba(255,255,255,.7) !important; }
section.apple-feature .product-card__tag { color: #6e6e73 !important; }
section.apple-feature .product-card__arrow { color: #19A3DD !important; }

/* News cards inside apple-feature */
section.apple-feature .news-card {
  background: #0a0a0b !important;
  border: 1px solid #1a1a1e !important;
}
section.apple-feature .news-card:hover {
  background: #111114 !important;
  box-shadow: 0 30px 60px -20px rgba(25,163,221,.3) !important;
}
section.apple-feature .news-card__title { color: #fff !important; }
section.apple-feature .news-card__excerpt,
section.apple-feature .news-card__desc { color: rgba(255,255,255,.7) !important; }
section.apple-feature .news-card__date { color: #19A3DD !important; }
section.apple-feature .news-card__link { color: #19A3DD !important; }

/* Pillars in apple-feature (used on company page) */
section.apple-feature .pillars { margin-top: 0; }
section.apple-feature .pillar {
  background: #0a0a0b !important;
  border: 1px solid #1a1a1e !important;
  transition: all .4s var(--apple-ease);
}
section.apple-feature .pillar:hover {
  background: #111114 !important;
  border-color: rgba(25,163,221,.3) !important;
  transform: translateY(-4px);
}
section.apple-feature .pillar h3 { color: #fff !important; }
section.apple-feature .pillar p { color: rgba(255,255,255,.65) !important; }
section.apple-feature .pillar__num { color: #19A3DD !important; }

/* About quote if present */
section.apple-feature .about__quote {
  color: #fff !important;
  font-size: clamp(28px, 3.2vw, 44px) !important;
  font-weight: 600;
  letter-spacing: -0.025em;
  max-width: 780px;
  margin: 0 auto 60px !important;
  text-align: center;
}
section.apple-feature .about {
  grid-template-columns: 1fr !important;
  text-align: center;
}
section.apple-feature .lead,
section.apple-feature p { color: rgba(255,255,255,.72) !important; }

/* Resource cards inside */
section.apple-feature .resource {
  background: #0a0a0b !important;
  border: 1px solid #1a1a1e !important;
}
section.apple-feature .resource:hover {
  background: #111114 !important;
  box-shadow: 0 16px 32px -12px rgba(25,163,221,.35) !important;
}
section.apple-feature .resource h4 { color: #fff !important; }
section.apple-feature .resource p { color: rgba(255,255,255,.65) !important; }

/* Location / contact cards inside */
section.apple-feature .location-card {
  background: #0a0a0b !important;
  border: 1px solid #1a1a1e !important;
}
section.apple-feature .location-card h3 { color: #fff !important; }
section.apple-feature .location-card p { color: rgba(255,255,255,.72) !important; }
section.apple-feature .location-card strong { color: #fff !important; }
section.apple-feature .location-card .eyebrow { color: #19A3DD !important; }
section.apple-feature .us-locations { border-top-color: rgba(255,255,255,.12) !important; }
section.apple-feature .us-location__city { color: #fff !important; }
section.apple-feature .us-location__role { color: rgba(255,255,255,.65) !important; }

/* Timeline inside apple-feature (company page) */
section.apple-feature .timeline__title { color: #fff !important; }
section.apple-feature .timeline__text { color: rgba(255,255,255,.65) !important; }
section.apple-feature .timeline__item { border-left-color: rgba(255,255,255,.15) !important; }

/* Metrics within apple-feature */
section.apple-feature .metric {
  background: #0a0a0b !important;
  border: 1px solid #1a1a1e !important;
}
section.apple-feature .metric__num { color: #fff !important; }
section.apple-feature .metric__label { color: rgba(255,255,255,.6) !important; }

/* -------- Responsive tweaks -------- */
@media (max-width: 900px) {
  .products-grid { grid-template-columns: 1fr; }
  .product-card:first-child { grid-column: span 1; min-height: 480px; }
  .pillars, .industries__list, .metrics { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero__meta { gap: 40px !important; }
}
@media (max-width: 560px) {
  .pillars, .industries__list, .metrics { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .apple-showcase__slide { flex: 0 0 85vw; }
  .apple-showcase__slide--featured { flex: 0 0 90vw; }
  .apple-showcase__slide--featured h3 { font-size: 32px; }
}

/* Hide extra text elements that clutter Apple aesthetic */
.topbar { display: none !important; }

/* =========================================================
   TECHNICAL LAYER
   Adds interactive B-H curve, live data, counters, tooltips,
   spec comparison. Inherits everything from variant D.
   ========================================================= */

/* -------- Hero: replace static hysteresis with interactive lab viewer -------- */
.lab-viewer {
  position: relative;
  aspect-ratio: 1.1;
  max-width: 560px;
  margin: 60px auto 0;
  background: #0a0d13;
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 40px 80px -40px rgba(25,163,221,.35),
    0 0 0 1px rgba(255,255,255,.04) inset;
}
.lab-viewer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(16,143,212,.25), transparent 70%),
    radial-gradient(ellipse 40% 30% at 100% 100%, rgba(0,194,255,.15), transparent 70%);
  pointer-events: none;
}
.lab-viewer__frame {
  position: absolute;
  inset: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lab-viewer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'SF Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
}
.lab-viewer__header .pulse-dot {
  width: 6px; height: 6px;
  background: #19A3DD;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
  box-shadow: 0 0 10px #19A3DD;
  animation: e-pulse 1.5s ease-in-out infinite;
}
@keyframes e-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.lab-viewer__title { color: #19A3DD; font-weight: 600; }

.lab-viewer__svg-wrap {
  flex: 1;
  position: relative;
}
.lab-viewer svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.lab-viewer .bh-axis { stroke: rgba(255,255,255,.2); stroke-width: 1; }
.lab-viewer .bh-grid { stroke: rgba(255,255,255,.05); stroke-width: 1; }
.lab-viewer .bh-curve {
  fill: none;
  stroke: url(#bhGrad);
  stroke-width: 2.5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 8px rgba(25,163,221,.6));
}
.lab-viewer .bh-label {
  font-family: 'SF Mono', ui-monospace, monospace;
  font-size: 9px;
  fill: rgba(255,255,255,.5);
  letter-spacing: 0.1em;
}
.lab-viewer .bh-label--accent { fill: #19A3DD; }
.lab-viewer .bh-annotation {
  font-family: 'SF Mono', ui-monospace, monospace;
  font-size: 8px;
  fill: rgba(255,255,255,.4);
}
.lab-viewer .bh-saturation-marker {
  fill: #19A3DD;
  opacity: 0.8;
}

.lab-viewer__readout {
  position: absolute;
  top: 12px;
  right: 0;
  text-align: right;
  font-family: 'SF Mono', ui-monospace, monospace;
  font-size: 10px;
  line-height: 1.7;
  color: rgba(255,255,255,.55);
}
.lab-viewer__readout .v { color: #19A3DD; font-weight: 600; }
.lab-viewer__readout sub { font-size: 8px; }

.lab-viewer__controls {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.lab-viewer__chip {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  padding: 8px 14px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
  border-radius: 980px;
  transition: all .3s var(--apple-ease, cubic-bezier(.22,1,.36,1));
}
.lab-viewer__chip:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.2);
}
.lab-viewer__chip.is-active {
  background: #19A3DD;
  border-color: #19A3DD;
  color: #fff;
  box-shadow: 0 4px 16px -4px rgba(25,163,221,.6);
}

/* Hide the old hysteresis-svg inside hero on variant E */
.hero__visual .hysteresis-svg { display: none; }
.hero__visual {
  max-width: none !important;
  margin-top: 0 !important;
}

/* -------- Animated counters (numbers feel alive) -------- */
.metric__num, .hero__meta-item .n {
  font-variant-numeric: tabular-nums;
}

/* -------- Tech tooltips (inherited style + Apple polish) -------- */
[data-tip] {
  position: relative;
  border-bottom: 1px dotted rgba(25,163,221,.5);
  cursor: help;
}
[data-tip]::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: rgba(10,13,19,.96);
  backdrop-filter: blur(12px);
  color: #fff;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  white-space: normal;
  width: max-content;
  max-width: 280px;
  border-radius: 10px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,.5);
  opacity: 0;
  pointer-events: none;
  transition: all .35s var(--apple-ease, cubic-bezier(.22,1,.36,1));
  z-index: 100;
  line-height: 1.4;
}
[data-tip]::before {
  content: '';
  position: absolute;
  bottom: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border: 5px solid transparent;
  border-top-color: rgba(10,13,19,.96);
  opacity: 0;
  transition: opacity .35s;
}
[data-tip]:hover::after { opacity: 1; transform: translateX(-50%) translateY(0); }
[data-tip]:hover::before { opacity: 1; }

/* -------- Live data console (replaces C's cramped sidebar)
   Sits elegantly at the bottom of the hero section as a horizontal strip */
.data-console {
  max-width: 900px;
  margin: 48px auto 0;
  background: rgba(10,13,19,.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 20px 28px;
  display: grid;
  grid-template-columns: auto repeat(4, 1fr);
  gap: 30px;
  align-items: center;
  color: #fff;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.4);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s var(--apple-ease, cubic-bezier(.22,1,.36,1)),
              transform .6s var(--apple-ease, cubic-bezier(.22,1,.36,1));
}
.data-console.is-in { opacity: 1; transform: translateY(0); }
.data-console__label {
  font-family: 'SF Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #19A3DD;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  white-space: nowrap;
}
.data-console__label .pulse-dot {
  width: 6px; height: 6px;
  background: #19A3DD;
  border-radius: 50%;
  box-shadow: 0 0 8px #19A3DD;
  animation: e-pulse 1.5s ease-in-out infinite;
}
.data-console__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 1px solid rgba(255,255,255,.08);
  padding-left: 20px;
}
.data-console__item .k {
  font-family: inherit;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  letter-spacing: 0;
}
.data-console__item .v {
  font-family: 'SF Mono', ui-monospace, monospace;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.data-console__item .v.accent { color: #19A3DD; }

@media (max-width: 780px) {
  .data-console {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .data-console__label { grid-column: 1 / -1; border-bottom: 1px solid rgba(255,255,255,.08); padding-bottom: 16px; }
  .data-console__item { border-left: none; padding-left: 0; }
}

/* -------- Spec compare: Apple-ified tabbed comparison -------- */
.spec-compare-apple {
  max-width: 1100px;
  margin: 80px auto 0;
  background: #0a0a0b;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
}
.spec-compare-apple__tabs {
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.015);
}
.spec-compare-apple__tab {
  flex: 1;
  padding: 22px 16px;
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255,255,255,.5);
  cursor: pointer;
  transition: all .4s var(--apple-ease, cubic-bezier(.22,1,.36,1));
  position: relative;
}
.spec-compare-apple__tab:hover { color: #fff; }
.spec-compare-apple__tab.is-active { color: #fff; font-weight: 600; }
.spec-compare-apple__tab.is-active::after {
  content: '';
  position: absolute;
  left: 24px; right: 24px; bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, #108fd4, #00c2ff);
  border-radius: 2px;
}
.spec-compare-apple__panel {
  padding: 40px 48px;
  display: none;
}
.spec-compare-apple__panel.is-active {
  display: block;
  animation: panelFade .6s var(--apple-ease, cubic-bezier(.22,1,.36,1));
}
@keyframes panelFade {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
.spec-compare-apple__panel dl {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 18px 40px;
  margin: 0;
}
.spec-compare-apple__panel dt {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.45);
  letter-spacing: 0;
  text-transform: none;
  padding-top: 3px;
}
.spec-compare-apple__panel dd {
  margin: 0;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* -------- Counter pop-in animation -------- */
.counting { color: #19A3DD !important; transition: color .3s; }
