:root {
  --ink: #212529;
  --muted: #6f747d;
  --soft: #f8f9fa;
  --paper: #ffffff;
  --pale: #f0f0f0;
  --dark: #28292e;
  --dark-2: #202126;
  --accent: #ff805d;
  --accent-soft: #f4b9a9;
  --line: #e4e6ea;
  --white: #ffffff;
  --shadow: 0 22px 58px rgba(17, 18, 22, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.dolan-navbar {
  z-index: 1030;
  box-shadow: 0 8px 24px rgba(17, 18, 22, 0.08);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}

.dolan-navbar .navbar-brand {
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 400;
}

.dolan-navbar .nav-link {
  color: #4e555f;
  font-size: 1rem;
  font-weight: 400;
}

.dolan-navbar .nav-link:hover,
.dolan-navbar .nav-link:focus,
.dolan-navbar .dropdown-item:hover,
.dolan-navbar .dropdown-item:focus {
  color: var(--accent);
}

.dolan-navbar .form-select {
  min-width: 76px;
  color: #4e555f;
  border-color: var(--line);
  font-size: 0.875rem;
  font-weight: 400;
}

.dolan-navbar .dropdown-menu {
  border-color: var(--line);
  border-radius: 8px;
}

.dolan-navbar .dropdown-item {
  font-size: 1rem;
  font-weight: 400;
}

.hero-actions,
.hero-facts,
.desktop-status,
.phone-chip-row,
.value-proof-row,
.site-footer {
  display: flex;
  align-items: center;
}

.site-footer a {
  transition: color 180ms ease;
}

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

.hero {
  min-height: 720px;
  padding: 80px 0;
  overflow: hidden;
  color: var(--white);
  background: var(--dark);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  gap: 52px;
  align-items: center;
  width: min(1110px, calc(100% - 32px));
  min-height: 560px;
  margin: 0 auto;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: 3.15rem;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
  color: var(--accent);
}

.hero-lead {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 1rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 36px;
  border-radius: 25px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.primary-button {
  color: var(--white);
  background: var(--accent);
  border: 1px solid var(--accent);
}

.secondary-button {
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-1px);
}

.secondary-button:hover {
  border-color: var(--accent);
}

.hero-visual {
  position: relative;
  min-height: 480px;
}

.hero-visual::before,
.hero-visual::after,
.visual-orbit {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero-visual::before {
  right: 10px;
  top: 42px;
  width: 410px;
  height: 310px;
  background: var(--accent-soft);
  border-radius: 54% 46% 58% 42% / 46% 57% 43% 54%;
  transform: rotate(-8deg);
}

.hero-visual::after {
  left: 78px;
  bottom: 10px;
  width: 360px;
  height: 180px;
  background: var(--accent-soft);
  border-radius: 52% 48% 58% 42% / 44% 46% 54% 56%;
  transform: rotate(9deg);
  opacity: 0.9;
}

.visual-orbit {
  right: 12px;
  top: 98px;
  width: 420px;
  height: 270px;
  border: 2px solid rgba(255, 128, 93, 0.78);
  border-radius: 50%;
  transform: rotate(18deg);
}

.desktop-device {
  position: absolute;
  right: 28px;
  top: 130px;
  z-index: 2;
  width: min(540px, 96%);
  overflow: hidden;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.desktop-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 22px;
  color: rgba(255, 255, 255, 0.68);
  background: #191a1e;
  font-size: 0.78rem;
}

.desktop-topbar span {
  width: 9px;
  height: 9px;
  background: var(--accent);
  border-radius: 50%;
}

.desktop-topbar span:nth-child(2) {
  background: #ffc067;
}

.desktop-topbar span:nth-child(3) {
  background: #76d58c;
}

.desktop-topbar strong {
  margin-left: auto;
  font-weight: 600;
}

.desktop-workspace {
  padding: 22px;
}

.app-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.app-tabs span {
  padding: 7px 12px;
  color: #777d87;
  background: #f3f4f6;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
}

.app-tabs .active {
  color: var(--white);
  background: var(--accent);
}

.typing-area {
  min-height: 168px;
  padding: 24px;
  background: #fbfbfc;
  border: 1px solid #eceef1;
  border-radius: 8px;
}

.typing-label {
  margin: 0 0 12px;
  color: #818793;
  font-size: 0.84rem;
  font-weight: 700;
}

.dictation-text {
  min-height: 62px;
  margin: 0;
  color: #28292e;
  font-size: 1.12rem;
  font-weight: 700;
}

.cursor-line {
  width: 3px;
  height: 25px;
  margin-top: 8px;
  background: var(--accent);
  animation: blink 1.05s steps(2, start) infinite;
}

.desktop-status {
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
  color: #737984;
  font-size: 0.82rem;
  font-weight: 700;
}

.desktop-status span {
  padding: 8px 12px;
  background: #f3f4f6;
  border-radius: 18px;
}

.phone-device {
  position: absolute;
  right: 0;
  bottom: 20px;
  z-index: 3;
  width: 178px;
  height: 352px;
  padding: 10px;
  background: #17181c;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.34);
}

.phone-speaker {
  width: 52px;
  height: 5px;
  margin: 0 auto 8px;
  background: #34363d;
  border-radius: 99px;
}

.phone-screen {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100% - 13px);
  padding: 17px 12px;
  background: #fbfbfc;
  border-radius: 20px;
}

.phone-header {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: #747b85;
  font-size: 0.72rem;
}

.phone-header strong {
  color: var(--accent);
}

.mic-core {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  margin: 22px auto 0;
  background: rgba(255, 128, 93, 0.18);
  border: 1px solid rgba(255, 128, 93, 0.36);
  border-radius: 50%;
}

.mic-core span {
  width: 32px;
  height: 50px;
  background: var(--accent);
  border-radius: 18px;
  box-shadow: inset 0 -11px 0 rgba(40, 41, 46, 0.12);
}

.waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 60px;
}

.waveform i {
  display: block;
  width: 6px;
  height: 20px;
  background: var(--accent);
  border-radius: 99px;
  animation: wave 900ms ease-in-out infinite alternate;
}

.waveform i:nth-child(2) {
  height: 36px;
  animation-delay: 120ms;
}

.waveform i:nth-child(3) {
  height: 48px;
  background: #28292e;
  animation-delay: 240ms;
}

.waveform i:nth-child(4) {
  height: 28px;
  animation-delay: 360ms;
}

.waveform i:nth-child(5) {
  height: 42px;
  background: #28292e;
  animation-delay: 480ms;
}

.waveform i:nth-child(6) {
  height: 30px;
  animation-delay: 600ms;
}

.waveform i:nth-child(7) {
  height: 18px;
  animation-delay: 720ms;
}

.phone-chip-row {
  flex-direction: column;
  gap: 8px;
}

.phone-chip-row span {
  width: 100%;
  padding: 8px 9px;
  color: #6f747d;
  background: #f0f1f3;
  border-radius: 18px;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
}

.section {
  padding: 86px 0;
}

.section-inner {
  width: min(1110px, calc(100% - 32px));
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p {
  max-width: 690px;
}

.section h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
}

.section h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.25;
}

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

