﻿:root {
  --bg: #0a1428;
  --bg-deep: #071020;
  --surface: #1b2b45;
  --surface-2: #13233d;
  --line: rgba(143, 163, 192, 0.22);
  --accent: #00d4ff;
  --accent-soft: rgba(0, 212, 255, 0.14);
  --profit: #00d084;
  --loss: #ff6b6b;
  --gold: #f2c66d;
  --text: #e8f0ff;
  --muted: #8fa3c0;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius: 18px;
  --max: 1180px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 10%, rgba(0, 212, 255, 0.14), transparent 30%),
    linear-gradient(180deg, #0a1428 0%, #081122 46%, #071020 100%);
  color: var(--text);
  font-family: "Aptos", "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.dynamic-home {
  position: relative;
  overflow-x: clip;
}

.dynamic-home main,
.dynamic-home .builder-header,
.dynamic-home .footer {
  position: relative;
  z-index: 2;
}

.home-ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ambient-gradient,
.ambient-grid,
.ambient-orb {
  position: absolute;
}

.ambient-gradient {
  inset: -20% -10%;
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 212, 255, 0.16), transparent 34%),
    radial-gradient(circle at 80% 22%, rgba(74, 158, 218, 0.18), transparent 30%),
    radial-gradient(circle at 70% 80%, rgba(0, 208, 132, 0.12), transparent 36%);
  filter: blur(1px);
  animation: ambientShift 22s ease-in-out infinite alternate;
}

.ambient-grid {
  inset: -8%;
  opacity: 0.2;
  background:
    linear-gradient(rgba(143, 163, 192, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 163, 192, 0.12) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 35%, black, transparent 72%);
  animation: gridFloat 28s linear infinite;
}

.ambient-orb {
  width: 34vw;
  height: 34vw;
  min-width: 280px;
  min-height: 280px;
  max-width: 580px;
  max-height: 580px;
  border-radius: 50%;
  filter: blur(52px);
  opacity: 0.28;
  will-change: transform;
}

.orb-worthtrack {
  left: -12vw;
  top: 12vh;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.68), rgba(0, 212, 255, 0));
}

.orb-raintrack {
  right: -8vw;
  top: 44vh;
  background: radial-gradient(circle, rgba(74, 158, 218, 0.62), rgba(74, 158, 218, 0));
}

.orb-tradecalc {
  left: 28vw;
  bottom: -16vh;
  background: radial-gradient(circle, rgba(77, 171, 247, 0.54), rgba(77, 171, 247, 0));
}

.orb-fxtrack {
  right: 20vw;
  top: -14vh;
  background: radial-gradient(circle, rgba(120, 224, 143, 0.52), rgba(120, 224, 143, 0));
}

.reveal-target {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-target.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes ambientShift {
  0% {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }
  100% {
    transform: translate3d(3%, 2%, 0) scale(1.04);
  }
}

@keyframes gridFloat {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(26px, 18px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ambient-gradient,
  .ambient-grid,
  .hero-image-layer img,
  .hero-motion-layer::before,
  .hero-motion-layer span,
  .ai-orbit,
  .idea-stream i {
    animation: none;
  }

  .reveal-target {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

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

img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 16, 32, 0.82);
  border-bottom: 1px solid var(--line);
}

.nav {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 215px;
}

.builder-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0, 212, 255, 0.32);
  border-radius: 10px;
  color: var(--accent);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.14), rgba(27, 43, 69, 0.6));
  font-weight: 800;
}

.builder-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(143, 163, 192, 0.24);
  background: rgba(5, 11, 22, 0.9);
}

.builder-nav {
  min-height: 76px;
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  gap: 22px;
  align-items: center;
}

.builder-logo {
  color: var(--text);
  font-size: 25px;
  font-weight: 950;
}

.builder-logo span {
  color: var(--accent);
}

.language-support-card {
  margin-bottom: 16px;
}

.language-pill-list {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.language-pill-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 212, 255, 0.28);
  background: rgba(0, 212, 255, 0.1);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

/* Global polish */
a,
button,
.button,
.preview-feature-card,
.content-card,
.shot-card {
  transition:
    transform 180ms ease,
    box-shadow 220ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

a:focus-visible,
button:focus-visible,
.button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.content-card,
.shot-card,
.preview-feature-card {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.content-card:hover,
.shot-card:hover,
.preview-feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.3);
  border-color: rgba(0, 212, 255, 0.35);
}

/* WorthTrack page consistency */
.preview-links {
  gap: 10px;
}

.preview-links a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
}

.preview-feature-grid {
  align-items: stretch;
}

.preview-feature-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  row-gap: 10px;
  min-height: 100%;
}

.preview-feature-card p {
  margin: 0;
  line-height: 1.6;
}

.preview-learn {
  margin-top: auto;
}

.language-support-card {
  border-color: rgba(0, 212, 255, 0.28);
  background:
    linear-gradient(145deg, rgba(0, 212, 255, 0.08), transparent 52%),
    rgba(27, 43, 69, 0.78);
}

/* Better mobile balance */
@media (max-width: 1024px) {
  .section {
    padding: 62px 0;
  }

  .section-title {
    gap: 14px;
    margin-bottom: 18px;
  }

  .section-title p {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .preview-feature-card {
    row-gap: 8px;
  }

  .language-pill-list {
    gap: 8px;
  }

  .language-pill-list span {
    min-height: 30px;
    padding: 0 10px;
    font-size: 12px;
  }
}

.builder-links {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.builder-links a {
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(232, 240, 255, 0.78);
  font-size: 14px;
}

.builder-links a:hover {
  color: var(--accent);
  background: rgba(0, 212, 255, 0.1);
}

.builder-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  color: #071020;
  background: var(--accent);
  font-weight: 900;
}

.builder-hero {
  position: relative;
  min-height: calc(100vh - 76px);
  padding: 88px 5vw 70px;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.74fr);
  gap: 52px;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 12%, rgba(0, 212, 255, 0.18), transparent 28%),
    radial-gradient(circle at 12% 70%, rgba(0, 208, 132, 0.12), transparent 30%),
    linear-gradient(135deg, #071020 0%, #081a31 54%, #050a14 100%);
}

.ai-services-hero {
  min-height: min(860px, calc(100vh - 76px));
  display: block;
  padding: 92px 5vw 86px;
  isolation: isolate;
  background: #02050d;
}

.ai-services-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background: #02050d;
}

.ai-services-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(2, 5, 13, 0.92) 0%, rgba(2, 5, 13, 0.62) 34%, rgba(2, 5, 13, 0.22) 62%, rgba(2, 5, 13, 0.48) 100%),
    linear-gradient(180deg, rgba(2, 5, 13, 0.2) 0%, rgba(2, 5, 13, 0.14) 58%, rgba(2, 5, 13, 0.9) 100%);
  pointer-events: none;
}

.hero-image-layer {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-image-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 46%;
  opacity: 0.94;
  filter: saturate(1.08) contrast(1.05);
  transform: scale(1.04);
  animation: aiHeroDrift 18s ease-in-out infinite alternate;
}

