@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Telugu:wght@700;900&display=swap');

:root {
  --tk-primary: #003d99;
  --tk-accent: #0066ff;
  --tk-text: #000000;
  --tk-text-muted: #565656;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--tk-text);
  background: #ffffff;
}

.font-display {
  font-family: "Outfit", "Inter", sans-serif;
  letter-spacing: -0.02em;
}

.tk-gradient {
  background: linear-gradient(180deg, #046bd2 0%, rgba(4, 107, 210, 0.7) 100%);
}

.tk-cta-gradient {
  background: linear-gradient(135deg, #00a6fb 0%, #0066ff 55%, #003d99 100%);
  color: #ffffff;
  box-shadow: 0 10px 24px -10px rgba(0, 102, 255, 0.55);
}

.tk-cta-gradient:hover {
  background: linear-gradient(135deg, #0097e6 0%, #0056e0 55%, #002f80 100%);
}

.tk-gradient-text {
  background: linear-gradient(180deg, #046bd2 0%, #003d99 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tk-glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.tk-grid-bg {
  background-image: linear-gradient(rgba(0, 61, 153, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 61, 153, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.tk-phone {
  width: 260px;
  height: 540px;
  border-radius: 44px;
  background: #0b0d12;
  padding: 12px;
  box-shadow: 0 60px 80px -40px rgba(0, 61, 153, 0.5), 0 30px 60px -30px rgba(0, 0, 0, 0.3), inset 0 0 0 2px rgba(255, 255, 255, 0.06);
  position: relative;
}

.tk-phone::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 22px;
  background: #0b0d12;
  border-radius: 999px;
  z-index: 5;
}

.tk-phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: #ffffff;
  position: relative;
}

.tuktix-title {
  font-family: 'Noto Sans Telugu', sans-serif;
  font-size: 40px;
  font-weight: 900;
  /* font-style: italic; */
  /* color: #0066ff; */
  letter-spacing: 1px;
  background: linear-gradient(180deg, #046bd2 0%, #003d99 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  /* -webkit-text-stroke: 1px #0050cc; */

  /* text-shadow: */
    /* 2px 2px 0 #003399, */
    /* 4px 4px 8px rgba(0,0,0,0.35); */
}

@keyframes tk-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.tk-float {
  animation: tk-float 6s ease-in-out infinite;
}

@keyframes tk-card-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.tk-card-hover {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.tk-card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(0, 61, 153, 0.15);
}

@keyframes blob {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

.animate-blob {
  animation: blob 8s ease-in-out infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #003d99;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #002d7a;
}

.policy-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(0, 102, 255, 0.1), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 22%, #ffffff 100%);
}

.policy-page {
  max-width: 880px;
  margin: 0 auto;
  padding: 7rem 1.5rem 4rem;
}

.policy-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 61, 153, 0.08);
  border-radius: 28px;
  box-shadow: 0 24px 60px -36px rgba(0, 61, 153, 0.22);
  overflow: hidden;
}

.policy-hero {
  padding: 2rem 2rem 1.5rem;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.08), rgba(0, 61, 153, 0.03));
  border-bottom: 1px solid rgba(0, 61, 153, 0.08);
}

.policy-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: #eaf2ff;
  color: var(--tk-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-body {
  padding: 2rem;
}

.policy-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--tk-text-muted);
  margin: 0 0 2rem;
}

.policy-section {
  padding: 1.3rem 0;
  border-top: 1px solid rgba(0, 61, 153, 0.08);
}

.policy-section:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.policy-section h2 {
  margin: 0 0 0.75rem;
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--tk-primary);
  letter-spacing: -0.02em;
}

.policy-section p,
.policy-section li {
  color: var(--tk-text-muted);
  line-height: 1.8;
  font-size: 0.98rem;
}

.policy-section p {
  margin: 0;
}

.policy-section p + p {
  margin-top: 0.65rem;
}

.policy-section ul {
  margin: 0;
  padding-left: 1.2rem;
}

.policy-section li + li {
  margin-top: 0.55rem;
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.5rem;
  margin-top: 1rem;
  color: var(--tk-text-muted);
  font-size: 0.92rem;
}

.policy-link {
  color: var(--tk-accent);
  text-decoration: none;
}

.policy-link:hover {
  color: var(--tk-primary);
  text-decoration: underline;
}

@media (max-width: 640px) {
  .policy-page {
    padding: 6rem 1rem 3rem;
  }

  .policy-hero,
  .policy-body {
    padding: 1.4rem;
  }
}
