@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #000000;
  --accent: #3bbbf6;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  scrollbar-gutter: stable;
}

::selection {
  background: #1d4ed8;
  color: #fff;
}

::-moz-selection {
  background: #1d4ed8;
  color: #fff;
}

.hero-container {
  font-family: 'Outfit', sans-serif !important;
  width: 100%;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 32px;
}

.nav-spacer {
  height: 130px;
}

.hero {
  text-align: left;
  padding-top: 60px;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
}

.hero-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  margin-bottom: 36px;
}

@media (min-width: 1024px) {
  .hero {
    padding-top: 120px;
  }

  .hero-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0;
  }
}

@keyframes blurReveal {
  0% {
    filter: blur(8px);
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    filter: blur(0);
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  animation: blurReveal 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  opacity: 0;
  will-change: filter, opacity, transform;
}

.reveal-2 {
  animation-delay: 0.1s;
}
.reveal-3 { animation-delay: 0.3s; }
.reveal-4 { animation-delay: 0.4s; }

@keyframes imageReveal {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.showcase-outer.reveal {
  animation: imageReveal 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: 0.35s;
}

.hero h1 {
  font-size: clamp(2.5rem, 6.5vw, 4.4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  max-width: 820px;
  text-wrap: wrap;
}

.hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 720px;
  margin: 0;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

@keyframes charFadeIn {
  0% {
    opacity: 0;
    filter: blur(4px);
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.char {
  display: inline-block;
  opacity: 0;
  will-change: transform, opacity, filter;
  -webkit-font-smoothing: antialiased;
  backface-visibility: hidden;
  vertical-align: top;
}

.char.start-animate {
  animation: charFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.word {
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
}

.char-space {
  display: inline-block;
  vertical-align: top;
  width: 0.22em;
  opacity: 0;
}

.char-space.start-animate {
  opacity: 1;
}

.hero-text-content {
  position: relative;
}

#highlight-word {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.btn-group {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  margin-bottom: 60px;
  position: relative;
}

.btn-primary {
  background: #1e40af;
  color: #fff;
  padding: 14px 32px;
  border-radius: 99px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  user-select: none;
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.25), 
    inset 0 1px 0 rgba(255, 255, 255, 0.2), 
    inset 0 -1px 1px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  background: #1d4ed8;
  color: #fff;
  box-shadow: 
    0 5px 14px rgba(0, 0, 0, 0.3), 
    inset 0 1px 0 rgba(255, 255, 255, 0.25), 
    inset 0 -1px 1px rgba(0, 0, 0, 0.2);
}



.btn-secondary {
  background: #1e1e1e;
  color: #fff;
  padding: 14px 32px;
  border-radius: 99px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
  background: #262626;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.os-req-badge {
  position: absolute;
  top: calc(100% + 12px);
  left: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.cta-os-req-badge {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 16px;
  letter-spacing: 0.02em;
}

.faq-contact-text {
  margin-top: 8px;
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: #777;
  font-weight: 500;
}

.faq-inline-link.nowrap {
  white-space: nowrap;
}

.showcase-outer {
  margin-top: 10px;
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  padding-bottom: 60px;
}

.showcase-wrapper {
  perspective: none;
  width: 100%;
  max-width: 1300px;
  position: relative;
  z-index: 2;
}

.hero-accent-blob {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 100%;
  background: radial-gradient(circle at center top, rgba(59, 187, 246, 0.35) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.8;
}

.hero-image {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 6px;
  box-shadow: 
    0 40px 100px -20px rgba(0, 0, 0, 0.8), 
    0 0 80px -30px rgba(59, 187, 246, 0.25), 
    inset 0 1px 1px rgba(255, 255, 255, 0.15);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease-out;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: block;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.features-section {
  color: #fff;
  padding: 120px 0 0 0;
  position: relative;
  z-index: 2;
}

.bento-header {
  text-align: center;
  margin-bottom: 60px;
}

.bento-header h2 {
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.bento-header p {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 700;
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.15;
  color: #fff;
  text-wrap: balance;
  letter-spacing: -0.025em;
}

.bento-header .description-text {
  font-size: 1.25rem;
  color: #777;
  max-width: 680px;
  margin: 16px auto 0;
  line-height: 1.6;
  font-weight: 500;
  text-wrap: balance;
}

.bento-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 450px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 60px;
    gap: 0;
    overflow: hidden;
    background: transparent;
  }

  .bento-card {
    background-color: #000 !important;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .bento-card-tall {
    grid-row: span 2;
  }
}

@media (max-width: 1023px) {
  .bento-grid {
    display: flex;
    flex-direction: column;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 40px;
  }
  
  .bento-card {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    min-height: 400px;
    background-color: #000 !important;
  }
}

.bento-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.bento-content {
  padding: 0 32px 32px;
  margin-top: auto;
}

.bento-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  overflow: hidden;
  position: relative;
}

.bento-content h3 {
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.bento-content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  font-weight: 400;
  max-width: 280px;
}

.mockup-math {
  height: 100%;
  width: 100%;
}

.mockup-capture {
  position: relative;
  height: 220px;
  width: 100%;
  max-width: 320px;
  background: url('https://assets.creatoryogames.com/cyc-cyg-website-assets/cyc-annotate/images/Windows_11_Wallpaper.png');
  background-size: cover;
  background-position: top center;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  user-select: none;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, black 96%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 96%, transparent 100%);
  transform: translateY(30px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.drawing-toolbar-img {
  display: block;
  margin: 0 auto;
  width: auto;
  height: 100%;
  max-height: 720px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
  border-radius: 16px;
  -webkit-mask-image: linear-gradient(to bottom, black 65%, transparent 95%);
  mask-image: linear-gradient(to bottom, black 65%, transparent 95%);
  user-select: none;
  pointer-events: none;
  transform: translateY(40px);
}

.capture-selector {
  position: absolute;
  top: 15%;
  left: 15%;
  width: 70%;
  height: 60%;
  border: 1.5px dashed var(--accent);
  box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.6);
  z-index: 5;
}

.selector-handle {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #fff;
  z-index: 10;
  border-radius: 2px;
}

.selector-handle.top-left { top: -5px; left: -5px; }
.selector-handle.top-right { top: -5px; right: -5px; }
.selector-handle.bottom-left { bottom: -5px; left: -5px; }
.selector-handle.bottom-right { bottom: -5px; right: -5px; }

.capture-selector::before {
  content: '1920 x 1080';
  position: absolute;
  top: -28px;
  left: 0;
  background: var(--accent);
  color: #000;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.capture-toolbar {
  position: absolute;
  bottom: -45px;
  right: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 5px;
  display: flex;
  align-items: center;
  gap: 2px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  z-index: 20;
}

.toolbar-tool {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #fff;
  transition: all 0.2s ease;
}

.toolbar-tool.tick {
  color: #4ade80;
}

.toolbar-tool:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.toolbar-tool.tick:hover {
  color: #22c55e;
}

.toolbar-tool.close:hover {
  color: #ef4444;
}

.toolbar-sep {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 2px;
}

.mockup-window {
  background: #0a0a0a;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 320px;
  height: 240px;
  overflow: hidden;
  position: relative;
  user-select: none;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

.window-header {
  background: #0a0a0a;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.window-title {
  font-size: 0.7rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.window-content {
  padding: 24px;
}

.window-item {
  margin-bottom: 24px;
}

.window-label {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 12px;
  display: block;
}

.swatch-group {
  display: flex;
  gap: 8px;
}

.swatch {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.swatch.active {
  border-color: #fff;
}

.window-toggle {
  width: 36px;
  height: 18px;
  background: #3bbbf6;
  border-radius: 10px;
  position: relative;
}

.window-toggle::after {
  content: '';
  position: absolute;
  right: 3px;
  top: 3px;
  width: 12px;
  height: 12px;
  background: #0a0a0a;
  border-radius: 50%;
}

.theme-selector {
  display: flex;
  background: #1a1a1a;
  padding: 2px;
  border-radius: 8px;
  gap: 2px;
}

.theme-option {
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.65rem;
  color: #666;
}

.theme-option.active {
  background: #333;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.cta {
  padding: 100px 80px 180px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  padding: 0;
  margin-bottom: 40px;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  position: relative;
  text-wrap: balance;
}

@media (min-width: 1200px) {
  .cta h2 {
    white-space: nowrap;
    text-wrap: nowrap;
  }
}

.cta-btn-group {
  display: flex;
  gap: 16px;
  user-select: none;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}



@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3.5rem;
  }
}

#faq {
  padding: 7rem 2rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  position: relative;
  background: transparent;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.08) 10%, rgba(255, 255, 255, 0.08) 90%, transparent);
  pointer-events: none;
}

.faq-item.open {
  background: transparent;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.faq-item.open .faq-question:hover {
  background-color: transparent;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-family: 'Inter', sans-serif;
  text-align: left;
  font-size: 1.25rem;
  font-weight: 500;
  user-select: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: transparent;
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: var(--accent);
  user-select: none;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
  padding: 0 2rem 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  opacity: 0;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.faq-item.open .faq-answer p {
  opacity: 0.85;
  transform: translateY(0);
}


.faq-inline-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
  display: inline-block;
}

.faq-inline-link::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 1px;
  left: 0;
  background-color: #9ce0ff;
  transform-origin: bottom right;
  transition: transform 0.3s cubic-bezier(0.86, 0, 0.07, 1);
}

.faq-inline-link:hover {
  color: #9ce0ff;
}

.faq-inline-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.math-visual-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  gap: 16px;
  position: relative;
  padding-bottom: 30px;
  -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

@media (max-width: 768px) {
  .math-visual-container {
    transform: translateY(50px);
  }
}

.math-bubble {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 20px;
  border-radius: 12px;
  font-family: 'Consolas', 'Monaco', monospace;
  font-size: 1.1rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: rotate(-3deg) translateY(20px);
  backdrop-filter: blur(4px);
  width: fit-content;
  user-select: none;
  pointer-events: none;
}

.math-bubble:nth-child(2) {
  transform: rotate(2deg) translateY(32px) translateX(4px);
  background: #0a0a0a;
}

.math-bubble .math-result {
  color: #4ade80;
  font-weight: 700;
}

.wb-mockup {
  width: 280px;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 14px 14px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  gap: 12px;
  -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  transform: translateY(20px);
  user-select: none;
  pointer-events: none;
}

.wb-mockup-header-new {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 4px 6px;
}

.wb-mockup-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.08);
  margin: 0;
}

.wb-mockup-search {
  background: #1e1e1e;
  border: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  border-radius: 6px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #777;
  font-size: 12px;
}

.wb-mockup-search svg {
  color: #666;
}

.wb-mockup-search-divider {
  width: 1px;
  height: 14px;
  background-color: rgba(255, 255, 255, 0.08);
  margin: 0 2px;
}

.wb-mockup-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wb-mockup-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 6px 0 6px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid transparent;
}