.hero-motion-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-motion-layer::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background:
    linear-gradient(112deg, transparent 0 35%, rgba(0, 212, 255, 0.42) 46%, transparent 56%),
    linear-gradient(68deg, transparent 0 48%, rgba(183, 91, 255, 0.34) 56%, transparent 66%);
  transform: translateX(-30%);
  animation: aiScanSweep 7s ease-in-out infinite;
}

.hero-motion-layer span {
  position: absolute;
  width: 160px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.95), rgba(183, 91, 255, 0.85), transparent);
  box-shadow: 0 0 22px rgba(0, 212, 255, 0.72);
  opacity: 0.48;
  transform-origin: left center;
  animation: aiPulseLine 4.8s ease-in-out infinite;
}

.hero-motion-layer span:nth-child(1) {
  left: 47%;
  top: 45%;
  transform: rotate(-14deg);
}

.hero-motion-layer span:nth-child(2) {
  left: 57%;
  top: 31%;
  width: 220px;
  transform: rotate(28deg);
  animation-delay: 1.2s;
}

.hero-motion-layer span:nth-child(3) {
  left: 34%;
  top: 66%;
  width: 190px;
  transform: rotate(-32deg);
  animation-delay: 2s;
}

.ai-services-hero .builder-grid-bg {
  z-index: 0;
  opacity: 0.12;
  mask-image: linear-gradient(90deg, black, transparent 76%);
}

.ai-services-hero .builder-hero-copy {
  max-width: 760px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.72);
}

.ai-services-hero .builder-hero-copy p:not(.eyebrow) {
  color: rgba(232, 240, 255, 0.86);
}

.hero-service-pills {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.hero-service-pills span {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(0, 212, 255, 0.32);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  color: rgba(232, 240, 255, 0.88);
  background: rgba(5, 11, 22, 0.62);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
  font-size: 14px;
  font-weight: 850;
}

@keyframes aiHeroDrift {
  0% {
    transform: scale(1.04) translate3d(-0.8%, -0.6%, 0);
  }
  100% {
    transform: scale(1.1) translate3d(1.2%, 0.8%, 0);
  }
}

@keyframes aiScanSweep {
  0%, 28% {
    transform: translateX(-45%);
    opacity: 0;
  }
  48% {
    opacity: 0.32;
  }
  76%, 100% {
    transform: translateX(45%);
    opacity: 0;
  }
}

@keyframes aiPulseLine {
  0%, 100% {
    opacity: 0.2;
    filter: blur(0);
  }
  50% {
    opacity: 0.7;
    filter: blur(0.4px);
  }
}

.builder-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.52;
  background:
    linear-gradient(rgba(143, 163, 192, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 163, 192, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 72% 36%, black, transparent 68%);
}

.builder-hero-copy,
.builder-showcase {
  position: relative;
  z-index: 1;
}

.builder-hero h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(48px, 6.8vw, 92px);
  line-height: 0.92;
}

.builder-hero-copy p:not(.eyebrow) {
  max-width: 710px;
  color: rgba(232, 240, 255, 0.78);
  font-size: 20px;
  line-height: 1.58;
}

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

.builder-showcase {
  padding: 18px;
  border: 1px solid rgba(0, 212, 255, 0.26);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(0, 212, 255, 0.12), transparent 38%),
    rgba(19, 35, 61, 0.82);
  box-shadow: var(--shadow);
}

.showcase-top,
.showcase-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.showcase-top {
  padding: 8px 8px 16px;
  color: var(--muted);
}

.showcase-top b {
  color: var(--accent);
}

.showcase-panel {
  padding: 24px;
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(7, 16, 32, 0.72);
}

.showcase-panel.accent {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.16), rgba(0, 208, 132, 0.08));
}

.showcase-panel h3 {
  margin-bottom: 8px;
  font-size: 25px;
}

.showcase-panel p {
  color: var(--muted);
  line-height: 1.55;
}

.showcase-panel strong {
  display: block;
  margin-top: 18px;
  color: var(--white);
  font-size: 28px;
}

.showcase-row span {
  flex: 1;
  padding: 12px;
  border-radius: 13px;
  text-align: center;
  color: var(--accent);
  background: rgba(0, 212, 255, 0.1);
  font-weight: 900;
}

.ai-reel {
  position: relative;
  min-height: 220px;
  margin-top: 14px;
  border: 1px solid rgba(143, 163, 192, 0.28);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.16), transparent 52%),
    rgba(7, 16, 32, 0.72);
  overflow: hidden;
}

.brain-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 124px;
  height: 124px;
  transform: translate(-50%, -50%);
  border-radius: 28px;
  border: 1px solid rgba(143, 163, 192, 0.34);
  background: linear-gradient(145deg, rgba(36, 81, 125, 0.96), rgba(16, 44, 72, 0.96));
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.2);
  display: grid;
  place-items: center;
}

.brain-shape {
  width: 70px;
  height: 52px;
  position: relative;
}

.brain-shape::before,
.brain-shape::after {
  content: "";
  position: absolute;
  top: 10px;
  width: 34px;
  height: 32px;
  border: 3px solid #e8f0ff;
  border-radius: 20px 20px 16px 16px;
}

.brain-shape::before {
  left: 0;
  border-right: 0;
}

.brain-shape::after {
  right: 0;
  border-left: 0;
}

.brain-core b {
  margin-top: 62px;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.ai-orbit {
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(143, 163, 192, 0.2);
  border-radius: 50%;
  animation: orbitSpin 14s linear infinite;
}

.ai-orbit span {
  position: absolute;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: rgba(0, 212, 255, 0.12);
  border: 1px solid rgba(0, 212, 255, 0.28);
  color: #9fefff;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.orbit-a span:first-child { left: 6%; top: 34%; }
.orbit-a span:last-child { right: 8%; top: 56%; }
.orbit-b span:first-child { right: 12%; top: 20%; }
.orbit-b span:last-child { left: 14%; bottom: 18%; }

.orbit-b {
  inset: 36px;
  animation-direction: reverse;
  animation-duration: 18s;
}

.idea-stream {
  position: absolute;
  right: 8%;
  top: 48%;
  width: 88px;
  height: 12px;
}

.idea-stream i {
  position: absolute;
  left: 0;
  top: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(0, 212, 255, 0.8);
  animation: ideaPulse 2.2s ease-in-out infinite;
}

.idea-stream i:nth-child(2) {
  left: 28px;
  animation-delay: 0.35s;
}

.idea-stream i:nth-child(3) {
  left: 56px;
  animation-delay: 0.7s;
}

@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes ideaPulse {
  0%, 100% {
    transform: translateX(0) scale(0.8);
    opacity: 0.3;
  }
  50% {
    transform: translateX(8px) scale(1.15);
    opacity: 1;
  }
}

.builder-section {
  padding-top: 86px;
}

.builder-service-grid,
.pricing-grid,
.process-strip {
  display: grid;
  gap: 16px;
}

.builder-service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.builder-service,
.price-card,
.process-strip div,
.work-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(0, 212, 255, 0.06), transparent 45%),
    rgba(27, 43, 69, 0.72);
}

