:root{
  --bg:#000;
  --fg:#fff;
  --muted:rgba(255,255,255,.72);
  --muted2:rgba(255,255,255,.55);
  --line:rgba(255,255,255,.12);

  --grad: linear-gradient(90deg,#FF2D55 0%, #B72DFF 35%, #4A5CFF 70%, #FFB800 100%);
  --mono: "Space Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--fg);
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }
a:hover{ opacity:.92; }

.container{
  width:min(1200px, 92vw);
  margin:0 auto;
}

.topbar{
  position: sticky;
  top:0;
  z-index:50;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:18px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width: 170px;
}
.brand__text{
  font-size:18px;
  font-weight:600;
  letter-spacing:.2px;
}
.brand__mark svg{ display:block; }

.nav{
  display:flex;
  gap:34px;
  align-items:center;
  font-size:16px;
  color: rgba(255,255,255,.88);
}
.nav a{
  position:relative;
  padding:10px 2px;
}
.nav a::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:4px;
  height:1px;
  background: var(--line);
  transform: scaleX(0);
  transform-origin:left;
  transition: transform .18s ease;
}
.nav a:hover::after{ transform: scaleX(1); }

.burger{
  display:none;
  width:44px;
  height:44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  color: var(--fg);
  cursor:pointer;
  align-items:center;
  justify-content:center;
  gap:5px;
  padding:10px;
}
.burger span{
  display:block;
  height:2px;
  width:100%;
  background: rgba(255,255,255,.88);
  border-radius:999px;
}

.mobile-menu{
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,.92);
}
.mobile-menu__inner{
  padding:14px 0 18px;
  display:grid;
  gap:10px;
}
.m-link{
  padding:12px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: rgba(255,255,255,.9);
}

.hero{
  min-height:100vh;
  padding: 40px 0 0;
}

.hero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items:center;
  padding: 28px 0 56px;
}

.hero__brandline{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom: 16px;
}
.hero__logo{
  margin:0;
  font-size:62px;
  font-weight:500;
  letter-spacing:-.5px;
}

.hero__title{
  font-family: var(--mono);
  font-size: clamp(44px, 5.2vw, 78px);
  line-height: 1.05;
  letter-spacing: .4px;
  margin: 22px 0 22px;
}

.hero__desc{
  max-width: 520px;
  color: var(--muted);
  line-height:1.75;
  font-size:16px;
  margin: 0 0 18px;
}

.hero__cta{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  margin-top: 34px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight:600;
  letter-spacing:.2px;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, opacity .15s ease;
  user-select:none;
}

.btn--outline{
  border: 2px solid transparent;
  background:
    linear-gradient(#000,#000) padding-box,
    var(--grad) border-box;
  color: rgba(255,255,255,.92);
  min-width: 210px;
}
.btn--outline:hover{ transform: translateY(-1px); }
.btn--outline:active{ transform: translateY(0px); opacity:.9; }

.hero__right{
  position:relative;
  min-height: 520px;
}

.stack{
  position:relative;
  width: min(520px, 100%);
  height: 520px;
  margin-left:auto;
}

/* Card base */
.card{
  position:absolute;
  width: 220px;
  height: 320px;
  border-radius: 18px;
  overflow:hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.10);
  background-size: cover;
  background-position:center;
  transform-origin:center;
  transition: transform .25s ease;
}
.card:hover{ transform: translateY(-4px) scale(1.01); }

/* Placeholder “video” looks (replace with real images if you want) */
.c1{ left: 10px; top: 140px; background-image:
  linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.55)),
  radial-gradient(circle at 30% 30%, rgba(255,255,255,.18), transparent 55%),
  linear-gradient(135deg, #3b82f6, #22c55e);
}
.c2{ left: 160px; top: 30px; width: 190px; height: 270px; background-image:
  linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.62)),
  radial-gradient(circle at 70% 25%, rgba(255,255,255,.18), transparent 55%),
  linear-gradient(135deg, #ec4899, #a855f7);
}
.c3{ left: 310px; top: 44px; width: 170px; height: 250px; background-image:
  linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.62)),
  radial-gradient(circle at 45% 25%, rgba(255,255,255,.18), transparent 55%),
  linear-gradient(135deg, #f59e0b, #fde047);
}
.c4{ left: 250px; top: 220px; width: 260px; height: 320px; background-image:
  linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.58)),
  radial-gradient(circle at 30% 35%, rgba(255,255,255,.18), transparent 55%),
  linear-gradient(135deg, #60a5fa, #fb7185);
}
.c5{ left: 360px; top: 170px; width: 220px; height: 310px; background-image:
  linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.62)),
  radial-gradient(circle at 70% 35%, rgba(255,255,255,.18), transparent 55%),
  linear-gradient(135deg, #a3a3a3, #f1f5f9);
}