.wb-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wb-title {
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
}

.wb-date {
  color: #777;
  font-size: 11px;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wb-highlight-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 80px;
  text-align: left;
}

.wb-highlight-section + .wb-highlight-section {
  margin-top: 100px;
}

.wb-highlight-section:last-child {
  margin-bottom: 0;
}

@media (min-width: 900px) {
  .wb-highlight-section {
    flex-direction: row;
    align-items: center;
    gap: 100px;
  }
  .wb-highlight-section + .wb-highlight-section {
    margin-top: 160px;
  }
  .wb-highlight-reverse {
    flex-direction: row-reverse;
  }
}

.wb-highlight-text {
  flex: 1;
  max-width: 540px;
}

.wb-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.wb-highlight-text h3 {
  font-size: 34px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
  background: linear-gradient(135deg, #fff 0%, #a0a0a0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wb-highlight-text p {
  font-size: 17px;
  color: #a0a0a0;
  line-height: 1.7;
  margin-bottom: 24px;
}

.wb-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.cta-btn-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin: 0 auto;
}

.wb-feature-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  color: #e0e0e0;
}

.wb-feature-list svg {
  color: var(--accent);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.wb-highlight-image-wrapper {
  flex: 1.2;
  width: 100%;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  padding: 0;
  box-shadow: 0 16px 32px -8px rgba(0, 30, 80, 0.1), 0 4px 12px rgba(0, 30, 80, 0.04);
  overflow: hidden;
}

.wb-highlight-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.feature-highlight-wrapper {
  background-color: #2563eb;
  margin-top: 140px;
  padding: 140px 0;
  width: 100%;
  clip-path: polygon(
    0 0, 
    max(32px, calc(50vw - 600px)) 0, 
    calc(max(32px, calc(50vw - 600px)) + 40px) 40px, 
    calc(min(100vw - 32px, calc(50vw + 600px)) - 40px) 40px, 
    min(100vw - 32px, calc(50vw + 600px)) 0, 
    100% 0, 
    
    100% 100%, 
    min(100vw - 32px, calc(50vw + 600px)) 100%, 
    calc(min(100vw - 32px, calc(50vw + 600px)) - 40px) calc(100% - 40px), 
    calc(max(32px, calc(50vw - 600px)) + 40px) calc(100% - 40px), 
    max(32px, calc(50vw - 600px)) 100%, 
    0 100%
  );
}

.feature-highlight-wrapper ::selection {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
.feature-highlight-wrapper .wb-highlight-text h3 {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: initial;
  color: #ffffff;
}

.feature-highlight-wrapper .wb-highlight-text p {
  color: rgba(255, 255, 255, 0.75);
}

.feature-highlight-wrapper .wb-eyebrow {
  color: #bfdbfe;
}

.feature-highlight-wrapper .wb-feature-list li {
  color: rgba(255, 255, 255, 0.8);
}

.feature-highlight-wrapper .wb-feature-list svg {
  color: #bfdbfe;
}


@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .hero-container { padding-bottom: 160px; }
  .hero { padding-top: 50px; }
  .hero h1 { font-size: 2.8rem; margin-bottom: 20px; line-height: 1.2; }
  .hero p { font-size: 1.15rem; margin-bottom: 6px; padding: 0 10px; line-height: 1.5; }
  .btn-group { flex-direction: column; gap: 16px; margin-bottom: 50px; padding: 0; }
  .os-req-badge { left: 50%; transform: translateX(-50%); text-align: center; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; padding: 14px 24px; font-size: 1rem; }
  .showcase-wrapper { margin-top: 10px; perspective: none; width: 100%; }
  .nav-spacer { height: 70px; }
  .cta { padding: 60px 24px; margin-top: 10px; margin-bottom: 20px; background: none; }
  .cta h2 { font-size: 2.1rem; line-height: 1.2; margin-bottom: 32px; }
  .cta-btn-group { flex-direction: column; gap: 12px; width: 100%; }
  #faq { padding: 5rem 1.5rem 1.5rem; }
  #faq .bento-header { margin-bottom: 40px; }
  .faq-question { font-size: 1.1rem; padding: 1.3rem 1.5rem; }
  .faq-answer p { font-size: 0.95rem; padding: 0 1.5rem 1.3rem; }
  .pastel-blue-wrapper { 
    padding: 80px 0; 
    margin-top: 80px; 
    clip-path: polygon(
      0 0, 
      32px 0, 
      56px 24px, 
      calc(100% - 56px) 24px, 
      calc(100% - 32px) 0, 
      100% 0, 
      
      100% 100%, 
      calc(100% - 32px) 100%, 
      calc(100% - 56px) calc(100% - 24px), 
      56px calc(100% - 24px), 
      32px 100%, 
      0 100%
    ); 
  }
  .wb-highlight-section + .wb-highlight-section { margin-top: 60px; }
  .wb-highlight-image-wrapper, .wb-highlight-img { border-radius: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .char,
  .char-space,
  .showcase-outer.reveal {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}