.builder-service {
  min-height: 250px;
  padding: 24px;
}

.service-number {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
}

.builder-service h3,
.price-card h3,
.process-strip h3,
.work-card h3 {
  font-size: 26px;
}

.builder-service p,
.price-card li,
.process-strip p,
.work-card p {
  color: var(--muted);
  line-height: 1.6;
}

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

.price-card {
  padding: 28px;
}

.price-card.featured {
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 24px 70px rgba(0, 212, 255, 0.12);
}

.price {
  margin: 18px 0 22px;
  color: var(--muted);
  font-size: 20px;
}

.price strong {
  color: var(--white);
  font-size: 56px;
  line-height: 1;
}

.price-card ul {
  min-height: 142px;
  margin: 0 0 24px;
  padding-left: 20px;
}

.process-strip {
  grid-template-columns: repeat(4, 1fr);
}

.process-strip div {
  padding: 22px;
}

.process-strip b {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 50%;
  color: #071020;
  background: var(--accent);
}

.work-card {
  min-height: 250px;
  padding: 30px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  background:
    radial-gradient(circle at 82% 22%, rgba(0, 212, 255, 0.18), transparent 35%),
    linear-gradient(145deg, rgba(0, 212, 255, 0.08), rgba(27, 43, 69, 0.76));
}

.work-card div {
  max-width: 680px;
}

.work-card span {
  color: var(--accent);
  font-weight: 950;
}

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

.product-card {
  min-height: 320px;
  align-items: flex-start;
  flex-direction: column;
}

.product-card-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 12px;
}

.encrypta-logo-fix {
  mix-blend-mode: screen;
  filter: contrast(1.08) brightness(1.06);
}

.encrypta-card {
  background:
    radial-gradient(circle at 78% 18%, rgba(0, 212, 255, 0.2), transparent 36%),
    linear-gradient(145deg, rgba(2, 16, 36, 0.9), rgba(8, 36, 67, 0.75));
}

.rain-card {
  background:
    radial-gradient(circle at 75% 15%, rgba(74, 158, 218, 0.24), transparent 38%),
    linear-gradient(145deg, rgba(15, 32, 39, 0.92), rgba(44, 83, 100, 0.58));
}

.finance-card {
  background:
    radial-gradient(circle at 82% 18%, rgba(77, 171, 247, 0.22), transparent 38%),
    linear-gradient(145deg, rgba(24, 100, 171, 0.2), rgba(27, 43, 69, 0.76));
}

.fx-card {
  background:
    radial-gradient(circle at 78% 16%, rgba(120, 224, 143, 0.18), transparent 36%),
    linear-gradient(145deg, rgba(0, 0, 0, 0.92), rgba(28, 31, 36, 0.8));
}

.product-page {
  background:
    radial-gradient(circle at 18% 8%, rgba(0, 212, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #071020 0%, #081122 48%, #050a14 100%);
}

.encrypta-page {
  background:
    radial-gradient(circle at 78% 10%, rgba(0, 212, 255, 0.16), transparent 34%),
    linear-gradient(180deg, #050d1b 0%, #071020 48%, #050a14 100%);
}

.encrypta-top-banner {
  width: min(1360px, 100%);
  margin: 0 auto;
  border-bottom: 1px solid rgba(0, 212, 255, 0.24);
  background: rgba(6, 18, 37, 0.78);
}

.encrypta-top-banner .encrypta-hero-banner {
  width: 100%;
  height: auto;
  display: block;
}

.encrypta-page .product-hero {
  width: min(1240px, calc(100% - 36px));
  min-height: 0;
  padding: 42px 0 0;
  display: block;
}

.encrypta-page .product-copy {
  max-width: 960px;
}

.encrypta-page .builder-section {
  padding-top: 72px;
}

.encrypta-page .builder-service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.encrypta-page .encrypta-note {
  margin-top: 20px;
}

.encrypta-chip {
  border-color: rgba(0, 212, 255, 0.34);
}

.encrypta-chip img {
  width: 30px;
  height: 30px;
  border-radius: 0;
}

.encrypta-chip span {
  color: rgba(232, 240, 255, 0.9);
}

.encrypta-note {
  margin-top: 16px;
}

.encrypta-hero-logo {
  mix-blend-mode: screen;
  filter: contrast(1.1) brightness(1.08);
}

.encrypta-hero-banner {
  mix-blend-mode: normal;
  filter: none;
}

@media (max-width: 680px) {
  .encrypta-page .product-hero {
    width: min(100% - 24px, 1240px);
    padding-top: 28px;
  }
}

.rain-product {
  --rain-top: #0f2027;
  --rain-mid: #203a43;
  --rain-bot: #2c5364;
  --rain-accent: #4a9eda;
  --rain-text: #e0f0ff;
  --rain-muted: #8ab0c8;
}

.finance-product {
  --finance-blue: #1864ab;
  --finance-blue-dark: #154f86;
  --finance-soft: #eaf4ff;
  --finance-page: #f8fafc;
  --finance-ink: #20354d;
  --finance-muted: #65758a;
  --finance-line: #e3ebf4;
}

.fx-product {
  --fx-bg: #000;
  --fx-panel: #17181c;
  --fx-line: #31343a;
  --fx-muted: #b3b3b3;
  --fx-green: #78e08f;
  --fx-yellow: #ffd166;
}

.product-hero {
  position: relative;
  width: min(1240px, calc(100% - 36px));
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  padding: 78px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 440px);
  gap: 54px;
  align-items: center;
}

.product-copy h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(46px, 6vw, 84px);
  line-height: 0.94;
}

.product-copy p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(232, 240, 255, 0.78);
  font-size: 20px;
  line-height: 1.62;
}

.rain-phone,
.finance-phone {
  justify-self: center;
  width: min(100%, 410px);
  padding: 12px;
  border: 1px solid rgba(232, 240, 255, 0.24);
  border-radius: 38px;
  background: linear-gradient(145deg, #111827, #050a14);
  box-shadow: var(--shadow);
}

.app-icon-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(138, 176, 200, 0.34);
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.6);
}

.app-icon-chip img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.app-icon-chip span {
  color: var(--rain-text);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.rain-screen,
.finance-screen {
  min-height: 700px;
  overflow: hidden;
  border-radius: 28px;
}

.rain-hero-shot {
  width: 100%;
  height: auto;
  max-height: 720px;
  display: block;
  border-radius: 28px;
  border: 1px solid rgba(138, 176, 200, 0.3);
  object-fit: contain;
  object-position: top center;
  background: #0f2027;
}

.rain-screen {
  padding: 18px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 26%, rgba(74, 158, 218, 0.22), transparent 28%),
    linear-gradient(180deg, var(--rain-top), var(--rain-mid), var(--rain-bot));
}

.rain-search,
.forecast-card,
.rain-stat-grid {
  border: 1px solid rgba(138, 176, 200, 0.28);
  background: rgba(17, 24, 39, 0.66);
}

