body {
  color: var(--ink);
  margin: 0;
  background:
    linear-gradient(to bottom, rgba(255,255,255,0) 0%, var(--white) 78%),
    radial-gradient(var(--border) 1.1px, transparent 1.1px);
  background-size: 100% 100%, 11px 11px;
  background-position: top left, top left;
  background-attachment: fixed;
}

.editorial-hero {
  padding: 30px 24px 0;
  display: flex;
  justify-content: center;
}

.hero-card {
  position: relative;
  width: min(1300px, 100%);
  min-height: 620px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 22%, rgba(22,119,255,0.16), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(247,250,255,0.76));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 34px;
  border-radius: 22px;
  background-image:
    linear-gradient(rgba(22,119,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22,119,255,0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 72%);
  pointer-events: none;
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  top: 42px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 1px dashed var(--border-2);
  animation: orbitSpin 28s linear infinite;
  pointer-events: none;
}

@keyframes orbitSpin {
  to {
    transform: translateX(-50%) rotate(360deg);
  }
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 175px 24px 80px;
}

.hero-content h1 {
  font-size: 4rem;
  line-height: 1.03;
  letter-spacing: -0.055em;
  font-weight: 700;
  margin: 30px 0 0;
  color: var(--ink);
}

.hero-content h1 span {
  color: var(--muted);
}

.hero-content p {
  max-width: 610px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.actions a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 24px;
  border-radius: 13px;
  transition: 0.25s ease;
}

.primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.secondary {
  background: var(--white);
  color: var(--dark);
  border: 1px solid var(--border);
}

.secondary:hover {
  transform: translateY(-2px);
  border-color: var(--border-2);
}

.center-icon {
  position: absolute;
  z-index: 4;
  top: 118px;
  left: 50%;
  transform: translateX(-50%);
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--white));
  display: grid;
  place-items: center;
  box-shadow:
    var(--shadow-light),
    inset 0 1px 0 rgba(255,255,255,0.9);
  border: 1px solid #e6e6e6;
}

.center-icon::after {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: 24px;
  border: 1px solid var(--border-2);
}

.center-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}

.floating-card {
  position: absolute;
  z-index: 3;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
  color: #111827;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.floating-card:hover {
  box-shadow: var(--shadow-lg);
}

.floating-card span {
  display: block;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 8px;
}

.note-card {
  top: 55px;
  left: 55px;
  width: 230px;
  padding: 24px;
  border-radius: 8px;
  background: linear-gradient(135deg, #fff6a5, #ffe982);
  transform: rotate(5deg);
  font-size: 18px;
  line-height: 1.45;
  font-family: "Dancing Script", cursive;
  box-shadow: var(--shadow-md);
}

.note-card::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 42%;
  width: 58px;
  height: 22px;
  background: rgba(255,255,255,0.55);
  transform: rotate(-4deg);
  border-radius: 4px;
}

.review-card {
  top: 52px;
  right: 72px;
  width: 210px;
  padding: 22px;
  border-radius: 22px;
  transform: rotate(9deg);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(248,251,255,0.82));
}

.review-card::before {
  content: "LIVE";
  position: absolute;
  top: -11px;
  right: 18px;
  background: var(--dark);
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.08em;
  font-weight: 800;
  padding: 5px 8px;
  border-radius: 999px;
}

.review-card strong {
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
}

.review-card small {
  color: var(--muted);
}

.task-card {
  left: 52px;
  bottom: 52px;
  width: 260px;
  padding: 22px;
  border-radius: 22px;
  transform: rotate(-3deg);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(248,251,255,0.82));
}

.task-card span::before {
  content: "●";
  color: var(--accent);
}

.task-card div {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px solid #eef1f5;
}

.task-card div:last-child {
  border-bottom: 0;
}

.integration-card {
  right: 62px;
  bottom: 58px;
  width: 245px;
  padding: 24px;
  border-radius: 22px;
  transform: rotate(5deg);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(248,251,255,0.82));
}

.tool-icons {
  display: flex;
  gap: 13px;
}

.tool-icons i {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: var(--white);
  display: grid;
  place-items: center;
  font-size: 22px;
  color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.faq-wrapper {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 80px auto 60px;
  display: flex;
  gap: 80px;
  align-items: flex-start;
  padding: 0 20px;
}

.faq-wrapper::before {
  content: "";
  position: absolute;
  top: -70px;
  right: 40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(22,119,255,0.14), transparent 65%);
  pointer-events: none;
}

.faq-left {
  flex: 1;
  position: sticky;
  top: 120px;
  align-self: flex-start;
}

.faq-tag {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(22,119,255,0.10);
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.faq-left h1 {
  font-size: 40px;
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
}

.faq-left h1 span {
  color: #8b8f97;
  font-weight: 400;
}

.faq-right {
  flex: 1.3;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border-radius: 22px;
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.faq-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 4px;
  border-radius: 0 999px 999px 0;
  background: transparent;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.faq-item.active {
  background: linear-gradient(135deg, var(--white), #f7fbff);
  border-color: var(--border-2);
}

.faq-item.active::before {
  background: var(--accent);
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.faq-question {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}

.faq-icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--muted);
  transition: 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.faq-content {
  margin-top: 14px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-content {
  display: block;
}

@media (max-width: 900px) {
  .editorial-hero {
    padding: 24px 16px 60px;
  }

  .hero-card {
    min-height: auto;
  }

  .hero-content {
    padding: 130px 22px 70px;
  }

  .hero-content h1 {
    font-size: 2.7rem;
  }

  .hero-content p {
    font-size: 16px;
  }

  .floating-card {
    display: none;
  }

  .center-icon {
    top: 42px;
  }

  .faq-wrapper {
    flex-direction: column;
    gap: 40px;
    margin-top: 60px;
  }

  .faq-left {
    position: relative;
    top: 0;
  }

  .faq-left h1 {
    font-size: 36px;
  }
}

@media (max-width: 520px) {
  .hero-content h1 {
    font-size: 2.25rem;
  }

  .actions a {
    width: 100%;
    text-align: center;
  }

  .faq-item {
    padding: 18px;
  }
}

/* HERO BACKGROUND WARMTH */
.hero-card {
  background:
    radial-gradient(circle at 50% 22%, rgba(22,119,255,0.16), transparent 28%),
    radial-gradient(circle at 80% 18%, rgba(217,119,6,0.10), transparent 24%),
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(247,250,255,0.76));
}

/* PRIMARY BUTTON */
.primary {
  background: linear-gradient(
    135deg,
    var(--accent),
    var(--accent-2)
  );
}

/* PRIMARY BUTTON HOVER */
.primary:hover {
  box-shadow:
    0 20px 40px rgba(22,119,255,0.18),
    0 10px 24px rgba(217,119,6,0.16);
}