/* Sections below hero */
.section{
  padding: 70px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.section h3{
  margin:0 0 12px;
  font-size:24px;
  letter-spacing:.2px;
}
.section p{
  margin:0;
  color: var(--muted);
  line-height:1.8;
  max-width: 760px;
}

.feature-grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.feature-card{
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 18px 16px;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.03);
}

.footer{
  padding: 26px 0 40px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  color: rgba(255,255,255,.7);
  font-size:14px;
}
.footer__links{
  display:flex;
  gap:18px;
}

/* Responsive */
@media (max-width: 980px){
  .nav{ display:none; }
  .burger{ display:flex; }

  .hero__grid{
    grid-template-columns: 1fr;
    padding-top: 18px;
  }
  .hero__right{
    min-height: 460px;
    order: 2;
  }
  .stack{
    margin: 10px auto 0;
    height: 460px;
  }

  .feature-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  /* tighten cards */
  .card{ width: 200px; height: 290px; }
  .c2{ width: 175px; height: 250px; }
  .c3{ width: 160px; height: 230px; }
  .c4{ width: 240px; height: 300px; }
}

@media (max-width: 560px){
  .hero{ padding-top: 18px; }
  .hero__logo{ font-size:44px; }
  .hero__title{ font-size: 44px; }
  .hero__desc{ font-size: 15px; }

  .btn--outline{ width: 100%; min-width: unset; }

  .stack{ height: 420px; }

  /* re-position cards for small screens */
  .c1{ left: 0px; top: 120px; }
  .c2{ left: 120px; top: 18px; }
  .c3{ left: 240px; top: 28px; }
  .c4{ left: 90px; top: 205px; width: 240px; height: 290px; }
  .c5{ left: 200px; top: 140px; }
}
/* Why section */
.why{
  padding: 84px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}

.why__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 34px;
  align-items:start;
}

.why__eyebrow{
  margin:0 0 10px;
  color: rgba(255,255,255,.75);
  font-weight:600;
  letter-spacing:.2px;
}

.why__title{
  margin:0 0 14px;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing:-.5px;
}

.why__lead{
  margin:0 0 24px;
  color: rgba(255,255,255,.7);
  line-height: 1.75;
  max-width: 680px;
}

.why__list{
  display:grid;
  gap: 14px;
}

.why__item{
  display:flex;
  gap: 14px;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.why__item:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
}

.why__icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  color: rgba(255,255,255,.9);
  background:
    linear-gradient(#000,#000) padding-box,
    linear-gradient(90deg,#FF2D55 0%, #B72DFF 35%, #4A5CFF 70%, #FFB800 100%) border-box;
  border: 2px solid transparent;
  flex: 0 0 44px;
}

.why__icon svg{
  width: 22px;
  height: 22px;
}

.why__text h3{
  margin: 2px 0 4px;
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,.92);
}

.why__text p{
  margin:0;
  color: rgba(255,255,255,.68);
  line-height: 1.6;
  font-size: 14.5px;
}

.why__cta{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

/* Right panel */
.why__panel{
  position: relative;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  padding: 22px;
  overflow:hidden;
}

.why__panelTop{
  position: relative;
  z-index: 2;
}

.why__badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.85);
  font-weight: 600;
  font-size: 13px;
  background: rgba(0,0,0,.45);
}

.why__panelTitle{
  margin: 14px 0 8px;
  font-size: 20px;
  font-weight: 800;
}

.why__panelText{
  margin:0 0 18px;
  color: rgba(255,255,255,.70);
  line-height: 1.7;
}

.why__miniGrid{
  position: relative;
  z-index: 2;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.why__mini{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.35);
  padding: 14px 14px;
  display:flex;
  align-items:center;
  gap:10px;
}

.why__miniKpi{
  font-size: 18px;
}

.why__miniLabel{
  color: rgba(255,255,255,.82);
  font-weight: 600;
  font-size: 14px;
}

/* subtle gradient glow like the Edits style */
.why__glow{
  position:absolute;
  inset: -40% -40%;
  background:
    radial-gradient(circle at 30% 30%, rgba(183,45,255,.20), transparent 55%),
    radial-gradient(circle at 70% 40%, rgba(74,92,255,.18), transparent 55%),
    radial-gradient(circle at 50% 70%, rgba(255,180,0,.14), transparent 55%);
  filter: blur(20px);
  opacity: .9;
  z-index: 1;
}

/* Responsive */
@media (max-width: 980px){
  .why__grid{
    grid-template-columns: 1fr;
  }
  .why__panel{
    order: 2;
  }
}

@media (max-width: 560px){
  .why{
    padding: 64px 0;
  }
  .why__miniGrid{
    grid-template-columns: 1fr;
  }
  .why__cta .btn{
    width: 100%;
  }
}
/* How Edits Works */
.how{
  padding: 96px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}