.rain-search {
  padding: 14px 16px;
  border-radius: 18px;
  color: var(--rain-muted);
  text-align: left;
}

.rain-screen h2 {
  margin: 28px 0 2px;
  color: var(--rain-text);
  font-size: 30px;
  font-style: italic;
}

.rain-screen p,
.rain-screen span,
.rain-screen em {
  color: var(--rain-muted);
}

.weather-mark {
  width: 112px;
  height: 112px;
  margin: 26px auto 10px;
  display: grid;
  place-items: center;
  border-radius: 36px 36px 48px 48px;
  color: var(--rain-text);
  background:
    radial-gradient(circle at 35% 25%, rgba(224, 240, 255, 0.75), transparent 14%),
    linear-gradient(145deg, #4a9eda, #1e3a5c);
  font-weight: 950;
}

.rain-screen strong {
  display: block;
  color: var(--rain-text);
  font-size: 62px;
  font-weight: 200;
}

.rain-stat-grid {
  margin-top: 26px;
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  border-radius: 18px;
}

.rain-stat-grid b {
  display: block;
  color: var(--rain-text);
  font-size: 13px;
}

.rain-stat-grid small {
  color: var(--rain-muted);
  font-size: 10px;
}

.forecast-card {
  margin-top: 14px;
  padding: 16px;
  border-radius: 18px;
  text-align: left;
}

.forecast-card small {
  color: var(--rain-muted);
  letter-spacing: 0.12em;
}

.forecast-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.forecast-row span {
  padding: 10px 6px;
  border-radius: 12px;
  background: rgba(74, 158, 218, 0.12);
  text-align: center;
  font-size: 12px;
}

.forecast-row b {
  color: var(--rain-text);
  font-size: 18px;
}

.rain-screen em {
  display: block;
  margin-top: 18px;
  font-size: 11px;
  font-style: normal;
}

.finance-hero {
  grid-template-columns: minmax(0, 1fr) minmax(330px, 420px);
}

.finance-screen {
  padding: 18px;
  background: var(--finance-page);
  color: var(--finance-ink);
}

.finance-topbar {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--finance-ink);
}

.finance-topbar span {
  color: var(--finance-blue);
  font-size: 13px;
  font-weight: 900;
}

.favorite-strip,
.finance-result,
.calc-grid-preview div {
  border: 1px solid var(--finance-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(24, 100, 171, 0.08);
}

.favorite-strip {
  padding: 18px;
  background: linear-gradient(135deg, var(--finance-soft), #fff);
}

.favorite-strip span,
.finance-result span,
.finance-result small,
.calc-grid-preview small {
  display: block;
  color: var(--finance-muted);
}

.favorite-strip strong {
  display: block;
  margin-top: 8px;
  color: var(--finance-blue);
  font-size: 22px;
}

.calc-grid-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.calc-grid-preview div {
  min-height: 104px;
  padding: 16px;
  background:
    radial-gradient(circle at 88% 12%, rgba(24, 100, 171, 0.14), transparent 34%),
    #fff;
}

.calc-grid-preview b {
  display: block;
  color: var(--finance-ink);
}

.finance-result {
  margin-top: 18px;
  padding: 20px;
  background: linear-gradient(135deg, var(--finance-blue), var(--finance-blue-dark));
  color: #fff;
}

.finance-result span,
.finance-result small {
  color: rgba(255, 255, 255, 0.76);
}

.finance-result strong {
  display: block;
  margin: 6px 0;
  font-size: 36px;
}

.product-screen-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.screen-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(0, 212, 255, 0.06), transparent 45%),
    rgba(27, 43, 69, 0.72);
}

.screen-card h3 {
  margin-top: 18px;
  font-size: 24px;
}

.screen-card p {
  color: var(--muted);
  line-height: 1.6;
}

.rain-screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.rain-screenshot-grid .screen-card img {
  width: 100%;
  height: auto;
  max-height: 820px;
  object-fit: contain;
  object-position: center top;
  image-rendering: auto;
  border: 1px solid rgba(138, 176, 200, 0.24);
  border-radius: 16px;
  background: #0d1117;
}

.mini-rain-screen,
.mini-vault-screen,
.mini-finance-screen {
  min-height: 280px;
  padding: 18px;
  border-radius: 24px;
  overflow: hidden;
}

.mini-rain-screen {
  background: linear-gradient(180deg, #0f2027, #203a43, #2c5364);
}

.mini-search {
  display: block;
  width: 100%;
  height: 34px;
  margin-bottom: 22px;
  border-radius: 14px;
  background: rgba(17, 24, 39, 0.7);
}

.mini-rain-screen b,
.mini-rain-screen strong,
.mini-vault-screen b {
  display: block;
  color: #e0f0ff;
}

.mini-rain-screen strong {
  margin: 18px 0;
  font-size: 46px;
  font-weight: 200;
}

.mini-bars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.mini-bars i {
  height: 58px;
  border-radius: 12px;
  background: rgba(74, 158, 218, 0.22);
}

.mini-vault-screen {
  background: #0d1117;
}

.tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin: 18px -8px;
}

.tabs span {
  padding: 8px 2px;
  border-radius: 10px;
  color: #8ab0c8;
  background: #111827;
  font-size: 11px;
  text-align: center;
}

