html {
  overflow-x: hidden;
}

.tdash-body {
  background: #f7f7f3;
  color: #131720;
  overflow-x: hidden;
}

.tdash-header {
  background: rgba(248, 248, 244, 0.9);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  backdrop-filter: saturate(150%) blur(16px);
  animation: tdash-header-settle 860ms cubic-bezier(.22, 1, .36, 1) both;
}

.tdash-brand,
.tdash-nav a {
  color: #151922;
}

.tdash-nav {
  gap: 24px;
}

.tdash-nav a {
  font-size: 0.9rem;
}

.tdash-brand,
.tdash-nav a,
.tdash-store-link,
.tdash-language-toggle,
.tdash-menu-toggle {
  animation: tdash-header-item-in 760ms cubic-bezier(.22, 1, .36, 1) both;
}

.tdash-brand {
  animation-delay: 80ms;
}

.tdash-nav a:nth-child(1) {
  animation-delay: 140ms;
}

.tdash-nav a:nth-child(2) {
  animation-delay: 200ms;
}

.tdash-nav a:nth-child(3) {
  animation-delay: 260ms;
}

.tdash-nav a:nth-child(4) {
  animation-delay: 320ms;
}

.tdash-nav a:nth-child(5) {
  animation-delay: 380ms;
}

.tdash-nav a:nth-child(6) {
  animation-delay: 440ms;
}

.tdash-nav a:nth-child(7) {
  animation-delay: 500ms;
}

.tdash-nav a:hover {
  color: #000;
}

.tdash-language-toggle,
.tdash-store-link,
.tdash-menu-toggle {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(15, 23, 42, 0.1);
  color: #111827;
  text-decoration: none;
}

.tdash-language-toggle {
  min-width: 44px;
  padding: 0 12px;
  animation-delay: 260ms;
}

.tdash-store-link {
  animation-delay: 300ms;
}

.tdash-menu-toggle {
  animation-delay: 340ms;
}