.how__head{
  max-width: 820px;
  margin-bottom: 40px;
}

.how__eyebrow{
  margin:0 0 10px;
  color: rgba(255,255,255,.75);
  font-weight: 700;
}

.how__title{
  margin:0 0 12px;
  font-size: clamp(30px, 3.5vw, 46px);
  letter-spacing: -0.5px;
}

.how__sub{
  margin:0;
  color: rgba(255,255,255,.7);
  line-height: 1.75;
}

.how__steps{
  display:grid;
  gap: 56px;
}

.how__step{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items:center;
}

.how__step--reverse{
  direction: rtl;
}
.how__step--reverse > *{
  direction: ltr;
}

.how__media{
  border-radius: 26px;
  overflow:hidden;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
}

.how__media img,
.how__media video{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.how__content{
  max-width: 520px;
}

.how__stepNo{
  display:inline-block;
  margin-bottom: 10px;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 1px;
  color: rgba(255,255,255,.6);
}

.how__content h3{
  margin:0 0 10px;
  font-size: 22px;
  font-weight: 800;
}

.how__content p{
  margin:0;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 900px){
  .how__step,
  .how__step--reverse{
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .how__media{
    max-height: 420px;
  }
}

@media (max-width: 560px){
  .how{
    padding: 72px 0;
  }

  .how__steps{
    gap: 40px;
  }

  .how__content h3{
    font-size: 20px;
  }
}
/* Key Features Section */
.key-features {
  padding: 90px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.key-features__header {
  max-width: 820px;
  margin-bottom: 40px;
}

.key-features__eyebrow {
  margin: 0 0 10px;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  letter-spacing: 0.2px;
}

.key-features__title {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: -0.4px;
}

.key-features__intro {
  margin: 0;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* Grid */
.key-features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 32px;
}

/* Feature Card */
.feature-card {
  position: relative;
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.18);
}

.feature-number {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.6);
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
}

.feature-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
}

/* Wide card for final feature */
.feature-card--wide {
  grid-column: span 2;
}

/* Responsive */
@media (max-width: 900px) {
  .key-features__grid {
    grid-template-columns: 1fr;
  }

  .feature-card--wide {
    grid-column: span 1;
  }
}

@media (max-width: 560px) {
  .key-features {
    padding: 70px 0;
  }

  .feature-card {
    padding: 18px;
  }

  .feature-card h3 {
    font-size: 17px;
  }
}
/* What You Can Create */
.create-with-edits {
  padding: 90px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.create-with-edits__header {
  max-width: 820px;
  margin-bottom: 40px;
}

.create-with-edits__eyebrow {
  margin: 0 0 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}

.create-with-edits__title {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: -0.4px;
}

.create-with-edits__intro {
  margin: 0;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* Grid */
.create-with-edits__grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* Cards */
.create-card {
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.create-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.18);
}

.create-icon {
  display: inline-block;
  font-size: 22px;
  margin-bottom: 10px;
}

.create-card h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
}

.create-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
}

/* Responsive */
@media (max-width: 1024px) {
  .create-with-edits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .create-with-edits {
    padding: 70px 0;
  }

  .create-with-edits__grid {
    grid-template-columns: 1fr;
  }
}
/* Edits vs Other Apps */
.compare-edits {
  padding: 96px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.compare-edits__header {
  max-width: 820px;
  margin-bottom: 40px;
}

.compare-edits__eyebrow {
  margin: 0 0 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}

.compare-edits__title {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: -0.4px;
}

.compare-edits__intro {
  margin: 0;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* Cards */
.compare-edits__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.compare-card {
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
}

.compare-card--edits {
  border-color: rgba(255,255,255,0.2);
  background: linear-gradient(
    180deg,
    rgba(255,45,85,0.08),
    rgba(255,255,255,0.03)
  );
}

.compare-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 800;
}

.compare-card ul {
  margin: 0;
  padding-left: 18px;
}

.compare-card li {
  margin-bottom: 10px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

/* Decision guide */
.compare-edits__guide {
  margin-top: 40px;
  padding: 26px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.35);
}

.compare-edits__guide h3 {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 800;
}

.guide-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.guide-list li {
  margin-bottom: 10px;
  color: rgba(255,255,255,0.75);
}

.highlight {
  color: #fff;
  font-weight: 700;
}

/* Comparison links */
.compare-edits__links {
  margin-top: 40px;
}

.compare-edits__links h3 {
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 800;
}

.compare-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.compare-links a {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.compare-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.2);
}