.vault-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.vault-grid i {
  min-height: 78px;
  border: 1px solid #1e3a5c;
  border-radius: 16px;
  background: linear-gradient(145deg, #111827, #1e3a5c);
}

.mini-vault-screen.settings p {
  display: flex;
  justify-content: space-between;
  margin: 16px 0;
  padding-bottom: 12px;
  border-bottom: 1px solid #1e3a5c;
  color: #e0f0ff;
}

.mini-vault-screen.settings span {
  color: #4a9eda;
  font-weight: 900;
}

.finance-light {
  background: #f8fafc;
  color: #20354d;
}

.finance-light p {
  color: #65758a;
}

.mini-finance-screen {
  border: 1px solid #e3ebf4;
  background: #fff;
}

.mini-finance-screen b {
  display: block;
  color: #20354d;
}

.mini-calc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.mini-calc-grid i {
  min-height: 72px;
  border-radius: 16px;
  background: linear-gradient(135deg, #4dabf7, #1864ab);
}

.mini-finance-screen.detail p {
  margin: 14px 0;
  padding: 12px;
  border: 1px solid #e3ebf4;
  border-radius: 14px;
  background: #f8fafc;
}

.mini-finance-screen.detail strong {
  display: block;
  margin-top: 18px;
  color: #1864ab;
  font-size: 30px;
}

.fx-hero {
  grid-template-columns: minmax(0, 1fr) minmax(330px, 420px);
}

.fx-hero-media {
  justify-self: center;
  width: min(100%, 390px);
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 36px;
  background: linear-gradient(145deg, #25272d, #050505);
  box-shadow: var(--shadow);
}

.fx-hero-media img,
.fx-shot-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 26px;
}

.fx-phone {
  justify-self: center;
  width: min(100%, 410px);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 38px;
  background: linear-gradient(145deg, #25272d, #050505);
  box-shadow: var(--shadow);
}

.fx-screen {
  min-height: 700px;
  padding: 18px;
  overflow: hidden;
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 50% 12%, rgba(120, 224, 143, 0.1), transparent 32%),
    #000;
}

.fx-top,
.fx-meta,
.fx-row,
.fx-chart,
.fx-widget-preview {
  border: 1px solid var(--fx-line);
  border-radius: 18px;
  background: rgba(23, 24, 28, 0.86);
}

.fx-top {
  padding: 16px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.fx-top span {
  color: var(--fx-muted);
  font-size: 12px;
}

.fx-meta {
  margin: 12px 0;
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--fx-muted);
  font-size: 12px;
}

.fx-meta strong {
  color: var(--fx-green);
}

.fx-row {
  margin-top: 10px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.fx-row.active {
  border-color: rgba(120, 224, 143, 0.5);
}

.fx-row b,
.fx-row strong {
  color: #fff;
}

.fx-row small {
  display: block;
  margin-top: 4px;
  color: var(--fx-muted);
}

.fx-row strong {
  font-size: 22px;
}

.fx-chart,
.fx-widget-preview {
  margin-top: 14px;
  padding: 16px;
}

.fx-chart span {
  color: var(--fx-muted);
}

.fx-chart i {
  display: block;
  height: 96px;
  margin-top: 14px;
  border-radius: 16px;
  background:
    linear-gradient(145deg, transparent 48%, rgba(120, 224, 143, 0.38) 49%, rgba(120, 224, 143, 0.38) 52%, transparent 53%),
    linear-gradient(180deg, rgba(120, 224, 143, 0.13), transparent);
}

.fx-widget-preview {
  display: flex;
  justify-content: space-between;
  color: var(--fx-muted);
}

.fx-widget-preview b {
  color: var(--fx-yellow);
}

.fx-dark {
  background: #050505;
}

.fx-dark p {
  color: #b3b3b3;
}

.fx-screenshot-grid {
  align-items: stretch;
}

.fx-shot-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fx-shot-card img {
  max-height: 620px;
  object-fit: contain;
  background: #000;
  border: 1px solid #31343a;
}

.mini-fx-screen {
  min-height: 280px;
  padding: 18px;
  border: 1px solid #31343a;
  border-radius: 24px;
  background: #000;
}

.mini-fx-screen b {
  display: block;
  margin-bottom: 16px;
  color: #fff;
}

.mini-fx-screen p {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
  padding: 12px;
  border-radius: 14px;
  background: #17181c;
  color: #fff;
}

.mini-fx-screen span {
  color: #78e08f;
}

.mini-fx-screen.alert p {
  color: #ffd166;
}

.mini-line {
  height: 136px;
  border-radius: 18px;
  background:
    linear-gradient(158deg, transparent 43%, rgba(120, 224, 143, 0.7) 44%, rgba(120, 224, 143, 0.7) 46%, transparent 47%),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 28px),
    #17181c;
}

.policy-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.policy-link-card {
  min-height: 150px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(0, 212, 255, 0.08), transparent 48%),
    rgba(27, 43, 69, 0.72);
}

.policy-link-card span {
  color: var(--muted);
}

.policy-link-card strong {
  color: var(--accent);
  font-size: 24px;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.brand strong {
  display: block;
  color: var(--text);
  font-size: 17px;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  padding: 10px 11px;
  border-radius: 999px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(232, 240, 255, 0.08);
}

.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0;
}

.hero {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  min-height: calc(100vh - 72px);
  padding: 52px 0 42px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(330px, 0.85fr);
  gap: 42px;
  align-items: center;
}

.eyebrow {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
}

.wordmark {
  width: min(360px, 82vw);
  margin-bottom: 18px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.94;
  margin-bottom: 20px;
}

.hero-copy {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  max-width: 660px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(0, 212, 255, 0.34);
  color: var(--text);
  background: rgba(27, 43, 69, 0.72);
  font-weight: 750;
}

.button.primary {
  color: #071020;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 14px 38px rgba(0, 212, 255, 0.22);
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 34px;
}

.stat {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(27, 43, 69, 0.54);
}

.stat strong {
  display: block;
  color: var(--white);
  font-size: 20px;
}

.stat span {
  color: var(--muted);
  font-size: 12px;
}

.phone-shell {
  max-width: 390px;
  margin-left: auto;
  border: 1px solid rgba(0, 212, 255, 0.26);
  border-radius: 36px;
  padding: 13px;
  background: linear-gradient(160deg, rgba(232, 240, 255, 0.12), rgba(27, 43, 69, 0.1));
  box-shadow: var(--shadow);
}

.phone-screen {
  border-radius: 27px;
  overflow: hidden;
  min-height: 690px;
  background: var(--bg);
  border: 1px solid rgba(232, 240, 255, 0.1);
}

.app-shot {
  padding: 18px;
}

.real-shot-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

.app-word {
  width: 190px;
  margin: 0 auto 16px;
}

.app-total {
  text-align: center;
  padding: 8px 0 16px;
}

.app-total span {
  color: var(--muted);
  font-size: 13px;
}

.app-total strong {
  display: block;
  color: var(--white);
  font-size: 34px;
  margin-top: 5px;
}

.perf-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.perf-chip {
  padding: 8px;
  border-radius: 10px;
  text-align: center;
  background: rgba(27, 43, 69, 0.9);
  color: var(--profit);
  font-weight: 800;
  font-size: 12px;
}

.app-card,
.mini-card,
.feature-card,
.content-card,
.faq-item {
  border: 1px solid var(--line);
  background: rgba(27, 43, 69, 0.74);
  border-radius: var(--radius);
}

.app-card {
  padding: 14px;
  margin-bottom: 12px;
}

.app-card h4 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 14px;
}

.line-chart {
  height: 126px;
  border-radius: 13px;
  background: rgba(19, 35, 61, 0.54);
  position: relative;
  overflow: hidden;
}

.line-chart::after {
  content: none;
}

.mini-chart-img {
  width: 100%;
  height: 126px;
  display: block;
  object-fit: contain;
}

.asset-row,
.tx-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(143, 163, 192, 0.14);
}

.asset-row:first-child,
.tx-row:first-child {
  border-top: 0;
}

.asset-row b,
.tx-row b {
  color: var(--text);
  font-size: 13px;
}

.asset-row span,
.tx-row span {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

.money {
  color: var(--profit);
  font-weight: 900;
}

.money.loss {
  color: var(--loss);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.feature-card {
  padding: 18px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
}

.feature-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 16px;
  color: var(--accent);
  font-size: 26px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.18), rgba(0, 208, 132, 0.09));
  border: 1px solid rgba(0, 212, 255, 0.22);
}

.feature-card h3 {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 18px;
}