.workflow-section {
  background: var(--white);
}

.workflow-grid,
.feature-grid,
.audience-grid {
  display: grid;
  gap: 18px;
}

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

.workflow-step,
.feature-card,
.audience-item,
.provider-card,
.download-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.workflow-step,
.feature-card {
  padding: 24px;
}

.workflow-step p,
.feature-card p,
.audience-item p,
.provider-card p {
  margin: 0;
}

.step-number {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--accent);
  font-size: 1.15rem;
  font-weight: 800;
}

.value-section {
  position: relative;
  overflow: hidden;
  background: var(--pale);
}

.value-section::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 38%;
  height: 100%;
  content: "";
  background: rgba(255, 128, 93, 0.08);
  clip-path: ellipse(74% 58% at 0% 50%);
}

.value-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  gap: 48px;
  align-items: center;
}

.value-copy p {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: 1.05rem;
}

.value-proof-row {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.value-proof-row span,
.stt-options span {
  padding: 8px 12px;
  color: #4e555f;
  background: var(--white);
  border: 1px solid #e6e7eb;
  border-radius: 20px;
  font-size: 0.88rem;
  font-weight: 700;
}

.value-scenes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.scene-card {
  overflow: hidden;
  background: var(--white);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 20px 42px rgba(40, 41, 46, 0.11);
}

.scene-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.scene-card div {
  padding: 20px;
}

.scene-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.scene-card h3 {
  font-size: 1.05rem;
}

.scene-card p {
  margin: 0;
}

.stt-section {
  background: var(--white);
}

.stt-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(560px, 1.22fr);
  gap: 46px;
  align-items: start;
}