.tdash-page {
  background:
    radial-gradient(circle at 78% 18%, rgba(220, 38, 38, 0.08), transparent 26%),
    linear-gradient(180deg, #fbfbf8 0%, #f7f7f3 100%);
}

@keyframes tdash-header-settle {
  0% {
    opacity: 0;
    transform: translate3d(0, -18px, 0);
    filter: blur(8px);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes tdash-header-item-in {
  0% {
    opacity: 0;
    transform: translate3d(0, -14px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.tdash-hero,
.tdash-section,
.tdash-feature,
.tdash-download {
  padding: 40px 0 68px;
}

.tdash-hero {
  padding-top: 90px;
  padding-bottom: 20px;
}

.tdash-hero-grid,
.tdash-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  align-items: center;
}

.tdash-copy {
  margin-top: -24px;
}

.reveal .tdash-kicker,
.reveal .tdash-feature-kicker {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition: opacity 760ms cubic-bezier(.22, 1, .36, 1), transform 760ms cubic-bezier(.22, 1, .36, 1);
}

.reveal .tdash-title,
.reveal .tdash-feature-copy h2,
.reveal .tdash-section-head h2,
.reveal .tdash-download-meta strong {
  opacity: 0;
  transform: translate3d(-30px, 0, 0);
  transition: opacity 1080ms cubic-bezier(.22, 1, .36, 1), transform 1080ms cubic-bezier(.22, 1, .36, 1);
}

.reveal .tdash-lead,
.reveal .tdash-feature-copy p:last-child,
.reveal .tdash-section-head p,
.reveal .tdash-download-meta span {
  opacity: 0;
  transform: translate3d(34px, 0, 0);
  transition: opacity 1180ms cubic-bezier(.22, 1, .36, 1), transform 1180ms cubic-bezier(.22, 1, .36, 1);
  transition-delay: 140ms;
}

.reveal.active .tdash-kicker,
.reveal.active .tdash-feature-kicker,
.reveal.active .tdash-title,
.reveal.active .tdash-feature-copy h2,
.reveal.active .tdash-section-head h2,
.reveal.active .tdash-download-meta strong,
.reveal.active .tdash-lead,
.reveal.active .tdash-feature-copy p:last-child,
.reveal.active .tdash-section-head p,
.reveal.active .tdash-download-meta span {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.tdash-kicker {
  margin: 0 0 12px;
  color: #c94b45;
  font-size: 0.94rem;
  font-weight: 650;
}

.tdash-title {
  margin: 26px 0 0;
  max-width: 690px;
  font-size: clamp(1.35rem, 2.5vw, 2.25rem);
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.tdash-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
}

.tdash-title-row picture {
  display: flex;
  flex: 0 0 auto;
}

.tdash-title-subline {
  display: block;
  margin-top: 18px;
}

.tdash-title-name {
  font-weight: 820;
}

.tdash-title-logo {
  width: clamp(52px, 5vw, 76px);
  height: clamp(52px, 5vw, 76px);
  border-radius: 18px;
  flex: 0 0 auto;
  box-shadow: 0 18px 38px rgba(21, 26, 35, 0.12);
}

.tdash-lead {
  margin: 28px 0 0;
  max-width: 650px;
  color: #5d6674;
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.tdash-actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.tdash-appstore-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #dc2626;
  color: #fff;
}

.tdash-appstore-btn:hover {
  background: #ef4444;
}

.tdash-apple-mark {
  font-size: 1.15em;
  line-height: 1;
}

.tdash-badges {
  margin-top: 32px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tdash-badges span {
  --pill-height: 36px;
  display: inline-flex;
  align-items: center;
  min-height: var(--pill-height);
  padding: 0 14px;
  border-radius: calc(var(--pill-height) / 2);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: #475161;
  font-size: 0.9rem;
}

.tdash-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  isolation: isolate;
}

.tdash-hero-visual::before {
  content: "";
  position: absolute;
  inset: 6% 4% 0;
  border-radius: 46%;
  background:
    radial-gradient(circle at 52% 20%, rgba(220, 38, 38, 0.16), transparent 34%),
    radial-gradient(circle at 45% 72%, rgba(122, 132, 148, 0.14), transparent 38%);
  filter: blur(38px);
  z-index: -1;
}

.tdash-hero-visual picture,
.tdash-feature-visual picture {
  display: block;
}

.tdash-hero-visual img {
  display: block;
  width: min(100%, 620px);
  height: auto;
  filter:
    drop-shadow(0 28px 42px rgba(18, 23, 34, 0.14))
    drop-shadow(0 8px 14px rgba(220, 38, 38, 0.08));
}

.tdash-section,
.tdash-feature,
.tdash-download {
  position: relative;
  background:
    linear-gradient(180deg, #f6f5f1 0%, #efede8 100%);
  border-top: 1px solid rgba(15, 23, 42, 0.04);
}

.tdash-feature--alt,
.tdash-section--muted {
  background:
    radial-gradient(circle at 16% 34%, rgba(220, 38, 38, 0.06), transparent 30%),
    linear-gradient(180deg, #f4f3ef 0%, #efede8 100%);
}

.tdash-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 46%, rgba(255, 255, 255, 0.55), transparent 28%),
    radial-gradient(circle at 18% 34%, rgba(205, 216, 232, 0.18), transparent 28%);
  background-size: auto, 120px 100%;
  pointer-events: none;
}

.tdash-feature-grid,
.tdash-section > .container,
.tdash-download > .container {
  position: relative;
  z-index: 1;
}

.tdash-feature-copy {
  max-width: 540px;
}

.tdash-feature-kicker {
  margin: 0 0 10px;
  color: #c94b45;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tdash-feature-copy h2,
.tdash-section-head h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 2.25rem);
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.tdash-feature-copy p:last-child,
.tdash-section-head p {
  margin: 14px 0 0;
  color: #5d6674;
}

.tdash-feature-visual {
  position: relative;
}

.tdash-feature-visual::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(72%, 420px);
  height: 66px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(170, 178, 190, 0.28);
  filter: blur(24px);
  z-index: 0;
}

.tdash-feature-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 22px 28px rgba(18, 23, 34, 0.11))
    drop-shadow(0 6px 10px rgba(255, 58, 58, 0.08));
}

.tdash-feature-image--portrait {
  max-width: 500px;
  margin: 0 auto;
}

.tdash-signal-panel {
  min-height: 330px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background:
    radial-gradient(circle at 50% 30%, rgba(220, 38, 38, 0.12), transparent 28%),
    radial-gradient(circle at 50% 72%, rgba(71, 85, 105, 0.1), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(248, 248, 244, 0.92));
  text-align: center;
}

.tdash-signal-panel::after {
  display: none;
}

.tdash-signal-panel span,
.tdash-signal-panel strong,
.tdash-signal-panel em {
  display: block;
}

.tdash-signal-panel span {
  color: #c94b45;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tdash-signal-panel strong {
  margin-top: 12px;
  font-size: clamp(1.7rem, 4vw, 3.1rem);
  letter-spacing: -0.05em;
}

.tdash-signal-panel em {
  margin: 10px auto 0;
  max-width: 280px;
  color: #5d6674;
  font-style: normal;
}

.tdash-section-head {
  max-width: 780px;
}

.tdash-section-head--split {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.tdash-section-head--split > div {
  max-width: 760px;
}

.tdash-back-top {
  flex: 0 0 auto;
  white-space: nowrap;
}

.tdash-requirements-grid,
.tdash-seo-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.tdash-info-card {
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.76);
}

.tdash-info-card h3 {
  margin: 0;
  font-size: 1.12rem;
  letter-spacing: -0.025em;
}

.tdash-info-card p {
  margin: 10px 0 0;
  color: #626b79;
}

.tdash-faq-list {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.tdash-faq-list details {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  overflow: hidden;
}

.tdash-faq-list summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 18px 52px 18px 20px;
  color: #171b24;
  font-weight: 680;
  letter-spacing: -0.02em;
}

.tdash-faq-list summary::-webkit-details-marker {
  display: none;
}

.tdash-faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 26px;
  height: 26px;
  transform: translateY(-50%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #c94b45;
  background: rgba(220, 38, 38, 0.08);
}

.tdash-faq-list details[open] summary::after {
  content: "-";
}

.tdash-faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: #626b79;
}

.tdash-download {
  padding-bottom: 84px;
}

.tdash-download-card {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.tdash-download-mini {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0 0;
}

.tdash-download-mini picture {
  display: flex;
  flex: 0 0 auto;
}

.tdash-download-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  flex: 0 0 auto;
}

.tdash-download-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  margin-right: auto;
}

.tdash-download-meta strong {
  font-size: 1.28rem;
  letter-spacing: -0.03em;
}

.tdash-download-meta span {
  color: #626b79;
}

.tdash-footer {
  color: #7c8697;
  background: #f7f7f3;
}

.tdash-disclaimer {
  max-width: 880px;
  margin: 0 auto 14px;
  color: #8b95a5;
  font-size: 0.78rem;
  line-height: 1.65;
}

.tdash-footer-links {
  display: inline-flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.tdash-footer-links a {
  color: #667080;
  text-decoration: none;
  font-size: 0.86rem;
}

.tdash-footer-links a:hover {
  color: #151922;
}

.tdash-icp {
  margin: 0 0 8px;
}

.tdash-icp a {
  color: #667080;
  text-decoration: none;
  font-size: 0.86rem;
}

.tdash-icp a:hover {
  color: #151922;
}

.tdash-legal-page {
  background: #f7f7f3;
  color: #131720;
}

.tdash-legal-main {
  padding: 76px 0 72px;
  background:
    radial-gradient(circle at 78% 10%, rgba(220, 38, 38, 0.08), transparent 28%),
    linear-gradient(180deg, #fbfbf8 0%, #f7f7f3 100%);
}

.tdash-legal-article {
  max-width: 840px;
}

.tdash-legal-article h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.tdash-legal-article h2 {
  margin: 34px 0 0;
  font-size: 1.28rem;
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.tdash-legal-article p,
.tdash-legal-article li {
  color: #596372;
}

.tdash-legal-article p {
  margin: 14px 0 0;
}

.tdash-legal-article ul {
  margin: 12px 0 0;
  padding-left: 1.2em;
}

.tdash-legal-note {
  margin-top: 10px;
  color: #7c8697;
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .tdash-hero-grid,
  .tdash-feature-grid,
  .tdash-requirements-grid,
  .tdash-seo-grid {
    grid-template-columns: 1fr;
  }

  .tdash-title,
  .tdash-feature-copy,
  .tdash-lead {
    max-width: none;
  }

  .tdash-section-head--split {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .tdash-language-toggle {
    min-width: 40px;
    padding: 6px 10px;
  }

  .tdash-hero,
  .tdash-section,
  .tdash-feature,
  .tdash-download {
    padding: 30px 0 44px;
  }

  .tdash-hero {
    padding-top: 70px;
    padding-bottom: 6px;
  }

  .tdash-copy {
    margin-top: -12px;
  }

  .tdash-title,
  .tdash-feature-copy h2,
  .tdash-section-head h2 {
    font-size: clamp(1.2rem, 5.8vw, 1.75rem);
    letter-spacing: -0.03em;
  }

  .tdash-title-row {
    gap: 12px;
  }

  .tdash-title-subline {
    margin-top: 14px;
  }

  .tdash-title-logo {
    width: clamp(42px, 12vw, 58px);
    height: clamp(42px, 12vw, 58px);
    border-radius: 14px;
  }

  .tdash-lead {
    font-size: 1rem;
  }

  .tdash-actions {
    flex-direction: column;
  }

  .tdash-actions .btn {
    width: 100%;
    text-align: center;
  }

  .tdash-download-mini {
    flex-direction: column;
    align-items: flex-start;
  }

  .tdash-download-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tdash-header,
  .tdash-brand,
  .tdash-nav a,
  .tdash-store-link,
  .tdash-language-toggle,
  .tdash-menu-toggle {
    animation: none;
  }

  .reveal .tdash-kicker,
  .reveal .tdash-feature-kicker,
  .reveal .tdash-title,
  .reveal .tdash-feature-copy h2,
  .reveal .tdash-section-head h2,
  .reveal .tdash-download-meta strong,
  .reveal .tdash-lead,
  .reveal .tdash-feature-copy p:last-child,
  .reveal .tdash-section-head p,
  .reveal .tdash-download-meta span {
    transition: none;
    opacity: 1;
    transform: none;
  }
}