.learn {
  margin-top: auto;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.page-hero {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0 28px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 38px;
  align-items: center;
}

.page-hero h1 {
  font-size: clamp(38px, 5vw, 68px);
}

.page-hero p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.content-card {
  padding: 20px;
}

.content-card h3 {
  margin-bottom: 9px;
  color: var(--text);
}

.content-card p,
.content-card li {
  color: var(--muted);
  line-height: 1.6;
}

.content-card ul {
  margin: 0;
  padding-left: 18px;
}

.screenshots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.shot-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(19, 35, 61, 0.82);
  overflow: hidden;
}

.shot-window {
  min-height: 310px;
  padding: 14px;
  background: var(--bg);
}

.shot-window .real-shot-img {
  border-radius: 10px;
}

.shot-caption {
  padding: 14px;
  border-top: 1px solid var(--line);
}

.shot-caption b {
  display: block;
  color: var(--text);
  margin-bottom: 5px;
}

.shot-caption span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.mini-card {
  padding: 12px;
  margin-bottom: 10px;
}

.mini-card h4 {
  margin: 0 0 8px;
}

.widget-card {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-color: rgba(242, 198, 109, 0.55);
  background:
    linear-gradient(135deg, #132b66, #0f2458 52%, #08152f);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.widget-card h4 {
  color: var(--gold);
  font-size: 15px;
}

.widget-card strong {
  color: var(--white);
  font-size: 32px;
}

.widget-bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-weight: 900;
}

.bars {
  display: grid;
  gap: 8px;
}

.bar {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(143, 163, 192, 0.18);
}

.bar i {
  display: block;
  height: 100%;
  background: var(--accent);
  border-radius: inherit;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(0, 212, 255, 0.12);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-title h2 {
  font-size: clamp(28px, 4vw, 46px);
  margin: 0;
}

.section-title p {
  color: var(--muted);
  max-width: 560px;
  line-height: 1.6;
  margin: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 18px;
}

.faq-item h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.faq-item p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.footer {
  border-top: 1px solid var(--line);
  background: rgba(7, 16, 32, 0.72);
}

.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.text-link {
  color: var(--accent);
  font-weight: 800;
}

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

.policy-section {
  display: grid;
  gap: 14px;
  padding-top: 38px;
}

.policy-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(27, 43, 69, 0.74);
}

.policy-card h2 {
  margin-bottom: 12px;
  font-size: 24px;
}

.policy-card p,
.policy-card li {
  color: var(--muted);
  line-height: 1.68;
}

.policy-card ul {
  margin: 0;
  padding-left: 20px;
}

.preview-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(143, 163, 192, 0.28);
  background: rgba(4, 11, 22, 0.88);
}

.preview-nav {
  min-height: 70px;
  padding: 0 34px;
  display: grid;
  grid-template-columns: 170px 1fr 230px;
  align-items: center;
  gap: 24px;
}

.preview-builder,
.preview-word {
  font-size: 24px;
  font-weight: 900;
  color: var(--text);
}

.preview-builder span,
.preview-word span {
  color: var(--accent);
}

.preview-word {
  justify-self: end;
  font-size: 34px;
}

.preview-links {
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 8px;
}

.preview-links a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: rgba(232, 240, 255, 0.82);
  font-size: 14px;
}

.preview-links a:hover,
.preview-links a.active {
  color: var(--accent);
}

.preview-links a.active::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 0;
  height: 2px;
  background: var(--accent);
}

.preview-hero {
  position: relative;
  min-height: 690px;
  padding: 78px 5vw 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  gap: 48px;
  overflow: hidden;
  border-bottom: 1px solid rgba(143, 163, 192, 0.24);
  background:
    radial-gradient(circle at 72% 17%, rgba(0, 212, 255, 0.12), transparent 32%),
    radial-gradient(circle at 36% 70%, rgba(0, 212, 255, 0.1), transparent 34%),
    linear-gradient(135deg, #071124 0%, #07182d 42%, #050b16 100%);
}

.wave-field {
  position: absolute;
  inset: 45% -5% -8%;
  opacity: 0.7;
  background:
    radial-gradient(ellipse at 28% 50%, transparent 0 42%, rgba(0, 212, 255, 0.22) 43%, transparent 46%),
    radial-gradient(ellipse at 55% 42%, transparent 0 50%, rgba(0, 212, 255, 0.15) 51%, transparent 54%),
    repeating-radial-gradient(circle at 65% 35%, rgba(0, 212, 255, 0.1) 0 1px, transparent 1px 12px);
  filter: blur(0.2px);
}

.preview-copy {
  position: relative;
  z-index: 1;
  padding-top: 34px;
}

.preview-copy h1 {
  margin: 0;
  font-size: clamp(70px, 9vw, 116px);
  line-height: 0.9;
  font-weight: 950;
  color: var(--white);
  text-shadow: 0 20px 52px rgba(0, 0, 0, 0.45);
}

.preview-copy h1 span {
  color: var(--accent);
}

.cyan-rule {
  width: 100px;
  height: 3px;
  margin: 28px 0 24px;
  background: var(--accent);
  box-shadow: 0 0 22px rgba(0, 212, 255, 0.8);
}

.preview-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.1;
}

.preview-copy p {
  max-width: 700px;
  color: rgba(232, 240, 255, 0.73);
  font-size: 22px;
  line-height: 1.45;
}

.metric-strip {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(4, minmax(135px, 1fr));
  max-width: 780px;
}

.metric-cell {
  min-height: 162px;
  padding: 0 32px 0 0;
  border-right: 1px solid rgba(143, 163, 192, 0.24);
}

.metric-cell + .metric-cell {
  padding-left: 32px;
}

.metric-cell:last-child {
  border-right: 0;
}

.metric-cell b {
  display: block;
  margin: 12px 0 9px;
  color: var(--text);
  font-size: 15px;
  font-weight: 650;
}

.metric-cell strong {
  display: block;
  color: var(--text);
  font-size: 29px;
}

.metric-cell span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.green {
  color: var(--profit) !important;
}

.red {
  color: var(--loss) !important;
}

.metric-icon {
  width: 58px;
  height: 58px;
  position: relative;
}

.metric-icon-img {
  width: 58px;
  height: 58px;
  display: block;
  object-fit: contain;
}

.metric-icon.pie {
  border: 4px solid var(--accent);
  border-radius: 50%;
}

.metric-icon.pie::after {
  content: "";
  position: absolute;
  inset: 7px -6px 20px 27px;
  border-left: 4px solid var(--accent);
  border-bottom: 4px solid var(--accent);
}

.metric-icon.up::before,
.metric-icon.down::before {
  content: "";
  position: absolute;
  inset: 14px 4px 12px;
  border-right: 4px solid currentColor;
  border-top: 4px solid currentColor;
  transform: skew(-16deg) rotate(0deg);
}

.metric-icon.up {
  color: var(--profit);
}

.metric-icon.down {
  color: var(--loss);
  transform: rotate(95deg);
}

.metric-icon.bars::before {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 9px;
  width: 9px;
  height: 19px;
  background: var(--profit);
  box-shadow: 15px -8px 0 var(--profit), 30px -18px 0 var(--profit);
}

.metric-icon.bars::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 6px;
  bottom: 4px;
  height: 3px;
  background: var(--profit);
}