/* Responsive */
@media (max-width: 900px) {
  .compare-edits__cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .compare-edits {
    padding: 72px 0;
  }

  .compare-edits__guide {
    padding: 20px;
  }
}
/* Who Is Edits For */
.who-edits {
  padding: 96px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.who-edits__header {
  max-width: 820px;
  margin-bottom: 40px;
}

.who-edits__eyebrow {
  margin: 0 0 10px;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}

.who-edits__title {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: -0.4px;
}

.who-edits__intro {
  margin: 0;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* Grid */
.who-edits__grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

/* Cards */
.who-card {
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.who-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.18);
}

.who-icon {
  display: inline-block;
  font-size: 24px;
  margin-bottom: 10px;
}

.who-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
}

.who-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
}

/* Wide card */
.who-card--wide {
  grid-column: span 2;
}

/* Note */
.who-edits__note {
  margin-top: 36px;
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.35);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

.who-edits__note strong {
  color: rgba(255,255,255,0.95);
}

/* Responsive */
@media (max-width: 900px) {
  .who-edits__grid {
    grid-template-columns: 1fr;
  }

  .who-card--wide {
    grid-column: span 1;
  }
}

@media (max-width: 560px) {
  .who-edits {
    padding: 72px 0;
  }

  .who-card {
    padding: 20px;
  }
}
/* Tips Section */
.edits-tips {
  padding: 96px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.edits-tips__header {
  max-width: 820px;
  margin-bottom: 40px;
}

.edits-tips__eyebrow {
  margin: 0 0 10px;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}

.edits-tips__title {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: -0.4px;
}

.edits-tips__intro {
  margin: 0;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* Grid */
.edits-tips__grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Tip cards */
.tip-card {
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.tip-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.18);
}

.tip-number {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.6);
}

.tip-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
}

.tip-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
}

/* CTA */
.edits-tips__cta {
  margin-top: 48px;
  padding: 32px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.35);
  text-align: center;
}

.edits-tips__cta h3 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 800;
}

.edits-tips__cta p {
  margin: 0 0 18px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 1024px) {
  .edits-tips__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .edits-tips {
    padding: 72px 0;
  }

  .edits-tips__grid {
    grid-template-columns: 1fr;
  }

  .edits-tips__cta {
    padding: 24px;
  }
}
/* FAQ Section */
.faq-section {
  padding: 96px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.faq-header {
  max-width: 820px;
  margin-bottom: 36px;
}

.faq-eyebrow {
  margin: 0 0 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}

.faq-title {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: -0.4px;
}

.faq-intro {
  margin: 0;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.faq-list {
  max-width: 900px;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq-question {
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  color: rgba(255,255,255,0.95);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-toggle {
  font-size: 22px;
  transition: transform 0.25s ease;
}

.faq-question[aria-expanded="true"] .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  margin: 0;
  padding-bottom: 20px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* Mobile */
@media (max-width: 560px) {
  .faq-section {
    padding: 72px 0;
  }

  .faq-question {
    font-size: 15px;
  }
}
/* Get Started CTA */
.get-started{
  padding: 96px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.get-started__box{
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  padding: 34px;
}

.get-started__eyebrow{
  margin: 0 0 10px;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}

.get-started__title{
  margin: 0 0 14px;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: -0.4px;
}

.get-started__text{
  margin: 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  max-width: 720px;
}

.get-started__actions{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

/* Store buttons */
.store-btn{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 2px solid transparent;
  background:
    linear-gradient(#000,#000) padding-box,
    linear-gradient(90deg,#FF2D55 0%, #B72DFF 35%, #4A5CFF 70%, #FFB800 100%) border-box;
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  transition: transform .18s ease, opacity .18s ease;
  min-width: 210px;
}

.store-btn:hover{ transform: translateY(-2px); }
.store-btn:active{ transform: translateY(0); opacity: .9; }

.store-btn__icon{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}

.store-btn__icon svg{
  width: 20px;
  height: 20px;
}

.store-btn__text{
  display: grid;
  line-height: 1.1;
}

.store-btn__small{
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}

.store-btn__big{
  font-size: 16px;
  font-weight: 800;
}

/* Right visual */
.get-started__visual{
  position: relative;
  display: grid;
  align-items: center;
  justify-items: center;
}

.get-started__glass{
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 360px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.35);
  padding: 18px;
  display: grid;
  gap: 10px;
}

.get-started__chip{
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.85);
  font-weight: 700;
}

.get-started__glow{
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 30% 35%, rgba(183,45,255,.22), transparent 55%),
    radial-gradient(circle at 70% 40%, rgba(74,92,255,.18), transparent 55%),
    radial-gradient(circle at 50% 70%, rgba(255,180,0,.15), transparent 55%);
  filter: blur(26px);
  opacity: .9;
  z-index: 1;
}

/* Responsive */
@media (max-width: 980px){
  .get-started__box{
    grid-template-columns: 1fr;
    padding: 26px;
  }
  .get-started__visual{
    margin-top: 10px;
  }
}

@media (max-width: 560px){
  .get-started{
    padding: 72px 0;
  }
  .store-btn{
    width: 100%;
    min-width: unset;
    justify-content: center;
  }
}






