/* GLOBAL BRAND FONTS */
@font-face {
  font-family: 'Hello Organichand Webfont';
  src: url('/fonts/hello-organichand-webfont.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Degular';
  src: url('/fonts/degular-semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Degular';
  src: url('/fonts/degular-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Degular';
  src: url('/fonts/Degular-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Champ';
  src: url('/fonts/Champ-ExtraBold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* =================================================== */
/* HEADER THEME & SUBPAGE NAVIGATION SYSTEM            */
/* =================================================== */
.header {
  --button-color: var(--black);
  --button-color-background: var(--pale-yellow);
  --button-alt-color: var(--black);
  --button-alt-color-background: var(--orange);
  --button-social-color: var(--pale-yellow);
  --button-social-color-background: var(--black);
}

/* Native Header Support Across Pages - 100% Identical to Homepage */
.header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 1000 !important;
  pointer-events: none !important;
  border-bottom: none !important;
  --button-color: var(--black, #000000);
  --button-color-background: var(--pale-yellow, #faed8f);
  --button-alt-color: var(--black, #000000);
  --button-alt-color-background: var(--orange, #f9a220);
}

.header .header__inner {
  width: 100% !important;
  max-width: none !important;
  padding-right: var(--grid-margin, 1.5em) !important;
  padding-left: var(--grid-margin, 1.5em) !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  box-sizing: border-box !important;
}

.header a,
.header button,
.header .button,
.header .button-alt,
.header__title-link,
.header__nav-list-item {
  pointer-events: auto !important;
}

/* Ensure subpage header class aliases cleanly to standard header */
.header.is--subpage {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: var(--header-height, 6.625em) !important;
  background-color: transparent !important;
  border-bottom: none !important;
  display: flex !important;
  align-items: center !important;
  padding: 0 !important;
}

/* =================================================== */
/* IMPECCABLE CRAFT FLOOR: THEMED BROWSER SURFACES     */
/* =================================================== */
::selection {
  background-color: var(--bright-pink, #fd48f2) !important;
  color: #000000 !important;
}

::-moz-selection {
  background-color: var(--bright-pink, #fd48f2) !important;
  color: #000000 !important;
}

/* Themed Scrollbars */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #fbf7db;
}

::-webkit-scrollbar-thumb {
  background: #000000;
  border-radius: 6px;
  border: 2px solid #fbf7db;
}

::-webkit-scrollbar-thumb:hover {
  background: #fd48f2;
}

/* Themed Caret */
input, textarea {
  caret-color: #fd48f2;
}

/* Authored SVG Icon Styles */
.svg-icon {
  display: inline-block;
  vertical-align: -0.2em;
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
}

.feature-check-icon {
  stroke: #10b981;
  stroke-width: 3px;
  margin-right: 0.6em;
}

.pro-check-icon {
  stroke: #ffd24a;
  stroke-width: 3px;
  margin-right: 0.6em;
}

/* Remove artificial blinking cursor trope */


/* Voice Typer Specific Additions to Aardvark Design System */

/* Hero Canvas Container */
.hero__canvas-container {
  width: 100%;
  max-width: 960px;
  height: 240px;
  margin: 1.5em auto 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 2em;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
}

.hero__wave-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.hero__canvas-badge {
  position: absolute;
  bottom: 1.25em;
  padding: 0.5em 1.2em;
  background: var(--black);
  color: var(--white);
  border-radius: 2em;
  font-family: Degular, sans-serif;
  font-size: 0.85em;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.6em;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.hero__canvas-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1ce8ed;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(28, 232, 237, 0.7); }
  70% { transform: scale(1.15); box-shadow: 0 0 0 8px rgba(28, 232, 237, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(28, 232, 237, 0); }
}

/* Mouse-Following Floating App Stack (Works Everywhere Section) */
.app-stack-container {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.08s ease-out;
}

.app-stack-card {
  width: 400px;
  background: #ffffff;
  border: 3px solid #000000;
  border-radius: 1.5em;
  box-shadow: 14px 18px 0px #000000;
  overflow: hidden;
  display: none;
  transform: rotate(-3deg);
}

.app-stack-card.is--active {
  display: block;
  animation: popIn 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popIn {
  0% { transform: scale(0.9) rotate(-6deg); opacity: 0; }
  100% { transform: scale(1) rotate(-3deg); opacity: 1; }
}

.app-stack-header {
  background: #f3f1f8;
  border-bottom: 2px solid #000000;
  padding: 0.8em 1.2em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: Degular, sans-serif;
  font-size: 0.9em;
  font-weight: 700;
}

.app-stack-body {
  padding: 1.5em;
  font-family: Degular, sans-serif;
  font-size: 1.15em;
  line-height: 1.4;
  color: #111827;
}




  50% { opacity: 0; }
}

/* How It Works Cards Interactive Fan-Out & Tilt */
.flow__list {
  perspective: 1200px;
  transform-style: preserve-3d;
}

.flow__list-item {
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease, z-index 0.2s ease !important;
  position: relative;
  will-change: transform, opacity;
  transform-origin: center bottom;
}

.flow__card {
  transition: box-shadow 0.35s ease, transform 0.35s ease !important;
  will-change: box-shadow, transform;
}

/* Curved Text Ribbon Sizing & Polish */
.gift {
  padding-top: 4em !important;
  padding-bottom: 9em !important;
  position: relative;
}

.tagline-curve {
  padding-top: 3em !important;
  padding-bottom: 2em !important;
  overflow: visible !important;
}

#textpath {
  font-family: 'Champ', sans-serif !important;
  font-size: clamp(34px, 3.8vw, 56px) !important;
  font-weight: 900;
  letter-spacing: 0.04em;
  fill: #000000;
}

/* Pinned Horizontal Scroll on Velocity Cards */
#speed {
  position: relative;
  overflow: hidden;
}

#speed .books__header {
  padding-top: 4em !important;
  padding-bottom: 2em !important;
}

#speed .books-slider__list {
  display: flex !important;
  flex-wrap: nowrap !important;
  width: max-content !important;
  will-change: transform;
  gap: 2.2em;
  padding: 4em 4em 3em 4em !important;
}

#speed .books-slider__list-item {
  flex: 0 0 370px !important;
  width: 370px !important;
}

.voice-card {
  border-radius: 2em;
  padding: 1.8em 1.7em !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 420px !important;
  max-height: 450px !important;
  color: #fff;
  border: 3px solid #000;
  box-shadow: 8px 12px 0px #000;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.voice-card h3 { line-height: 88% !important; margin-bottom: 0.4em !important; }

.voice-card p { line-height: 120% !important; }

.voice-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 14px 20px 0px #000;
}

/* Easter Egg Popup Active State */
.pop-up.is--open .pop-up__overlay {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.pop-up__overlay {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.95);
  transition: opacity 0.3s cubic-bezier(0.34, 1.57, 0.64, 1), transform 0.3s cubic-bezier(0.34, 1.57, 0.64, 1);
}

/* Rotating Benefits Stamp */
.rotating-stamp {
  animation: spin 20s linear infinite;
  transform-origin: center;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}


/* =================================================== */
/* 7. BENEFITS CONTAINER MORPH (NO CHOPPING + SHRINK)  */
/* =================================================== */
.benefits {
  aspect-ratio: auto !important;
  width: 100% !important;
  height: auto !important;
  padding: 0 !important;
  display: block !important;
  position: relative !important;
  overflow: visible !important;
  background-color: transparent !important;
}

.benefits__outer-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3em 0 6em 0;
  overflow: visible;
}

.benefits__inner {
  background-color: var(--pale-yellow) !important;
  clip-path: none !important;
  width: 100%;
  max-width: 100%;
  padding: 8em 3em 11em 3em !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 0px;
  transform-origin: center center;
  will-change: width, max-width, border-radius, box-shadow;
  box-sizing: border-box;
}

.benefits__content {
  padding-bottom: 0 !important;
  height: auto !important;
}

/* =================================================== */
/* 7. BENEFITS PILL CLUSTER (NO MESSY OVERLAPS)        */
/* =================================================== */
.benefits-pills-cluster {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5em;
  max-width: 950px;
  margin: 3em auto 1em;
  position: relative;
  z-index: 1;
}

.benefit-pill {
  border: 3px solid #000000;
  box-shadow: 8px 12px 0px #000000;
  padding: 1em 2.2em;
  border-radius: 4em;
  font-family: 'Champ', sans-serif;
  font-size: 2em;
  letter-spacing: -0.01em;
  line-height: 1;
  white-space: nowrap;
  cursor: default;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
  will-change: transform;
}

.benefit-pill:hover {
  transform: translateY(-8px) scale(1.05) rotate(0deg) !important;
  box-shadow: 12px 18px 0px #000000 !important;
  z-index: 10;
}

.benefit-pill.is--magenta {
  background-color: var(--bright-pink);
  color: #ffffff;
  transform: rotate(-3deg);
}

.benefit-pill.is--orange {
  background-color: var(--orange);
  color: var(--wine);
  transform: rotate(2.5deg);
}

.benefit-pill.is--periwinkle {
  background-color: var(--periwinkle);
  color: #ffffff;
  transform: rotate(-2deg);
}

.benefit-pill.is--cyan {
  background-color: var(--cyan);
  color: var(--violet);
  transform: rotate(3deg);
}

.benefit-pill.is--yellow {
  background-color: var(--yellow);
  color: var(--wine);
  transform: rotate(-1.5deg);
}

/* =================================================== */
/* 8. DUAL MARQUEE TICKER (ENERGY RIBBONS)             */
/* =================================================== */
.marquee-ticker-section {
  position: relative;
  margin: 4em 0 5em;
  overflow: hidden;
  padding: 2em 0;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}

.marquee-ribbon {
  border-top: 3px solid #000000;
  border-bottom: 3px solid #000000;
  padding: 1em 0;
  overflow: hidden;
  white-space: nowrap;
  box-shadow: 0 8px 0px #000000;
}

.marquee-ribbon.is--pink {
  background-color: var(--bright-pink);
  color: #ffffff;
  transform: rotate(-1.8deg) scale(1.03);
}

.marquee-ribbon.is--cyan {
  background-color: var(--cyan);
  color: #000000;
  transform: rotate(1.8deg) scale(1.03);
}

.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  font-family: 'Champ', sans-serif;
  font-size: 1.8em;
  letter-spacing: 0.02em;
  line-height: 1;
}

.marquee-track.is--left {
  animation: marqueeLeft 35s linear infinite;
}

.marquee-track.is--right {
  animation: marqueeRight 35s linear infinite;
}

@keyframes marqueeLeft {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

@keyframes marqueeRight {
  0% { transform: translate3d(-50%, 0, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

/* =================================================== */
/* 9. BENCHMARK CARDS & TELEMETRY                      */
/* =================================================== */
.benchmark-card {
  flex: 1 1 360px;
  border: 3px solid #000000;
  border-radius: 2.5em;
  padding: 3em 2.5em;
  box-shadow: 10px 14px 0px #000000;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.benchmark-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 14px 20px 0px #000000;
}

.benchmark-card.is--keyboard {
  background-color: #ffffff;
}

.benchmark-card.is--voicetyper {
  background-color: var(--bright-pink);
  color: #ffffff;
}

.benchmark-badge {
  font-family: Degular, sans-serif;
  font-weight: 700;
  padding: 0.35em 0.9em;
  border-radius: 2em;
  font-size: 0.85em;
  border: 2px solid #000000;
}

.benchmark-badge.is--muted {
  background: #f0f0f0;
  color: #555;
}

.benchmark-badge.is--highlight {
  background: #ffd24a;
  color: #000000;
}


/* =================================================== */
/* 9. AUTHENTIC SPEED TELEMETRY INSTRUMENT             */
/* =================================================== */
.telemetry-track {
  border: 3px solid #000000;
  border-radius: 2em;
  padding: 2.5em;
  box-shadow: 10px 14px 0px #000000;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.telemetry-track:hover {
  transform: translateY(-4px);
  box-shadow: 12px 18px 0px #000000;
}

.telemetry-track.is--hardware-track {
  background-color: #ffffff;
}

.telemetry-track.is--voicetyper {
  background-color: var(--bright-pink);
  color: #ffffff;
}

.telemetry-track-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2em;
  margin-bottom: 2em;
}

.telemetry-track-title {
  font-family: 'Champ', sans-serif;
  font-size: 2.2em;
  line-height: 1.1;
  margin: 0 0 0.3em 0;
  color: #000000;
}

.telemetry-track-desc {
  font-family: 'Degular', sans-serif;
  font-size: 1.1em;
  line-height: 1.5;
  color: #444444;
  margin: 0;
  max-width: 580px;
}

.telemetry-stat {
  text-align: right;
  flex-shrink: 0;
}

.telemetry-stat-num {
  font-family: 'Champ', sans-serif;
  font-size: 4em;
  line-height: 1;
  color: #000000;
  display: block;
}

.telemetry-stat-unit {
  font-family: 'Degular', sans-serif;
  font-weight: 700;
  font-size: 1.1em;
  color: #666666;
}

.telemetry-ruler-wrap {
  margin-top: 1em;
}

.telemetry-ruler-bar {
  width: 100%;
  height: 18px;
  background: #f0f0f0;
  border-radius: 9px;
  border: 2px solid #000000;
  overflow: hidden;
  position: relative;
}

.telemetry-ruler-bar.is--pro-bar {
  background: rgba(0, 0, 0, 0.25);
}

.telemetry-ruler-fill {
  height: 100%;
  border-radius: 7px;
  transition: width 1s ease-out;
}

.telemetry-ruler-fill.is--hardware-track {
  background: #666666;
}

.telemetry-ruler-fill.is--voicetyper {
  background: linear-gradient(90deg, #ffd24a 0%, #1ce8ed 100%);
}

.telemetry-ruler-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.6em;
  font-family: 'Degular', sans-serif;
  font-size: 0.9em;
  font-weight: 600;
  color: #666666;
}


/* =================================================== */
/* 8. PHYSICAL SPECIFICATION STRIP (NO TICKER SLOP)    */
/* =================================================== */
.spec-strip-section {
  padding: 3em 2em;
  margin: 2em 0 4em 0;
  position: relative;
  z-index: 2;
}

.spec-strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5em;
  background-color: var(--bright-pink);
  border: 3px solid #000000;
  border-radius: 2em;
  padding: 2.5em 3em;
  box-shadow: 10px 14px 0px #000000;
}

.spec-strip-col {
  text-align: center;
  border-right: 2px dashed rgba(0, 0, 0, 0.25);
  padding: 0 1em;
}

.spec-strip-col:last-child {
  border-right: none;
}

.spec-strip-val {
  font-family: 'Champ', sans-serif;
  font-size: 2.4em;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 0.3em;
}

.spec-strip-lbl {
  font-family: 'Degular', sans-serif;
  font-size: 1.05em;
  font-weight: 700;
  color: #000000;
  line-height: 1.25;
}

@media screen and (max-width: 767px) {
  .spec-strip-col {
    border-right: none;
    border-bottom: 2px dashed rgba(0, 0, 0, 0.25);
    padding-bottom: 1.5em;
  }
  .spec-strip-col:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}


/* =================================================== */
/* FAQ & FOOTER OVERLAP FIX (ELIMINATE NEGATIVE MARGIN)*/
/* =================================================== */
.faq {
  padding-top: 6em !important;
  padding-bottom: 8em !important;
  position: relative !important;
  z-index: 2 !important;
  background-color: #ffffff !important;
  overflow: visible !important;
}

.footer {
  margin-top: 0 !important;
  padding-top: 6em !important;
  padding-bottom: 4em !important;
  position: relative !important;
  z-index: 5 !important;
  background-color: #000000 !important;
  overflow: visible !important;
}


/* =================================================== */
/* OG AARDVARK FLOW CARD WIDGETS & TYPOGRAPHY          */
/* =================================================== */
.flow__card {
  border: 3px solid #000000 !important;
  box-shadow: 8px 12px 0px #000000 !important;
  overflow: hidden;
}

.flow-card-widget {
  background: rgba(255, 255, 255, 0.88);
  padding: 1.2em 1.8em;
  border-radius: 1.4em;
  border: 2.5px solid #000000;
  box-shadow: 4px 6px 0px #000000;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  max-width: 85%;
}

.flow-widget-key {
  font-family: 'Champ', sans-serif;
  font-size: 1.5em;
  color: #000000;
  letter-spacing: -0.01em;
  line-height: 1;
  white-space: nowrap;
}

.flow__card-content-title.u-heading-s {
  margin: 0;
  line-height: 1;
}

.flow__card-content-paragraph.u-paragraph-regular {
  margin: 0;
  line-height: 1.35;
}


/* =================================================== */
/* HOW IT WORKS CARDS: SILKY TRANSITIONS & NO JITTER   */
/* =================================================== */
.flow__list {
  display: flex !important;
  gap: 1.8em !important;
  justify-content: center !important;
  align-items: stretch !important;
  flex-wrap: wrap !important;
  max-width: 1240px !important;
  margin: 0 auto !important;
  position: relative !important;
}

.flow__list-item {
  flex: 1 1 260px !important;
  max-width: 290px !important;
  position: relative !important;
  transition: z-index 0s !important;
  transform: none !important;
}

.flow__card {
  height: 100% !important;
  min-height: 480px !important;
  width: 100% !important;
  border-radius: 2.5em !important;
  border: 3px solid #000000 !important;
  box-shadow: 8px 12px 0px #000000 !important;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.3s ease !important;
  will-change: transform, box-shadow !important;
  transform-origin: center bottom !important;
}


/* Anchor Target Scroll Alignment */
#speed,
#flow,
#apps,
#pricing,
#faq {
  scroll-margin-top: calc(var(--header-height, 5em) + 2em) !important;
}