.preview-phone {
  position: relative;
  z-index: 2;
  align-self: end;
  justify-self: center;
  width: 468px;
  padding: 10px;
  border: 4px solid rgba(255, 255, 255, 0.28);
  border-bottom: 0;
  border-radius: 44px 44px 0 0;
  background: linear-gradient(90deg, #222, #777 6%, #222 12%, #111 88%, #777 94%, #222);
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.55);
}

.preview-phone-image {
  position: relative;
  z-index: 2;
  align-self: end;
  justify-self: center;
  width: min(468px, 92vw);
  height: auto;
  display: block;
  border-radius: 44px 44px 0 0;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.44);
}

.phone-bezel {
  min-height: 650px;
  padding: 22px 28px;
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 34px 34px 0 0;
  background:
    radial-gradient(circle at 75% 5%, rgba(0, 212, 255, 0.12), transparent 30%),
    #061225;
}

.phone-top,
.phone-title-row,
.range-tabs,
.phone-panels,
.top-assets div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-top {
  margin-bottom: 24px;
  font-weight: 800;
  font-size: 15px;
}

.phone-title-row span {
  display: block;
  color: rgba(232, 240, 255, 0.8);
  font-size: 15px;
  margin-bottom: 6px;
}

.phone-title-row strong {
  display: block;
  color: var(--white);
  font-size: 35px;
}

.phone-title-row button {
  border: 0;
  background: transparent;
  color: var(--accent);
  font-size: 28px;
}

.range-tabs {
  gap: 10px;
  margin: 18px 0 10px;
}

.range-tabs span,
.range-tabs b {
  flex: 1;
  min-height: 28px;
  border: 1px solid rgba(143, 163, 192, 0.26);
  border-radius: 7px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 600;
}

.range-tabs b {
  color: #061225;
  background: var(--accent);
}

.phone-chart {
  height: 156px;
  padding: 12px;
  border: 1px solid rgba(143, 163, 192, 0.24);
  border-radius: 10px;
  background: rgba(19, 35, 61, 0.54);
}

.phone-chart img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.phone-panels {
  gap: 12px;
  margin-top: 12px;
  align-items: stretch;
}

.allocation-card,
.accounts-card,
.top-assets {
  border: 1px solid rgba(143, 163, 192, 0.24);
  border-radius: 10px;
  background: rgba(19, 35, 61, 0.62);
}

.allocation-card {
  flex: 1.2;
  padding: 12px;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 8px;
}

.allocation-card h3,
.accounts-card h3,
.top-assets h3 {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 13px;
}

.donut {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: url("../images/worthtrack/allocation-donut-static.png") center / contain no-repeat;
  position: relative;
}

.donut::after {
  content: none;
}

.donut-static {
  width: 78px;
  height: 78px;
  display: block;
}

.allocation-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.allocation-card li,
.accounts-card p {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 8px;
  margin: 6px 0;
  color: rgba(232, 240, 255, 0.78);
  font-size: 12px;
}

.allocation-card li span,
.allocation-card li b,
.accounts-card p span,
.accounts-card p b {
  white-space: nowrap;
}

.accounts-card {
  flex: 0.78;
  padding: 12px;
}

.accounts-card b {
  color: var(--accent);
}

.top-assets {
  margin-top: 12px;
  padding: 12px;
}

.top-assets div {
  padding: 8px 0;
  border-top: 1px solid rgba(143, 163, 192, 0.16);
}

.top-assets span,
.top-assets b {
  font-size: 12px;
}

.top-assets small {
  display: block;
  color: var(--muted);
}

.preview-feature-row {
  padding: 24px 28px 42px;
  background: #071326;
}

.preview-feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.preview-feature-card {
  min-height: 0;
  height: 100%;
  padding: 22px 20px 18px;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  column-gap: 16px;
  row-gap: 10px;
  align-items: start;
  border: 1px solid rgba(143, 163, 192, 0.42);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(0, 212, 255, 0.08), transparent 45%),
    rgba(9, 25, 47, 0.88);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.preview-feature-card h3 {
  grid-column: 2;
  margin: 4px 0 12px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.15;
}

.security-feature-card h3 {
  font-size: 16px;
}

.preview-feature-card p {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(232, 240, 255, 0.8);
  font-size: 14px;
  line-height: 1.55;
}

.preview-learn {
  grid-column: 1 / -1;
  margin-top: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.preview-learn span {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(232, 240, 255, 0.85);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--text);
  font-size: 26px;
  line-height: 1;
}

.performance-stable *,
.performance-stable *::before,
.performance-stable *::after {
  animation: none !important;
  transition: none !important;
}

.performance-stable .wave-field {
  filter: none;
  opacity: 0.34;
}

.performance-stable .preview-header,
.performance-stable .preview-phone-image,
.performance-stable .preview-feature-card {
  will-change: auto;
}

.illustration {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  left: auto;
  top: auto;
  width: 86px;
  height: 96px;
  margin-top: 2px;
  align-self: start;
  justify-self: start;
}

.illustration.security-lock {
  width: 88px;
  height: 108px;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.32));
}

.illustration.report {
  border: 3px solid #50e5df;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(80, 229, 223, 0.14), rgba(0, 212, 255, 0.06));
}

.illustration.report::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 20px;
  width: 42px;
  height: 3px;
  background: #9cefe8;
  box-shadow: 0 15px 0 #9cefe8, 0 30px 0 #9cefe8;
}

.illustration.report span {
  position: absolute;
  left: 17px;
  bottom: 10px;
  width: 52px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #00d084, #00d4ff);
  color: var(--white);
  font-weight: 950;
}

.illustration.budget {
  width: 70px;
  height: 70px;
  margin-top: 12px;
  margin-left: 8px;
  border-radius: 50%;
  background: conic-gradient(#00d4ff 0 16%, #2256a7 16% 36%, #00d084 36% 100%);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.2), 0 12px 20px rgba(0,0,0,0.22);
}

.illustration.budget::after {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(50% 50%, 100% 10%, 100% 90%);
  background: rgba(7, 16, 32, 0.45);
}

.illustration.calculator {
  width: 86px;
  height: 96px;
  background: url("../images/worthtrack/calculator-icon.png?v=20260513d") center / contain no-repeat;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.3));
}



.illustration.goals {
  width: 86px;
  height: 96px;
  background: url("../images/worthtrack/goals-icon.png?v=20260513d") center / contain no-repeat;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.3));
}



.illustration.shield {
  width: 88px;
  height: 100px;
  background: linear-gradient(160deg, #7fdfff, #185f94);
  clip-path: polygon(50% 0, 90% 16%, 84% 72%, 50% 100%, 16% 72%, 10% 16%);
  filter: drop-shadow(0 16px 22px rgba(0, 212, 255, 0.22));
}

.illustration.shield::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 42px;
  width: 29px;
  height: 31px;
  border-radius: 4px;
  background: rgba(7, 16, 32, 0.72);
}

