* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, system-ui, sans-serif;
}

body {
  background: radial-gradient(circle at top, #0f2a3a, #050b1c);
  color: #fff;
}

/* UTIL */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

span {
  color: #1de9b6;
}

.btn {
  border: none;
  padding: 12px 22px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
}

.btn.primary {
  background: linear-gradient(135deg, #1de9b6, #18b7e4);
  color: #001;
}

/* HEADER */
.header {
  padding: 20px 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 800;
  font-size: 22px;
  color: #1de9b6;
}

nav a {
  margin-right: 18px;
  color: #cfd8dc;
  text-decoration: none;
}

/* HERO */
.hero {
  padding: 80px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.badge {
  display: inline-block;
  background: rgba(29,233,182,0.15);
  color: #1de9b6;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
  font-size: 13px;
}

.hero h1 {
  font-size: 46px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero p {
  color: #b0bec5;
  max-width: 520px;
  margin-bottom: 26px;
}

/* MOCK */
.hero-mock {
  background: linear-gradient(180deg, #0e1f2f, #071220);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 0 40px rgba(29,233,182,0.15);
}

.mock-header {
  background: #13293d;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.mock-card {
  height: 90px;
  background: linear-gradient(135deg, #1de9b6, #18b7e4);
  border-radius: 12px;
  opacity: 0.85;
}

/* FEATURES */
.features {
  padding: 100px 0;
}

.features h2 {
  text-align: center;
  font-size: 36px;
}

.subtitle {
  text-align: center;
  color: #90a4ae;
  margin: 16px 0 50px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.feature-card {
  background: linear-gradient(180deg, #0c1d2d, #071220);
  padding: 26px;
  border-radius: 18px;
  border: 1px solid rgba(29,233,182,0.15);
}

.feature-card h3 {
  margin-bottom: 10px;
}

.feature-card p {
  color: #b0bec5;
}

/* CTA */
.cta {
  margin: 100px auto;
  text-align: center;
  background: linear-gradient(135deg, #0e3b3f, #0b1f2a);
  padding: 60px 20px;
  border-radius: 24px;
  max-width: 1000px;
}

.cta h2 {
  font-size: 34px;
  margin-bottom: 24px;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 40px 0;
  color: #78909c;
  font-size: 14px;
}
/* HERO ANIMATION WRAPPER */
.hero-wrapper {
  width: 100%;
  max-width: 520px;
  height: 420px;
  background: linear-gradient(180deg, #0e1f2f, #071220);
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(29,233,182,0.25);
}

/* DESKTOP */
.desktop {
  width: 100%;
  height: 100%;
  background: #0c1d2d;
  border-radius: 20px;
  position: absolute;
  inset: 0;
  padding: 14px;
  animation: desktopMorph 6s infinite;
}

.desktop img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 14px;
}

/* DRAG CARD */
.drag-card {
  width: 140px;
  height: 70px;
  background: linear-gradient(135deg, #1de9b6, #18b7e4);
  border-radius: 14px;
  position: absolute;
  left: 80px;
  top: 260px;
  z-index: 4;
  animation: drag 6s infinite;
}

/* CURSOR */
.cursor {
  position: absolute;
  left: 100px;
  top: 280px;
  z-index: 6;
  animation: cursorMove 6s infinite;
}

.cursor::before {
  content: "☝️";
  font-size: 32px;
}

/* PUBLISH BUTTON */
.publish {
  position: absolute;
  right: 20px;
  top: 16px;
  padding: 8px 14px;
  background: #1de9b6;
  color: #001;
  font-weight: 700;
  border-radius: 8px;
  z-index: 5;
}

/* LIGHTNING */
.flash {
  position: absolute;
  right: 40px;
  top: 60px;
  font-size: 32px;
  opacity: 0;
  animation: flash 6s infinite;
}

/* MOBILE */
.mobile {
  width: 220px;
  height: 380px;
  background: #081a2b;
  border-radius: 44px;
  position: absolute;
  inset: 0;
  margin: auto;
  transform: scale(0);
  opacity: 0;
  padding: 12px;
  animation: phone 6s infinite;
}

.mobile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 30px;
}

/* ANIMATIONS */
@keyframes drag {
  0%,15% { transform: translate(0,0); opacity: 1; }
  30% { transform: translate(180px,-80px) scale(1.1); }
  45% { transform: translate(280px,-100px); }
  60%,100% { opacity: 0; }
}

@keyframes cursorMove {
  0%,15% { transform: translate(0,0); }
  30% { transform: translate(180px,-80px); }
  45% { transform: translate(280px,-100px) scale(0.9); }
  100% { opacity: 0; }
}

@keyframes flash {
  0%,45% { opacity: 0; transform: scale(0.6); }
  50% { opacity: 1; transform: scale(1.3); }
  55% { opacity: 0; }
}

@keyframes desktopMorph {
  0%,45% {
    opacity: 1;
    transform: scale(1);
    border-radius: 20px;
  }
  60% {
    opacity: 0.15;
    transform: scale(0.85);
    border-radius: 40px;
  }
  100% { opacity: 0; }
}

@keyframes phone {
  0%,55% {
    transform: scale(0.6);
    opacity: 0;
  }
  70%,100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* FEATURES SECTION */
.features-section {
  padding: 120px 20px;
  background:
    radial-gradient(circle at top, rgba(29,233,182,0.12), transparent 40%),
    radial-gradient(circle at bottom, rgba(24,183,228,0.12), transparent 40%),
    #050b1c;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.features-title {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.features-title span {
  color: #1de9b6;
}

.features-subtitle {
  color: #9fb3c8;
  max-width: 720px;
  margin: 0 auto 60px;
  font-size: 16px;
}

/* GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */
.feature-card {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.01)
  );
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 28px;
  text-align: left;
  transition: all 0.35s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(29,233,182,0.35);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* ICON */
.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}

.teal { background: rgba(29,233,182,0.2); color: #1de9b6; }
.purple { background: rgba(155,89,182,0.2); color: #c084fc; }
.cyan { background: rgba(24,183,228,0.2); color: #38bdf8; }
.green { background: rgba(34,197,94,0.2); color: #22c55e; }
.orange { background: rgba(249,115,22,0.2); color: #fb923c; }
.blue { background: rgba(96,165,250,0.2); color: #60a5fa; }

/* TAG */
.feature-tag {
  display: inline-block;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(29,233,182,0.15);
  color: #1de9b6;
  margin-bottom: 10px;
}

/* TEXT */
.feature-card h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 10px;
}

.feature-card p {
  color: #9fb3c8;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.feature-card a {
  color: #1de9b6;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .features-title {
    font-size: 32px;
  }
}

/* INDUSTRY SECTION */
.industry-section {
  padding: 10px 30px;
  background:
    radial-gradient(circle at top, rgba(24,183,228,0.12), transparent 45%),
    #050b1c;
}

.industry-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.industry-title {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}

.industry-title span {
  color: #1de9b6;
}

.industry-subtitle {
  color: #9fb3c8;
  max-width: 720px;
  margin: 0 auto 60px;
  font-size: 16px;
}

/* GRID */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* CARD */
.industry-card {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.01)
  );
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 26px 26px;
  transition: all 0.35s ease;
}

.industry-card:hover {
  transform: translateY(-10px);
  border-color: rgba(29,233,182,0.35);
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
}

/* ICON */
.industry-icon {
  font-size: 36px;
  margin-bottom: 18px;
}

/* TEXT */
.industry-card h3 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 10px;
}

.industry-card p {
  color: #9fb3c8;
  font-size: 14px;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .industry-title {
    font-size: 32px;
  }
}

/* HOW IT WORKS SECTION */
.how-section {
  padding: 120px 20px;
  background:
    radial-gradient(circle at center, rgba(29,233,182,0.12), transparent 45%),
    #050b1c;
}

.how-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.how-title {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}

.how-title span {
  color: #1de9b6;
}

.how-subtitle {
  color: #9fb3c8;
  max-width: 720px;
  margin: 0 auto 70px;
  font-size: 16px;
}

/* GRID */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.how-card {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.01)
  );
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 48px 28px 36px;
  transition: all 0.35s ease;
}

.how-card:hover {
  transform: translateY(-10px);
  border-color: rgba(29,233,182,0.35);
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
}

/* CENTER HIGHLIGHT */
.how-card.highlight {
  border-color: rgba(29,233,182,0.5);
  box-shadow: 0 30px 80px rgba(29,233,182,0.25);
}

/* STEP NUMBER */
.step-number {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 42px;
  font-weight: 800;
  color: rgba(255,255,255,0.06);
}

/* ICON */
.how-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

/* TEXT */
.how-card h3 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 14px;
}

.how-card p {
  color: #9fb3c8;
  font-size: 15px;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .how-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .step-number {
    font-size: 34px;
  }
}

/* FOOTER */
.footer {
  background: #050b1c;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 26px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LEFT */
.footer-logo {
  font-weight: 700;
  font-size: 18px;
  color: #1de9b6;
  margin-right: 14px;
}

.footer-copy {
  color: #9fb3c8;
  font-size: 14px;
}

/* RIGHT */
.footer-right a {
  color: #9fb3c8;
  font-size: 14px;
  margin-left: 20px;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-right a:hover {
  color: #1de9b6;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    gap: 12px;
  }

  .footer-right a {
    margin-left: 12px;
    margin-right: 12px;
  }
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 38px;
  }
}