.stt-copy p {
  max-width: 590px;
  margin: 20px 0 0;
  font-size: 1.05rem;
}

.stt-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.stt-options span {
  background: var(--soft);
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.provider-card {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 124px;
  padding: 18px;
}

.provider-card-accent {
  background: #fff3ee;
  border-color: rgba(255, 128, 93, 0.35);
}

.provider-card h3 {
  margin: 0 0 6px;
  font-size: 1.02rem;
}

.provider-logo {
  position: relative;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(33, 37, 41, 0.08);
  border-radius: 8px;
}

.provider-logo img {
  display: block;
  width: 39px;
  height: 39px;
  object-fit: contain;
}

.provider-logo-openai {
  background: #f7f8f4;
}

.provider-logo-google {
  background: #eef5ff;
}

.provider-logo-deepgram {
  background: #071d1a;
}

.provider-logo-deepgram img {
  filter: brightness(0) invert(1);
}

.provider-logo-amazon {
  background: #fff6e7;
}

.provider-logo-amazon::after {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 14px;
  height: 4px;
  content: "";
  background: #ff9900;
  border-radius: 99px;
}

.provider-logo-microsoft {
  background: #edf7ff;
}

.provider-logo-microsoft img {
  filter: brightness(0) saturate(100%) invert(34%) sepia(94%) saturate(1852%) hue-rotate(181deg) brightness(91%) contrast(101%);
}

.provider-logo-dolan {
  color: var(--white);
  background: var(--accent);
  font-size: 1.3rem;
  font-weight: 800;
}

.features-section {
  background: var(--soft);
}

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

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  color: #28292e;
  background: #fff0eb;
  border-radius: 50%;
}

.feature-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-bluetooth,
.icon-tray {
  color: #c9583f;
  background: #fff0eb;
}

.icon-cloud-ai,
.icon-fast-link {
  color: #735012;
  background: #fff4d6;
}

.icon-phone-mic,
.icon-text-input {
  color: #28292e;
  background: #f0f1f3;
}

.apps-section {
  color: var(--white);
  background: var(--dark);
}

.apps-section .eyebrow {
  color: var(--accent);
}

.apps-section h2 {
  color: var(--white);
}

.apps-section p {
  color: rgba(255, 255, 255, 0.58);
}

.apps-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 50px;
  align-items: start;
}

.app-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.product-tile {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  min-height: 62px;
  padding: 11px;
  color: #eef0f4;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

.product-tile > span:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
  font-weight: 700;
  line-height: 1.18;
}

.product-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  overflow: hidden;
  color: var(--white);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
}

.product-icon::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0) 48%);
}

.icon-word {
  background: #185abd;
}

.icon-excel {
  background: #217346;
}

.icon-docs {
  background: #4285f4;
}

.icon-chatgpt {
  background: #10a37f;
}

