.tcams-body {
  background: #f7f7f3;
  color: #131720;
}

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

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

.tcams-brand {
  animation: tcams-header-item-in 760ms cubic-bezier(.22, 1, .36, 1) 80ms both;
}

.tcams-nav a {
  animation: tcams-header-item-in 720ms cubic-bezier(.22, 1, .36, 1) both;
}

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

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

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

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

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

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

.tcams-store-link {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(15, 23, 42, 0.1);
  color: #111827;
  text-decoration: none;
  animation: tcams-header-item-in 780ms cubic-bezier(.22, 1, .36, 1) 300ms both;
}

.tcams-language-toggle {
  min-width: 44px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(15, 23, 42, 0.1);
  color: #111827;
  animation: tcams-header-item-in 780ms cubic-bezier(.22, 1, .36, 1) 260ms both;
}

.tcams-menu-toggle {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(15, 23, 42, 0.1);
  color: #111827;
  animation: tcams-header-item-in 780ms cubic-bezier(.22, 1, .36, 1) 340ms both;
}

.tcams-page {
  background: #f7f7f3;
}

@keyframes tcams-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 tcams-header-item-in {
  0% {
    opacity: 0;
    transform: translate3d(0, -14px, 0);
  }

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

.tcams-hero,
.tcams-section,
.tcams-feature,
.tcams-download {
  padding: 36px 0 60px;
}

.tcams-hero {
  padding-top: 88px;
  padding-bottom: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(109, 168, 255, 0.1), transparent 26%),
    linear-gradient(180deg, #fbfbf8 0%, #f7f7f3 100%);
}

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

.tcams-copy {
  margin-top: -28px;
}

.reveal .tcams-kicker,
.reveal .tcams-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 .tcams-title,
.reveal .tcams-feature-copy h2,
.reveal .tcams-section-head h2,
.reveal .tcams-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 .tcams-lead,
.reveal .tcams-feature-copy p:last-child,
.reveal .tcams-section-head p,
.reveal .tcams-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 .tcams-kicker,
.reveal.active .tcams-feature-kicker,
.reveal.active .tcams-title,
.reveal.active .tcams-feature-copy h2,
.reveal.active .tcams-section-head h2,
.reveal.active .tcams-download-meta strong,
.reveal.active .tcams-lead,
.reveal.active .tcams-feature-copy p:last-child,
.reveal.active .tcams-section-head p,
.reveal.active .tcams-download-meta span {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.tcams-kicker {
  margin: 0 0 10px;
  color: #5f7ba4;
  font-size: 0.94rem;
  font-weight: 600;
}

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

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

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

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

.tcams-title-name {
  font-weight: 800;
}

.tcams-title-logo {
  width: clamp(52px, 5vw, 76px);
  height: clamp(52px, 5vw, 76px);
  border-radius: 18px;
  flex: 0 0 auto;
}

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

.tcams-lead strong {
  color: #151922;
}

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

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

.tcams-appstore-btn:hover {
  background: #0a84ff;
}

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

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

.tcams-badges span {
  --pill-height: 36px;
  position: relative;
  isolation: isolate;
  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;
  overflow: hidden;
}

.tcams-slot,
.tcams-info-card,
.tcams-download-card,
.tcams-trust-card {
  border-radius: 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 24px 50px rgba(21, 26, 35, 0.06);
}

.tcams-preview-card {
  position: relative;
  padding: 0;
  text-align: center;
  overflow: visible;
}

.tcams-preview-card picture,
.tcams-feature-visual picture {
  display: block;
}

.tcams-preview-card img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 520px;
  margin: 0 auto;
  filter: drop-shadow(0 28px 42px rgba(18, 23, 34, 0.12));
}

.tcams-preview-card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: min(78%, 420px);
  height: 54px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(195, 202, 213, 0.42);
  filter: blur(28px);
  pointer-events: none;
  z-index: -1;
}

.tcams-section-head {
  max-width: 760px;
}

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

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

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

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

.tcams-section-head p {
  margin: 14px 0 0;
  color: #667080;
}

.tcams-feature--alt,
.tcams-section--muted {
  background:
    linear-gradient(180deg, #f4f3ef 0%, #efede8 100%);
}

.tcams-section,
.tcams-feature,
.tcams-download {
  position: relative;
  background:
    linear-gradient(180deg, #f6f5f1 0%, #efede8 100%);
}

.tcams-section {
  border-top: 1px solid rgba(15, 23, 42, 0.04);
}

#contact.tcams-section--muted {
  background: #f7f7f3;
  border-top: 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}

#download.tcams-download {
  background: #f7f7f3;
}

#features.tcams-feature {
  padding-top: 32px;
  border-top: 0;
}

.tcams-feature-copy {
  max-width: 520px;
}

.tcams-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 34%, rgba(255, 255, 255, 0.55), transparent 22%),
    radial-gradient(circle at 78% 52%, rgba(205, 216, 232, 0.26), transparent 28%);
  pointer-events: none;
}

