/* ==========================================================================
   Ultracoustics Technologies Ltd. - Global Stylesheet
   ========================================================================== */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --accent: #FF4FC9;
  --accent-hover: #ff70d6;
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --bg-card-hover: #1c1c1c;
  --border-subtle: #222222;
  --border-accent: #FF4FC9;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --text-muted: #777777;
  --font-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --nav-height: 72px;
  --radius: 6px;
  --radius-lg: 12px;
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-base);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 600;
  color: var(--text-primary);
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section--tight {
  padding: 60px 0;
}

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

.text-accent {
  color: var(--accent);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Placeholder Image Boxes --- */
.placeholder-img {
  background: #1a1a1a;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
  text-align: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.placeholder-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 79, 201, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  text-decoration: none;
}

.nav__logo:hover {
  color: var(--text-primary);
}

.nav__logo img {
  height: 44px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}

.nav__link:hover,
.nav__link--active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

/* Dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav__dropdown-toggle::after {
  content: '';
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform var(--transition);
}

.nav__dropdown:hover .nav__dropdown-toggle::after {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #1a1a1a;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-item {
  display: block;
  padding: 10px 14px;
  color: var(--text-secondary);
  font-size: 14px;
  border-radius: 4px;
  transition: all var(--transition);
}

.nav__dropdown-item:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

/* CTA button in nav */
.nav__cta {
  background: var(--accent);
  color: #000 !important;
  font-weight: 600;
  font-size: 14px;
  padding: 9px 20px;
  border-radius: var(--radius);
  transition: all var(--transition);
  margin-left: 8px;
}

.nav__cta:hover {
  background: var(--accent-hover);
  color: #000 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(255, 79, 201, 0.3);
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(5px) translateX(5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-5px) translateX(5px);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-base);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: #000;
}

.btn--primary:hover {
  background: var(--accent-hover);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 79, 201, 0.35);
}

.btn--secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
}

.btn--secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn--outline:hover {
  background: var(--accent);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 79, 201, 0.35);
}

.btn--sm {
  font-size: 13px;
  padding: 9px 18px;
}

.btn--lg {
  font-size: 16px;
  padding: 16px 36px;
}

/* --- Hero --- */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}

.hero--short {
  min-height: 60vh;
}

.hero__bg-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 79, 201, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  margin-bottom: 12px;
  font-weight: 400;
}

.hero__desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Counter / Stats --- */
.stat {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}

.stat__number {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
}

.stat__suffix {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--accent);
}

.stat__label {
  font-size: 16px;
  color: var(--text-secondary);
  margin-top: 8px;
}

/* --- Section Headers --- */
.section-header {
  margin-bottom: 60px;
}

.section-header--centered {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-header__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-header__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-header__desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- Cards --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.card:hover {
  border-color: rgba(255, 79, 201, 0.3);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(255, 79, 201, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 20px;
}

.card__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.card__desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.card__link::after {
  content: '→';
  transition: transform var(--transition);
}

.card:hover .card__link::after {
  transform: translateX(4px);
}

/* --- Specs Table --- */
.specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.specs__group {
  margin-bottom: 32px;
}

.specs__group-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 16px;
}

.specs__table {
  width: 100%;
}

.specs__row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 14px;
}

.specs__label {
  color: var(--text-secondary);
}

.specs__value {
  color: var(--text-primary);
  font-weight: 500;
  text-align: right;
}

.specs__note {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 4px;
}

/* --- Comparison Table --- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.comparison-table th {
  text-align: left;
  padding: 14px 16px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-secondary);
}

.comparison-table th:first-child {
  border-radius: var(--radius) 0 0 0;
}

.comparison-table th:last-child {
  border-radius: 0 var(--radius) 0 0;
}

.comparison-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
}

.comparison-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.comparison-table .highlight-col {
  color: #fff;
  font-weight: 600;
  border-left: 3px solid var(--accent);
}

/* --- Background Video Section --- */
.video-bg-section {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.65) contrast(1.2);
  z-index: 0;
  pointer-events: none;
}

.video-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.7) 0%,
    rgba(10, 10, 10, 0.4) 50%,
    rgba(10, 10, 10, 0.7) 100%
  );
  z-index: 1;
}

/* --- App Cards (TC page) --- */
.app-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.app-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

.app-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(255, 79, 201, 0.08);
}

.app-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(255, 79, 201, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}

.app-card__icon svg {
  width: 24px;
  height: 24px;
}

.app-card__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.app-card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- How It Works Steps --- */
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.how-step {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  transition: border-color 0.3s;
}

.how-step:hover {
  border-color: var(--accent);
}