.icon-crm {
  background: #6d5dfc;
}

.icon-email {
  background: #ea4335;
}

.icon-browser {
  background: var(--accent);
}

.icon-messenger {
  background: #2997ff;
}

.doc-fold {
  position: relative;
  width: 20px;
  height: 24px;
  background: var(--white);
  border-radius: 3px;
}

.doc-fold::before {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  border-top: 7px solid #bcd5ff;
  border-left: 7px solid transparent;
}

.doc-fold::after,
.ai-ring::before,
.nodes::before,
.nodes::after,
.mail-shape::before,
.browser-dot::before,
.browser-dot::after,
.bubble::before,
.bubble::after {
  position: absolute;
  content: "";
}

.doc-fold::after {
  left: 5px;
  bottom: 6px;
  width: 10px;
  height: 2px;
  background: #4285f4;
  box-shadow: 0 -5px 0 #4285f4;
}

.ai-ring {
  width: 21px;
  height: 21px;
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.2);
}

.ai-ring::before {
  top: 8px;
  left: 18px;
  width: 10px;
  height: 3px;
  background: var(--white);
  border-radius: 99px;
  transform: rotate(42deg);
}

.nodes {
  position: relative;
  width: 22px;
  height: 22px;
  border: 3px solid var(--white);
  border-radius: 50%;
}

.nodes::before,
.nodes::after {
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
}

.nodes::before {
  top: -5px;
  right: -4px;
}

.nodes::after {
  left: -5px;
  bottom: -4px;
}

.mail-shape {
  position: relative;
  width: 24px;
  height: 17px;
  border: 3px solid var(--white);
  border-radius: 4px;
}

.mail-shape::before {
  top: 2px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-right: 3px solid var(--white);
  border-bottom: 3px solid var(--white);
  transform: rotate(45deg);
}

.browser-dot {
  position: relative;
  width: 24px;
  height: 24px;
  border: 3px solid var(--white);
  border-radius: 50%;
}

.browser-dot::before {
  top: 8px;
  left: -1px;
  width: 20px;
  height: 3px;
  background: var(--white);
  border-radius: 99px;
}

.browser-dot::after {
  top: 4px;
  left: 8px;
  width: 4px;
  height: 16px;
  background: var(--white);
  border-radius: 99px;
}

.bubble {
  position: relative;
  width: 24px;
  height: 18px;
  background: var(--white);
  border-radius: 7px;
}

.bubble::before {
  right: 2px;
  bottom: -5px;
  border-top: 7px solid var(--white);
  border-left: 7px solid transparent;
}

.bubble::after {
  left: 7px;
  top: 8px;
  width: 10px;
  height: 2px;
  background: #2997ff;
  border-radius: 99px;
}

.audience-section {
  background: var(--white);
}

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

.audience-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  column-gap: 16px;
  align-content: start;
  align-items: start;
  min-height: 230px;
  padding: 22px;
}

.audience-icon {
  display: grid;
  grid-row: 1 / span 2;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
}

.audience-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.audience-code,
.audience-chat {
  color: #28292e;
  background: #f0f1f3;
}

.audience-support {
  color: #c9583f;
  background: #fff0eb;
}

.audience-office {
  color: #735012;
  background: #fff4d6;
}

.download-section {
  background: var(--pale);
}

.download-layout {
  display: grid;
  gap: 32px;
  align-items: start;
}

.download-copy p {
  max-width: 610px;
  margin: 20px 0 0;
  font-size: 1.05rem;
}

