/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */
:root {
  --bg: #0A1D33;
  --panel: #10243b;
  --panel-2: #1E2938;
  --text: #f7f8ff;
  --muted: #7b8798;
  --line: rgba(255, 255, 255, 0.1);
  --orange: #1E5BFF;
  --blue: #1E5BFF;
  --purple: #7DD3FC;
  --pink: #7DD3FC;
  --green: #7DD3FC;
  --soft-bg: #F0F7FF;
  --border-soft: #E2E8F0;
  --radius: 24px;
  --shadow: 0 28px 90px rgba(10, 29, 51, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}


.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.section-pad {
  padding: 96px 0;
}

.heading {
  margin: 0;
  color: var(--text);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.heading-xl {
  max-width: 920px;
  font-size: clamp(54px, 8.4vw, 116px);
}

.heading-lg {
  font-size: clamp(38px, 5.4vw, 72px);
}

.heading-md {
  font-size: clamp(30px, 3.6vw, 48px);
}

.heading-sm {
  font-size: clamp(24px, 2.5vw, 34px);
}

.lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 19px);
}

/*.eyebrow,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  color: #0A1D33;
  background: rgba(125, 211, 252, 0.24);
  border: 1px solid rgba(30, 91, 255, 0.16);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.pill::before {
  content: "+";
  color: var(--blue);
  font-weight: 900;
}*/

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: #ffffff;
  background: #0A1D33;
  box-shadow: 0 18px 42px rgba(10, 29, 51, 0.18);
}

.btn-primary:hover {
  background: #1E2938;
}

.btn-soft {
  color: #0A1D33;
  background: #E2E8F0;
}

.btn-gradient {
  color: #fff;
  background: linear-gradient(135deg, #1E5BFF, #2563eb 48%, #7DD3FC);
  box-shadow: 0 18px 42px rgba(30, 91, 255, 0.24);
}

/*
  Legacy class names are retained so the page HTML stays stable while the
  palette moves to a premium blue trust system.
*/
.btn-primary.is-light {
  background: #fff;
  color: #0A1D33;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.section-title {
  max-width: 760px;
  margin: 0 auto 58px;
  text-align: center;
}

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

.section-title--left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 920px) {
  .section-pad {
    padding: 74px 0;
  }

  .container {
    width: min(100% - 36px, 1120px);
  }
}

@media (max-width: 640px) {
  .section-pad {
    padding: 58px 0;
  }

  .container {
    width: min(100% - 28px, 1120px);
  }

  .heading-xl {
    font-size: 48px;
  }

  .action-row,
  .btn {
    width: 100%;
  }
}