.how-step__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.how-step__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.how-step__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- Team Grid --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.team-card {
  text-align: center;
}

.team-card__photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.team-card__name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 8px;
}

.team-card__bio {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- Partner Logos --- */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.partner-logo {
  width: 100%;
  aspect-ratio: 3 / 2;
}

/* --- Research List --- */
.research-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.research-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

.research-item:hover {
  border-color: rgba(255, 79, 201, 0.2);
}

.research-item__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.research-item__meta {
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 12px;
}

.research-item__desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.research-item__link {
  font-size: 14px;
  font-weight: 600;
}

/* --- Video Embed --- */
.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #1a1a1a;
  border: 1px solid var(--border-subtle);
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
}

/* --- Video Thumbnail Link --- */
.video-thumb {
  position: relative;
  display: block;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #1a1a1a;
  border: 1px solid var(--border-subtle);
  aspect-ratio: 16 / 9;
  transition: all var(--transition);
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.video-thumb:hover img {
  transform: scale(1.03);
  filter: brightness(0.8);
}

.video-thumb:hover {
  border-color: rgba(255, 79, 201, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.video-thumb__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.video-thumb:hover .video-thumb__play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

/* --- Contact Form --- */
.form {
  max-width: 560px;
}

.form__group {
  margin-bottom: 20px;
}

.form__label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: var(--font-base);
  font-size: 15px;
  transition: border-color var(--transition);
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form__textarea {
  min-height: 140px;
  resize: vertical;
}

/* --- Safety / Warning Box --- */
.safety-box {
  background: rgba(255, 79, 201, 0.05);
  border: 1px solid rgba(255, 79, 201, 0.2);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.safety-box__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

/* --- Accessories List --- */
.accessories-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accessories-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
}

.accessories-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* --- Included Software Section --- */
.software-hero {
  margin-top: 48px;
  text-align: center;
}

.software-hero__img {
  width: 100%;
  max-width: 900px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.software-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.software-feature {
  background: var(--bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color var(--transition), transform var(--transition);
}

.software-feature:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.software-feature__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 79, 201, 0.1);
  border-radius: 10px;
  color: var(--accent);
  margin-bottom: 16px;
}

.software-feature__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.software-feature__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.software-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 56px;
}

.software-bottom__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.software-bottom__img {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
}

.software-bottom__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.software-bottom__desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.software-reqs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.software-reqs li {
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.software-reqs li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.software-reqs li strong {
  color: var(--text-primary);
}

.software-bottom__sdk {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

/* --- Supporting Research (App Pages) --- */
.supporting-research {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border-subtle);
}

.supporting-research__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
}

.supporting-research__item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.supporting-research__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.supporting-research__item-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.supporting-research__item-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.supporting-research__item-link {
  font-size: 13px;
  font-weight: 600;
}

/* --- Footer --- */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 30px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 300px;
}

.footer__heading {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer__link {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 4px 0;
  transition: color var(--transition);
}

.footer__link:hover {
  color: var(--text-primary);
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 14px;
  transition: all var(--transition);
}

.footer__social-link:hover {
  background: var(--accent);
  color: #000;
}

.footer__bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}

.footer__bottom a {
  color: var(--text-muted);
}

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

/* --- Divider --- */
.divider {
  width: 100%;
  height: 1px;
  background: var(--border-subtle);
}

/* --- Fade-in Animation --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Contact Page Layout --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info__item {
  margin-bottom: 24px;
}

.contact-info__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.contact-info__value {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- Downloads Section --- */
.downloads {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Interactive Demo Thumbnail --- */
.demo-thumb {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid var(--border-subtle);
}

.demo-thumb:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(255, 79, 201, 0.15);
}

.demo-thumb .placeholder-img {
  border: none;
  border-radius: 0;
}

/* --- Page Content for Application Pages --- */
.app-content {
  max-width: 800px;
}

.app-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.app-content h3 {
  font-size: 22px;
  margin-bottom: 16px;
  margin-top: 48px;
}

.app-content ul {
  margin-bottom: 20px;
}

.app-content li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  padding: 6px 0;
}

.app-content li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

/* --- Highlight Stat Box (for app pages) --- */
.highlight-stat {
  background: var(--bg-card);
  border: 1px solid rgba(255, 79, 201, 0.3);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  margin: 40px 0;
}

.highlight-stat__number {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
}

.highlight-stat__label {
  font-size: 15px;
  color: var(--text-secondary);
  margin-top: 8px;
}

/* --- Media Grid --- */
.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.media-item__title {
  font-size: 16px;
  font-weight: 600;
  margin-top: 16px;
  margin-bottom: 6px;
}