.download-groups {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.download-group {
  min-width: 0;
}

h3.download-group-title {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
}

.download-cards {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.download-divider {
  width: 1px;
  margin: 30px 0 0;
  background: linear-gradient(to bottom, transparent, rgba(40, 41, 46, 0.18), transparent);
}

.download-card {
  display: grid;
  grid-template-columns: 44px minmax(74px, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 76px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(228, 230, 234, 0.88);
  box-shadow: 0 14px 30px rgba(40, 41, 46, 0.06);
}

.download-card h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.2;
}

.platform-marker {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: var(--accent);
  border-radius: 8px;
}

.platform-marker svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.platform-marker-android {
  background: #3ddc84;
}

.platform-marker-apple {
  background: #28292e;
}

.platform-marker-macos {
  background: transparent;
}

.platform-marker-macos img {
  display: block;
  width: 44px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 7px 10px rgba(40, 41, 46, 0.18));
}

.platform-marker-windows {
  background: #0078d4;
}

.download-button {
  width: auto;
  min-height: 36px;
  margin: 0;
  padding: 7px 15px;
  color: var(--accent);
  background: #fff4ef;
  border-color: rgba(255, 128, 93, 0.32);
  border-radius: 20px;
  font-size: 0.86rem;
  white-space: nowrap;
}

.download-button[aria-disabled="true"] {
  cursor: default;
}

.download-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer {
  justify-content: space-between;
  gap: 20px;
  width: min(1110px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  color: rgba(33, 37, 41, 0.72);
  background: var(--white);
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

@keyframes wave {
  from {
    transform: scaleY(0.55);
  }

  to {
    transform: scaleY(1);
  }
}

@media (max-width: 1060px) {
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 28px;
  }

  .hero-content {
    max-width: 720px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .desktop-device {
    left: 0;
    right: auto;
    width: min(580px, 86%);
  }

  .phone-device {
    right: 24px;
  }

  .workflow-grid,
  .feature-grid,
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-layout,
  .stt-layout,
  .apps-layout,
  .download-layout {
    grid-template-columns: 1fr;
  }

  .value-scenes,
  .provider-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .download-note {
    grid-column: 1;
  }
}

@media (max-width: 860px) {
  .download-groups {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .download-divider {
    width: 100%;
    height: 1px;
    margin: 0;
    background: linear-gradient(to right, transparent, rgba(40, 41, 46, 0.18), transparent);
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 0;
    padding: 52px 0 64px;
  }

  .hero h1 {
    font-size: 2.35rem;
    line-height: 1.2;
  }

  .hero-actions {
    align-items: stretch;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .hero-visual {
    min-height: 370px;
  }

  .hero-visual::before {
    right: -12px;
    top: 52px;
    width: 310px;
    height: 220px;
  }

  .hero-visual::after {
    left: 0;
    bottom: 12px;
    width: 260px;
    height: 132px;
  }

  .visual-orbit {
    right: -40px;
    top: 92px;
    width: 320px;
    height: 210px;
  }

  .desktop-device {
    top: 118px;
    width: 430px;
    max-width: none;
    left: -92px;
  }

  .desktop-workspace {
    padding: 14px;
  }

  .typing-area {
    min-height: 142px;
    padding: 16px;
  }

  .dictation-text {
    font-size: 1rem;
  }

  .phone-device {
    width: 150px;
    height: 304px;
    right: 6px;
    bottom: 6px;
  }

  .phone-screen {
    padding: 14px 10px;
  }

  .mic-core {
    width: 70px;
    height: 70px;
  }

  .mic-core span {
    width: 27px;
    height: 40px;
  }

  .section {
    padding: 64px 0;
  }

  .section h2 {
    font-size: 1.72rem;
  }

  .workflow-grid,
  .feature-grid,
  .audience-grid,
  .value-scenes,
  .provider-grid {
    grid-template-columns: 1fr;
  }

  .audience-item {
    min-height: 0;
  }

  .provider-card {
    grid-template-columns: 54px minmax(0, 1fr);
    min-height: 0;
    padding: 16px;
  }

  .provider-logo {
    width: 54px;
    height: 54px;
  }

  .provider-logo img {
    width: 34px;
    height: 34px;
  }

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

  .download-card {
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 12px;
    padding: 14px;
  }

  .download-button {
    width: auto;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 22px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
