/* Tampa AI Solutions — base styles */

@import url("https://fonts.googleapis.com/css2?family=Unbounded:wght@400;600;700;800&family=Pacifico&family=Grandstander:wght@600;700;800&family=Nunito:wght@400;600;700;800&display=swap");

:root {
  --bg: #0b1220;
  --panel: #0f1a2b;
  --text: #e6eefc;
  --muted: #d5f0ff; /* lighter than before for better contrast on dark */
  --primary: #2dd4bf; /* teal */
  --accent: #f59e0b; /* amber */
  --link: #8ab4ff;
  --maxw: 1080px;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --font-sans: "Nunito", "Unbounded", system-ui, -apple-system, Segoe UI, Roboto,
    Ubuntu, Cantarell, Noto Sans, Arial;
  --font-display: "Unbounded", "Grandstander", "Pacifico", system-ui,
    -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial;
  --footer-h: 56px;
  --header-h: 56px;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: radial-gradient(
      1200px 600px at 80% -10%,
      rgba(45, 212, 191, 0.15),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at -10% 10%,
      rgba(245, 158, 11, 0.12),
      transparent 60%
    ),
    var(--bg);
  line-height: 1.6;
  padding-bottom: var(--footer-h);
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--link);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.container {
  width: min(100% - 2rem, var(--maxw));
  margin-inline: auto;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.gap-xl {
  gap: 2rem;
}

@media (min-width: 800px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Header */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(11, 18, 32, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  height: var(--header-h);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.2rem 0;
  height: 100%;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
  text-decoration: none;
}
.brand-text {
  font-weight: 700;
  letter-spacing: 0.2px;
}
.logo {
  width: 28px;
  height: 28px;
}

.site-nav {
  display: none;
  gap: 1rem;
  align-items: center;
}
.site-nav a {
  color: var(--text);
  opacity: 0.9;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
}
.site-nav a.active {
  background: rgba(255, 255, 255, 0.08);
}
.site-nav .cta-link {
  background: var(--primary);
  color: #032a24;
  font-weight: 700;
}
.nav-toggle {
  display: inline-flex;
  font-size: 1.25rem;
  background: none;
  border: none;
  color: var(--text);
}
.site-nav.open {
  display: grid;
  position: absolute;
  top: 56px;
  right: 1rem;
  background: var(--panel);
  padding: 0.5rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }
  .site-nav {
    display: flex;
  }
  .site-nav.open {
    display: flex;
    position: static;
    box-shadow: none;
    background: transparent;
    padding: 0;
  }
}

/* Hero */
.hero {
  position: relative;
  overflow: clip;
  padding: 0;
  min-height: 100vh;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  z-index: 2;
  /* Reserve space for header and footer so text doesn't flow under them */
  min-height: calc(100vh - var(--header-h) - var(--footer-h));
  /* Ensure a larger minimum top gap on very small viewports */
  padding-top: max(calc(var(--header-h) + 1rem), 3rem);
  padding-bottom: calc(var(--footer-h) + 0.5rem);
}
.scene-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Oceanic gradient backdrop behind transparent canvas */
  background: radial-gradient(
      900px 420px at 20% 20%,
      rgba(64, 156, 255, 0.28),
      rgba(64, 156, 255, 0.06) 45%,
      transparent 60%
    ),
    linear-gradient(180deg, #0a1a2b 0%, #0b2035 50%, #081525 100%);
}
.scene-wrap::after {
  /* overlay for readability */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 18, 32, 0.08),
    rgba(11, 18, 32, 0.45) 70%
  );
  pointer-events: none;
}
.coming-soon {
  margin-top: 1rem;
  display: inline-block;
}
.lead {
  font-size: 1.25rem;
  color: var(--muted);
  margin-top: 0.5rem;
}
.actions {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: 0.2px;
  border: 1px solid transparent;
}
.button.primary {
  background: var(--primary);
  color: #032a24;
}
.button.ghost {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text);
}
.button:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.hero-art {
  display: grid;
  grid-auto-flow: row;
  gap: 1rem;
}
.stat {
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(45, 212, 191, 0.15),
    rgba(255, 255, 255, 0.02)
  );
}
.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}
.stat-label {
  font-weight: 700;
}
.stat-note {
  color: var(--muted);
  font-size: 0.9rem;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
}