.illustration.shield::after {
  content: "";
  position: absolute;
  left: 34px;
  top: 24px;
  width: 20px;
  height: 24px;
  border: 4px solid rgba(232, 240, 255, 0.86);
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
}

@media (max-width: 1280px) {
  .preview-nav {
    grid-template-columns: 150px 1fr 180px;
    padding: 0 22px;
  }

  .preview-links a {
    padding: 0 8px;
    font-size: 13px;
  }

  .preview-hero {
    grid-template-columns: minmax(0, 1fr) 430px;
  }

  .preview-phone {
    width: 430px;
  }

  .preview-feature-card {
    grid-template-columns: 92px minmax(0, 1fr);
    column-gap: 12px;
  }

  .illustration {
    transform: scale(0.9);
    transform-origin: top left;
  }
}

@media (max-width: 1060px) {
  .builder-nav {
    grid-template-columns: 1fr;
    padding: 14px 0;
  }

  .builder-links {
    justify-content: flex-start;
  }

  .builder-cta {
    justify-self: start;
  }

  .builder-hero {
    grid-template-columns: 1fr;
  }

  .ai-services-hero {
    min-height: auto;
    padding: 78px 24px 58px;
  }

  .ai-services-hero::after {
    background:
      linear-gradient(180deg, rgba(2, 5, 13, 0.84) 0%, rgba(2, 5, 13, 0.52) 46%, rgba(2, 5, 13, 0.92) 100%),
      linear-gradient(90deg, rgba(2, 5, 13, 0.78), rgba(2, 5, 13, 0.22));
  }

  .hero-image-layer img {
    object-position: 62% center;
  }

  .ai-services-hero .builder-hero-copy {
    min-height: 560px;
  }

  .builder-service-grid,
  .process-strip,
  .product-grid,
  .product-screen-grid,
  .policy-link-grid,
  .rain-screenshot-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-hero {
    grid-template-columns: 1fr;
  }

  .preview-nav {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px 18px;
  }

  .preview-links {
    justify-content: flex-start;
    height: auto;
    flex-wrap: wrap;
  }

  .preview-links a {
    min-height: 34px;
  }

  .preview-word {
    justify-self: start;
    font-size: 24px;
  }

  .preview-hero {
    grid-template-columns: 1fr;
    padding-top: 38px;
  }

  .preview-phone {
    align-self: center;
    width: min(430px, 92vw);
  }

  .metric-strip,
  .preview-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric-cell:nth-child(2) {
    border-right: 0;
  }

  .encrypta-top-banner {
    width: 100%;
  }

  .encrypta-page .product-hero {
    width: min(100% - 28px, 1240px);
    padding-top: 34px;
  }

  .encrypta-page .product-copy h1 {
    font-size: clamp(38px, 8.8vw, 60px);
    line-height: 1.02;
    margin-bottom: 18px;
  }

  .encrypta-page .product-copy p:not(.eyebrow) {
    font-size: 18px;
    line-height: 1.55;
  }

  .encrypta-page .builder-section {
    padding-top: 60px;
  }
}

@media (max-width: 680px) {
  .builder-hero {
    padding: 52px 18px;
  }

  .ai-services-hero {
    padding: 54px 18px 40px;
  }

  .hero-image-layer img {
    object-position: 58% center;
    opacity: 0.76;
  }

  .ai-services-hero .builder-hero-copy {
    min-height: 540px;
    justify-content: flex-end;
  }

  .builder-hero h1 {
    font-size: 48px;
  }

  .hero-service-pills span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .builder-service-grid,
  .pricing-grid,
  .process-strip,
  .product-grid,
  .product-screen-grid,
  .policy-link-grid,
  .rain-screenshot-grid {
    grid-template-columns: 1fr;
  }

  .work-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .price strong {
    font-size: 46px;
  }

  .preview-copy h1 {
    font-size: 64px;
  }

  .preview-copy p {
    font-size: 18px;
  }

  .metric-strip,
  .preview-feature-grid {
    grid-template-columns: 1fr;
  }

  .metric-cell,
  .metric-cell + .metric-cell {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(143, 163, 192, 0.24);
  }

  .phone-bezel {
    min-height: 600px;
    padding: 18px;
  }

  .phone-panels {
    flex-direction: column;
  }

  .preview-feature-card {
    min-height: 210px;
  }

  .encrypta-top-banner {
    border-bottom-color: rgba(0, 212, 255, 0.18);
  }

  .encrypta-page .product-hero {
    width: min(100% - 20px, 1240px);
    padding-top: 24px;
  }

  .encrypta-page .product-copy h1 {
    font-size: clamp(32px, 10vw, 44px);
    line-height: 1.07;
  }

  .encrypta-page .product-copy p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.52;
  }

  .encrypta-page .builder-actions {
    width: 100%;
    gap: 10px;
  }

  .encrypta-page .builder-actions .button {
    width: 100%;
    justify-content: center;
  }

  .encrypta-page .app-icon-chip {
    width: 100%;
    justify-content: center;
  }

  .encrypta-page .builder-section {
    padding-top: 48px;
  }

  .encrypta-page .section-title p {
    font-size: 15px;
  }

  .encrypta-page .builder-service {
    min-height: 0;
    padding: 20px;
  }

  .encrypta-page .service-number {
    margin-bottom: 18px;
  }

  .encrypta-page .content-card,
  .encrypta-page .faq-item {
    border-radius: 14px;
  }
}

@media (max-width: 1000px) {
  .hero,
  .page-hero {
    grid-template-columns: 1fr;
  }

  .phone-shell {
    margin: 0 auto;
  }

  .feature-grid,
  .content-grid,
  .screenshots {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .nav-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .section,
  .hero,
  .page-hero {
    width: min(100% - 24px, var(--max));
  }

  .hero-stats,
  .feature-grid,
  .content-grid,
  .screenshots {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 52px 0;
  }

  .feature-card {
    min-height: auto;
  }

  .phone-screen {
    min-height: 620px;
  }

  .footer-inner,
  .section-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .encrypta-page .footer-links {
    width: 100%;
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  .encrypta-page .product-copy h1 {
    font-size: 30px;
  }

  .encrypta-page .eyebrow {
    font-size: 12px;
    letter-spacing: 0.16em;
  }

  .encrypta-page .encrypta-chip img {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 393px) {
  .encrypta-page .product-hero {
    width: calc(100% - 16px);
    padding-top: 20px;
  }

  .encrypta-page .product-copy h1 {
    font-size: 28px;
    line-height: 1.08;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
  }

  .encrypta-page .product-copy p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.5;
  }

  .encrypta-page .app-icon-chip {
    padding: 7px 10px;
    gap: 8px;
  }

  .encrypta-page .builder-actions {
    margin-top: 18px;
  }

  .encrypta-page .builder-actions .button {
    min-height: 44px;
    padding: 0 14px;
    font-size: 14px;
  }

  .encrypta-page .builder-section {
    padding-top: 42px;
  }

  .encrypta-page .content-card,
  .encrypta-page .builder-service,
  .encrypta-page .faq-item {
    padding: 18px;
  }
}