.media-item__desc {
  font-size: 14px;
  color: var(--text-secondary);
}

/* --- Product Images --- */
.product-hero-img {
  max-width: 800px;
  margin-left: auto;
}

.product-hero-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Scroll Progress Indicator --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #a855f7);
  width: 0%;
  z-index: 1001;
  transition: none;
  pointer-events: none;
}

/* --- Back to Top Button --- */
.back-to-top {
  position: fixed;
  bottom: 88px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(255, 79, 201, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 79, 201, 0.4);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* --- Trust Stats Bar --- */
.trust-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 40px 0;
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.trust-bar__number {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}

.trust-bar__label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* --- Animated Hero Gradient Mesh --- */
.hero__mesh {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero__mesh::before,
.hero__mesh::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.07;
  animation: meshFloat 20s ease-in-out infinite;
}

.hero__mesh::before {
  width: 600px;
  height: 600px;
  background: var(--accent);
  top: -10%;
  right: -5%;
}

.hero__mesh::after {
  width: 500px;
  height: 500px;
  background: #a855f7;
  bottom: -15%;
  left: -5%;
  animation-delay: -10s;
  animation-direction: reverse;
}

@keyframes meshFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(40px, -30px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(30px, 40px) scale(1.02); }
}

/* --- Enhanced Card Interactions --- */
.card {
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.card:hover::before {
  opacity: 1;
}

/* --- Gradient Text Accent --- */
.hero__title .text-gradient {
  background: linear-gradient(135deg, var(--accent), #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Partner Logo Hover --- */
.partner-logo {
  transition: all var(--transition);
}

.partner-logo:hover {
  transform: scale(1.05);
}

/* --- Focus Visible --- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* --- Footer Logo Image --- */
.footer__brand img {
  height: 32px;
  width: auto;
}

/* --- Sticky CTA Bar --- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 79, 201, 0.2);
  padding: 14px 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-cta__text {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
}

.sticky-cta__text strong {
  color: var(--text-primary);
  font-weight: 600;
}

.sticky-cta__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* --- Typing Ticker --- */
.hero__ticker {
  display: inline;
}

.hero__ticker-word {
  color: var(--accent);
  font-weight: 600;
  border-right: 2px solid var(--accent);
  padding-right: 2px;
  animation: tickerBlink 0.7s step-end infinite;
}

@keyframes tickerBlink {
  50% { border-color: transparent; }
}

/* --- Comparison Table (Homepage) --- */
.comparison-section {
  overflow-x: auto;
}

.comparison-section .comparison-table {
  min-width: 700px;
}

.comparison-table .row-highlight td {
  background: rgba(255, 79, 201, 0.06);
  color: #fff;
  font-weight: 500;
}

.comparison-table .row-highlight td:first-child {
  color: #fff;
  font-weight: 700;
}

/* --- Spectrum Visualizer --- */
.spectrum-section {
  position: relative;
  overflow: hidden;
}

.spectrum-canvas-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: #0a0a0a;
}

.spectrum-canvas-wrap canvas {
  display: block;
  width: 100%;
  height: 340px;
}

.spectrum-labels {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.spectrum-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
}

.spectrum-label__dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  flex-shrink: 0;
}

/* --- Waveform Background Section --- */
.waveform-bg-section {
  position: relative;
  overflow: hidden;
}

.waveform-bg-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/images/Promotional/WaveformBackground.png') center/cover no-repeat;
  opacity: 0.15;
  pointer-events: none;
}