/* Sections */
.benefits {
  padding: 2rem 0 1rem;
}
.highlight {
  padding: 3rem 0;
  background: linear-gradient(
    180deg,
    rgba(245, 158, 11, 0.1),
    rgba(255, 255, 255, 0)
  );
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.use-cases {
  padding: 2rem 0 1rem;
}
.page-hero {
  padding: 3rem 0 1.2rem;
}

/* Cards */
.card {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: var(--shadow);
}
.price {
  margin-top: 0.75rem;
}
.price .amount {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
}
.price .note {
  color: var(--muted);
  font-size: 0.95rem;
}
.list {
  padding-left: 1rem;
}
.list li {
  margin: 0.35rem 0;
}
.muted {
  color: var(--muted);
}
.small {
  font-size: 0.9rem;
}

/* Footer */
.site-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--footer-h);
  padding: 0;
  margin-top: 0;
  backdrop-filter: blur(10px);
  background: rgba(11, 18, 32, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 50;
  line-height: 1.2;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 100%;
}
.footer-nav a {
  color: var(--text);
  opacity: 0.9;
  margin-left: 1rem;
}

/* Typography tweaks */
h1,
h2,
h3 {
  line-height: 1.25;
  margin: 0 0 0.55rem;
  letter-spacing: 0;
  font-family: var(--font-display);
}
h1 {
  font-weight: 800;
  font-size: clamp(2.2rem, 3.8vw + 0.6rem, 3.6rem);
}
h2 {
  font-weight: 700;
  font-size: clamp(1.8rem, 2.6vw + 0.6rem, 2.6rem);
}
h3 {
  font-weight: 700;
  font-size: clamp(1.3rem, 1.4vw + 0.6rem, 1.8rem);
}

.hero-copy h1 {
  letter-spacing: 0;
  font-family: "Pacifico", cursive;
  font-weight: 400;
}
.lead {
  font-size: clamp(1.1rem, 1.1vw + 0.2rem, 1.35rem);
  letter-spacing: 0;
  line-height: 1.45;
  color: #cfe7ff;
}
/* Slightly larger lead only in hero */
.hero-copy .lead {
  font-size: clamp(1.2rem, 1.15vw + 0.25rem, 1.45rem);
}

p {
  margin: 0.6rem 0;
  font-size: 1rem;
}
/* Looser paragraph line-height for readability */
p {
  line-height: 1.5;
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.01em;
  font-size: 1.4rem;
  display: inline-flex;
}
.wave-text span {
  display: inline-block;
}
@keyframes waveChar {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px) rotate(-1deg);
  }
  100% {
    transform: translateY(0);
  }
}
.wave-text span {
  animation: waveChar 2.2s ease-in-out infinite;
}
.wave-text span:nth-child(1) {
  animation-delay: 0s;
}
.wave-text span:nth-child(2) {
  animation-delay: 0.05s;
}
.wave-text span:nth-child(3) {
  animation-delay: 0.1s;
}
.wave-text span:nth-child(4) {
  animation-delay: 0.15s;
}
.wave-text span:nth-child(5) {
  animation-delay: 0.2s;
}
.wave-text span:nth-child(6) {
  animation-delay: 0.25s;
}
.wave-text span:nth-child(7) {
  animation-delay: 0.3s;
}
.wave-text span:nth-child(8) {
  animation-delay: 0.35s;
}
.wave-text span:nth-child(9) {
  animation-delay: 0.4s;
}
.wave-text span:nth-child(10) {
  animation-delay: 0.45s;
}
.wave-text span:nth-child(11) {
  animation-delay: 0.5s;
}
.wave-text span:nth-child(12) {
  animation-delay: 0.55s;
}
.wave-text span:nth-child(13) {
  animation-delay: 0.6s;
}
.wave-text span:nth-child(14) {
  animation-delay: 0.65s;
}
.wave-text span:nth-child(15) {
  animation-delay: 0.7s;
}
.wave-text span:nth-child(16) {
  animation-delay: 0.75s;
}
.wave-text span:nth-child(17) {
  animation-delay: 0.8s;
}
.wave-text span:nth-child(18) {
  animation-delay: 0.85s;
}

/* Optional: wavy font alternative: add class .wavy-font to .brand */
.brand.wavy-font .brand-text {
  font-family: "Pacifico", cursive;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.root {
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
}
.lead {
  margin-top: var(--space-2);
}
.actions {
  margin-top: var(--space-3);
  gap: var(--space-3);
}
.card {
  padding: var(--space-4);
}
.site-footer {
  padding: var(--space-8) 0;
  margin-top: var(--space-8);
}

/* Buttons typographic polish */
.button {
  font-weight: 800;
  letter-spacing: 0.01em;
  font-size: 1rem;
}
.button.primary {
  box-shadow: 0 6px 18px rgba(45, 212, 191, 0.25);
}
