*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #0d1413;
  --bg-secondary: #131c1a;
  --accent: #1ddbb5;
  --accent-dim: rgba(29, 219, 181, 0.15);
  --accent-glow: rgba(29, 219, 181, 0.4);
  --text-primary: #ffffff;
  --text-muted: #6b7a77;
  --text-body: #c4d1cf;
  --border: rgba(29, 219, 181, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Electrolize", monospace;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  font-size: 15px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 9999;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Electrolize", sans-serif;
  font-weight: 700;
  line-height: 1.1;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(29, 219, 181, 0.06) 0%,
    transparent 60%
  );
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.cta-content .section-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.cta-content .section-desc {
  max-width: 100%;
  margin: 0 auto 2.5rem;
}

/* ── SPLIT REVEAL ── */

.reveal-mask {
  overflow: hidden;
}
.reveal-left {
  opacity: 0;
  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.9s ease;
}

.reveal-left {
  transform: translateX(-150px) scale(0.95);
}

.reveal-right {
  opacity: 0;

  transform: translateX(150px) scale(0.95);

  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.9s ease;
  /*transform: translateX(150px) scale(0.95);*/
}

.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.reveal-fade {
  opacity: 0;
  transition: opacity 1.2s ease;
}

.reveal-fade.visible {
  opacity: 1;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}
.reveal-rise {
  opacity: 0;
  transform: translateY(60px);
}

.reveal-rise.visible {
  opacity: 1;
  transform: translateY(0);

  transition:
    opacity 1s ease,
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.advice {
  opacity: 0.7;
  font-size: 12px;
}

/* ── buttons ── */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  background: transparent;
  color: var(--accent);
  font-family: "Electrolize", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid var(--accent);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--accent-dim);
  box-shadow: 0 0 20px rgba(29, 219, 181, 0.1);
}

.margin-top {
  margin-top: 20px;
}

/* ── SECTIONS ── */
section {
  padding: 7rem 0;
}

.section-divider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.2;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}

.section-desc {
  color: var(--text-body);
  font-size: 1rem;
  max-width: 520px;
  line-height: 1.8;
}

.highlight {
  position: relative;
  color: var(--accent);
  display: inline-block;
}
/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(29, 219, 181, 0.12) 0%,
    transparent 70%
  );
  top: -10%;
  right: -5%;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(29, 219, 181, 0.08) 0%,
    transparent 70%
  );
  bottom: 10%;
  left: 5%;
  animation-delay: -3s;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.4s;
}

.hero h1 .highlight {
  position: relative;
  color: var(--accent);
  display: inline-block;
}

.hero h1 .highlight::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  opacity: 0.3;
  border-radius: 2px;
}

/* ── SERVICE ── */
.service-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  border-color: rgba(29, 219, 181, 0.25);
  transform: translateY(-4px);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(29, 219, 181, 0.05);
}

.service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 4px;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}

.service-card:hover .service-icon svg {
  stroke: var(--bg-primary);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
  stroke-width: 1.5;
  fill: none;
  transition: stroke 0.3s ease;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.service-card .arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 1.5rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.service-card:hover .arrow {
  opacity: 1;
  transform: translateX(0);
}
.arrow svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
  stroke-width: 2;
  fill: none;
}

.features-list {
  list-style: none;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--text-body);
}

.features-list .check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: 50%;
  margin-top: 2px;
  padding-top: 3px;

  color: #1ddbb5;
  font-size: 14px;
  font-weight: bold;
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(20px, -30px) scale(1.05);
  }
  66% {
    transform: translate(-15px, 20px) scale(0.95);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  section {
    padding: 5rem 0;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
}