.waveform-bg-section > .container {
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .specs {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

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

  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .software-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .software-bottom {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .trust-bar__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .sticky-cta__inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .sticky-cta__text {
    font-size: 14px;
  }

  .spectrum-canvas-wrap canvas {
    height: 240px;
  }

  .spectrum-labels {
    gap: 16px;
  }

  .nav__links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 4px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .nav__links.active {
    transform: translateX(0);
  }

  .nav__link {
    font-size: 16px;
    padding: 14px 16px;
    width: 100%;
  }

  .nav__cta {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-left: 0;
    margin-top: 12px;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    border: none;
    padding: 0 0 0 16px;
  }

  .nav__dropdown-toggle::after {
    display: none;
  }

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

  .app-cards {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .how-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .app-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .software-features {
    grid-template-columns: 1fr;
  }

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

  .comparison-table {
    font-size: 12px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 10px 8px;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-height) + 40px);
    padding-bottom: 40px;
  }

  .hero--short {
    min-height: auto;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__title {
    font-size: 32px;
  }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero__mesh::before,
  .hero__mesh::after {
    animation: none;
  }

  .hero__ticker-word {
    animation: none;
    border-right: none;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }

  .scroll-progress {
    display: none;
  }

  .video-bg {
    animation: none;
  }
}

/* --- Form Feedback --- */
.form__status {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  margin-top: 16px;
  display: none;
}

.form__status--success {
  display: block;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.form__status--error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

.form__input--invalid,
.form__textarea--invalid {
  border-color: #ef4444 !important;
}

.btn--sending {
  opacity: 0.7;
  pointer-events: none;
}

/* --- Fabry-Perot Animation --- */
.fpi-animation-wrap {
  position: relative;
  width: 100%;
  min-height: 300px;
}

.fpi-animation-wrap canvas {
  width: 100%;
  display: block;
}

.fpi-steps {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.fpi-step {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  font-size: 13px;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.fpi-step--active {
  border-color: var(--accent);
  color: var(--text-primary);
  background: rgba(255, 79, 201, 0.08);
}

.fpi-step__num {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--border-subtle);
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.fpi-step--active .fpi-step__num {
  background: var(--accent);
  color: #000;
}

.fpi-step__text {
  white-space: nowrap;
}

/* --- Datasheet Gate Modal --- */
.ds-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.ds-modal.active {
  opacity: 1;
  visibility: visible;
}

.ds-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
}

.ds-modal__card {
  position: relative;
  background: #141414;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 440px;
  width: 90%;
  transform: translateY(16px);
  transition: transform 0.25s ease;
}

.ds-modal.active .ds-modal__card {
  transform: translateY(0);
}

.ds-modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.ds-modal__close:hover {
  color: var(--text-primary);
}

.ds-modal__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.ds-modal__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.ds-modal__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ds-modal__input {
  background: var(--bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text-primary);
  font-size: 14px;
  font-family: var(--font-base);
  transition: border-color 0.2s;
}

.ds-modal__input:focus {
  outline: none;
  border-color: var(--accent);
}

.ds-modal__input::placeholder {
  color: #555;
}

.ds-modal__status {
  font-size: 13px;
  margin-top: 8px;
  text-align: center;
  min-height: 20px;
}

/* --- Scroll-Driven Animations --- */
@supports (animation-timeline: scroll()) {
  .scroll-reveal-left {
    animation: slideFromLeft linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 100%;
  }

  .scroll-reveal-right {
    animation: slideFromRight linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 100%;
  }

  .scroll-scale-in {
    animation: scaleIn linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 80%;
  }

  .scroll-counter-pop {
    animation: counterPop linear both;
    animation-timeline: view();
    animation-range: entry 20% entry 70%;
  }

  @keyframes slideFromLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
  }

  @keyframes slideFromRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
  }

  @keyframes scaleIn {
    from { opacity: 0; transform: scale(0.85); }
    to { opacity: 1; transform: scale(1); }
  }

  @keyframes counterPop {
    0% { opacity: 0; transform: scale(0.5); }
    70% { opacity: 1; transform: scale(1.08); }
    100% { opacity: 1; transform: scale(1); }
  }

  /* Apply scroll-driven to specific elements */
  .hero__grid > *:first-child {
    animation: slideFromLeft linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 60%;
  }

  .hero__grid > *:last-child {
    animation: slideFromRight linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 60%;
  }

  .spectrum-canvas-wrap {
    animation: scaleIn linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 70%;
  }

  .software-hero__img {
    animation: scaleIn linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 80%;
  }

  .comparison-table tr {
    animation: slideFromLeft linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 100%;
  }

  .software-feature {
    animation: scaleIn linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 90%;
  }

  .specs__group {
    animation: slideFromRight linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 80%;
  }

  .stat__number {
    animation: counterPop linear both;
    animation-timeline: view();
    animation-range: entry 20% entry 70%;
  }
}

/* ====== FAQ Accordion ====== */
.faq {
  max-width: 800px;
  margin-inline: auto;
}

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

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  color: var(--text-primary);
  font: inherit;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}

.faq__question:hover {
  color: var(--accent);
}

.faq__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform 0.3s ease, color 0.2s;
}

.faq__item--open .faq__icon {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq__item--open .faq__answer {
  max-height: 500px;
}

.faq__answer p {
  padding: 0 0 20px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* ====== LinkedIn CTA Card ====== */
.linkedin-cta {
  display: flex;
  justify-content: center;
}

.linkedin-cta__card {
  text-align: center;
  max-width: 480px;
  padding: 48px 40px;
  border-radius: 16px;
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.linkedin-cta__icon {
  margin-bottom: 20px;
}

.linkedin-cta__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.linkedin-cta__desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}