.tcams-feature--alt::before {
  background:
    radial-gradient(circle at 78% 28%, rgba(255, 255, 255, 0.56), transparent 24%),
    radial-gradient(circle at 26% 60%, rgba(204, 212, 224, 0.22), transparent 30%);
}

.tcams-feature-grid {
  position: relative;
  z-index: 1;
}

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

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

.tcams-feature-copy p:last-child {
  margin: 14px 0 0;
  color: #5d6674;
}

.tcams-feature-visual {
  position: relative;
  background: transparent;
}

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

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

.tcams-slot {
  position: relative;
  min-height: 340px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
}

.tcams-slot::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 14%, rgba(109, 168, 255, 0.14), transparent 22%),
    linear-gradient(90deg, rgba(15, 23, 42, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(15, 23, 42, 0.05) 1px, transparent 1px);
  background-size: auto, 20% 100%, 100% 20%;
  pointer-events: none;
}

.tcams-slot--portrait {
  aspect-ratio: 4 / 5;
  min-height: 0;
}

.tcams-slot--wide {
  aspect-ratio: 16 / 10;
  min-height: 0;
}

.tcams-slot span,
.tcams-slot strong,
.tcams-slot em {
  position: relative;
  z-index: 1;
  display: block;
}

.tcams-slot span {
  color: #6f7f9c;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tcams-slot strong {
  margin-top: 12px;
  font-size: clamp(1.2rem, 2vw, 1.9rem);
  letter-spacing: -0.04em;
  max-width: 12ch;
}

.tcams-slot em {
  margin-top: 10px;
  color: #7c8594;
  font-style: normal;
}

.tcams-slot--quad {
  min-height: 0;
  aspect-ratio: 4 / 5;
}

.tcams-quad-grid {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.tcams-quad-grid div {
  display: grid;
  place-items: end center;
  min-height: 120px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(17, 23, 35, 0.06);
  border: 1px dashed rgba(15, 23, 42, 0.08);
  color: #586376;
}

.tcams-slot--export {
  min-height: 360px;
}

.tcams-export-stack {
  position: relative;
  flex: 1;
  min-height: 220px;
  margin-bottom: 18px;
}

.tcams-export-card {
  position: absolute;
  left: 50%;
  top: 52%;
  width: min(82%, 320px);
  height: 176px;
  display: grid;
  place-items: end center;
  padding-bottom: 16px;
  border-radius: 20px;
  background: rgba(17, 23, 35, 0.06);
  border: 1px dashed rgba(15, 23, 42, 0.1);
  color: #50596a;
  transform: translate(-50%, -50%) rotate(-6deg);
}

.tcams-export-card--portrait {
  width: min(56%, 210px);
  height: 230px;
  transform: translate(-50%, -50%) rotate(5deg) translateX(104px);
}

.tcams-export-card--square {
  width: 150px;
  height: 150px;
  transform: translate(-50%, -50%) rotate(2deg) translateX(-84px) translateY(42px);
}

.tcams-trust-card {
  min-height: 340px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 10%, rgba(109, 168, 255, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(248, 248, 244, 0.94));
}

.tcams-trust-card strong {
  font-size: clamp(2rem, 5vw, 3.8rem);
  letter-spacing: -0.07em;
}

.tcams-trust-card span {
  margin-top: 12px;
  color: #5d6674;
}

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

.tcams-info-card {
  padding: 22px;
}

.tcams-info-card h3 {
  margin: 0;
  font-size: 1.18rem;
  letter-spacing: -0.03em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tcams-legal-main {
  padding: 76px 0 72px;
}

.tcams-legal-article {
  max-width: 820px;
}

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

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

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

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

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

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

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

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

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

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

  .tcams-hero,
  .tcams-section,
  .tcams-feature,
  .tcams-download {
    padding: 28px 0 40px;
  }

  .tcams-hero {
    padding-top: 68px;
    padding-bottom: 0;
  }

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

  #features.tcams-feature {
    padding-top: 22px;
  }

  .tcams-title {
    font-size: clamp(1.2rem, 5.8vw, 1.75rem);
    letter-spacing: -0.03em;
  }

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

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

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

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

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

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

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

  .tcams-preview-card,
  .tcams-slot,
  .tcams-info-card,
  .tcams-trust-card {
    padding: 18px;
    border-radius: 22px;
  }

  .tcams-download-card {
    padding: 0;
    border-radius: 0;
  }

  .tcams-slot strong {
    max-width: none;
  }

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

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

  .tcams-quad-grid div {
    min-height: 96px;
  }

  .tcams-export-card {
    height: 146px;
  }

  .tcams-export-card--portrait {
    width: min(58%, 180px);
    height: 196px;
    transform: translate(-50%, -50%) rotate(5deg) translateX(74px);
  }

  .tcams-export-card--square {
    width: 128px;
    height: 128px;
    transform: translate(-50%, -50%) rotate(2deg) translateX(-64px) translateY(34px);
  }
}

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

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