*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

:root{
  --cream:#fff8ec;
  --peach:#ff7a59;
  --coral:#ff4f6d;
  --yellow:#ffd166;
  --green:#7bd88f;
  --mint:#dffbea;
  --purple:#8b5cf6;
  --plum:#251934;
  --ink:#171321;
  --text:#4b4453;
  --white:#ffffff;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:"Inter",sans-serif;
  background:var(--cream);
  color:var(--ink);
  overflow-x:hidden;
}

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

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

.container{
  width:min(1180px,92%);
  margin:auto;
}

/* NAVBAR */

.site-header{
  position:fixed;
  top:18px;
  left:50%;
  transform:translateX(-50%);
  width:min(1180px,92%);
  z-index:1000;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 18px;
  border-radius:999px;
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(18px);
  box-shadow:0 18px 50px rgba(37,25,52,.12);
}

.logo{
  font-weight:900;
  letter-spacing:-.04em;
  font-size:1.1rem;
}

.nav{
  display:flex;
  gap:28px;
  font-size:.92rem;
  color:var(--text);
}

.nav a:hover{
  color:var(--coral);
}

.nav-cta{
  padding:11px 18px;
  border-radius:999px;
  background:var(--ink);
  color:white;
  font-weight:700;
  font-size:.9rem;
}

/* HERO */

.hero{
  position:relative;
  padding:170px 0 110px;
  overflow:hidden;
}

.hero:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 10% 20%, rgba(255,209,102,.45), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(123,216,143,.40), transparent 26%),
    radial-gradient(circle at 70% 85%, rgba(255,79,109,.22), transparent 32%);
  z-index:-3;
}

.hero-bg-shape{
  position:absolute;
  border-radius:40% 60% 70% 30% / 30% 45% 55% 70%;
  z-index:-2;
  filter:blur(.2px);
}

.shape-one{
  width:420px;
  height:420px;
  right:-130px;
  top:120px;
  background:var(--yellow);
  opacity:.9;
}

.shape-two{
  width:300px;
  height:300px;
  left:-100px;
  bottom:40px;
  background:var(--green);
  opacity:.85;
}

.hero-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:70px;
  align-items:center;
}

.eyebrow,
.section-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:.78rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.14em;
  color:var(--coral);
  margin-bottom:18px;
}

.eyebrow:before,
.section-kicker:before{
  content:"";
  width:32px;
  height:3px;
  border-radius:20px;
  background:var(--yellow);
}

h1{
  font-size:clamp(3rem,6vw,5.7rem);
  line-height:.95;
  letter-spacing:-.08em;
  max-width:780px;
  margin-bottom:28px;
}

h2{
  font-size:clamp(2rem,4.8vw,4rem);
  line-height:1;
  letter-spacing:-.06em;
  margin-bottom:24px;
}

p{
  color:var(--text);
  font-size:1.06rem;
  line-height:1.85;
}

.hero-text p{
  max-width:620px;
  font-size:1.16rem;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin:34px 0 42px;
}

.btn-main,
.btn-soft{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:15px 24px;
  border-radius:999px;
  font-weight:800;
  transition:.25s ease;
}

.btn-main{
  background:var(--coral);
  color:white;
  box-shadow:0 18px 35px rgba(255,79,109,.28);
}

.btn-main:hover{
  transform:translateY(-3px);
  box-shadow:0 24px 50px rgba(255,79,109,.35);
}

.btn-soft{
  background:white;
  color:var(--ink);
}

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

.project-meta{
  display:flex;
  gap:34px;
  flex-wrap:wrap;
}

.project-meta small{
  display:block;
  color:#8d8497;
  font-size:.78rem;
  margin-bottom:4px;
}

.project-meta strong{
  font-size:.94rem;
}

.hero-visual{
  position:relative;
  transform:rotate(1.5deg);
}

.hero-visual img{
  border-radius:32px;
  box-shadow:0 30px 80px rgba(37,25,52,.24);
  border:8px solid white;
}

.floating-note{
  position:absolute;
  padding:13px 17px;
  border-radius:999px;
  font-size:.86rem;
  font-weight:900;
  box-shadow:0 18px 40px rgba(37,25,52,.16);
}

.note-yellow{
  background:var(--yellow);
  left:-30px;
  bottom:70px;
}

.note-green{
  background:var(--green);
  right:-20px;
  top:70px;
}

/* INTRO */

.intro{
  padding:110px 0;
  background:white;
}

.intro-grid{
  display:grid;
  grid-template-columns:.9fr 1fr;
  gap:80px;
  align-items:start;
}

.intro p + p{
  margin-top:20px;
}

/* IMAGE BAND */

.image-band{
  padding:90px 0;
  background:
    linear-gradient(90deg, var(--peach), var(--yellow) 45%, var(--green));
}

.image-band img{
  border-radius:34px;
  box-shadow:0 30px 80px rgba(37,25,52,.24);
  border:8px solid white;
}

/* OBJECTIVES */

.objectives{
  padding:120px 0;
  background:var(--cream);
}

.section-title{
  max-width:760px;
  margin-bottom:58px;
}

.line-list{
  border-top:2px solid rgba(37,25,52,.12);
}

.line-list div{
  display:grid;
  grid-template-columns:90px 1fr;
  gap:30px;
  padding:28px 0;
  border-bottom:2px solid rgba(37,25,52,.12);
}

.line-list span{
  font-weight:900;
  color:var(--coral);
}

.line-list p{
  font-size:1.35rem;
  color:var(--ink);
  font-weight:700;
  line-height:1.35;
}

/* MISSION */

.mission{
  padding:130px 0;
  background:var(--plum);
  color:white;
  position:relative;
  overflow:hidden;
}

.mission:before{
  content:"";
  position:absolute;
  width:520px;
  height:520px;
  background:var(--coral);
  border-radius:50%;
  right:-200px;
  top:-160px;
  opacity:.34;
}

.mission-grid{
  position:relative;
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:80px;
  align-items:center;
}

.mission p{
  color:#e7dff2;
}

.clean-list{
  list-style:none;
  margin-top:34px;
}

.clean-list li{
  color:white;
  font-weight:700;
  padding:14px 0;
  border-bottom:1px solid rgba(255,255,255,.15);
}

.clean-list li:before{
  content:"✦";
  color:var(--yellow);
  margin-right:12px;
}

.angled-image{
  transform:rotate(-2deg);
}

.angled-image img{
  border-radius:34px;
  border:8px solid white;
  box-shadow:0 30px 80px rgba(0,0,0,.35);
}

/* MOBILE */

.mobile-section{
  padding:130px 0;
  background:linear-gradient(135deg,#fff8ec 0%,#e8fff0 100%);
}

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

.phones{
  display:flex;
  gap:26px;
  align-items:flex-start;
  justify-content:center;
}

.phones img{
  max-width:260px;
  border-radius:34px;
  border:8px solid white;
  box-shadow:0 25px 70px rgba(37,25,52,.18);
}

.phones img:nth-child(2){
  margin-top:70px;
}

.small-stats{
  display:flex;
  gap:45px;
  margin-top:38px;
}

.small-stats strong{
  display:block;
  font-size:2.8rem;
  letter-spacing:-.06em;
  color:var(--coral);
}

.small-stats span{
  color:var(--text);
  font-weight:700;
}

/* FEATURES */

.feature-flow{
  padding:120px 0;
  background:white;
}

.flow{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-top:45px;
}

.flow span{
  font-size:1.4rem;
  font-weight:900;
  letter-spacing:-.04em;
  padding:12px 0;
  border-bottom:5px solid var(--yellow);
  margin-right:22px;
}

.flow span:nth-child(2n){
  border-color:var(--green);
}

.flow span:nth-child(3n){
  border-color:var(--coral);
}

.flow span:nth-child(4n){
  border-color:var(--purple);
}

/* SPLIT SHOWCASE */

.split-showcase{
  padding:120px 0;
  background:var(--cream);
}

.split-showcase.reverse{
  background:#fff1e8;
}

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

.showcase-grid img{
  border-radius:34px;
  border:8px solid white;
  box-shadow:0 28px 80px rgba(37,25,52,.18);
}

/* GALLERY */

.gallery-section{
  padding:130px 0;
  background:var(--plum);
  color:white;
}

.gallery-section h2{
  color:white;
}

.gallery{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:22px;
}

.gallery img{
  height:390px;
  object-fit:cover;
  border-radius:28px;
  border:6px solid rgba(255,255,255,.9);
}

.gallery .large{
  grid-row:span 2;
  height:804px;
}

.gallery .wide{
  grid-column:span 2;
  height:440px;
}

/* RESULT */

.final-result{
  padding:120px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,209,102,.65), transparent 25%),
    radial-gradient(circle at 85% 70%, rgba(255,79,109,.22), transparent 30%),
    white;
}

.result-grid{
  display:grid;
  grid-template-columns:.9fr 1fr;
  gap:80px;
}

/* CTA */

.cta{
  padding:130px 0;
  background:linear-gradient(135deg,var(--coral),var(--peach) 45%,var(--yellow));
  color:white;
  text-align:center;
}

.cta-inner{
  max-width:860px;
}

.cta span{
  display:block;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.82rem;
  margin-bottom:20px;
}

.cta h2{
  color:white;
  margin-bottom:36px;
}

.cta .btn-main{
  background:white;
  color:var(--coral);
  box-shadow:none;
}

/* FOOTER */

.footer{
  background:var(--ink);
  color:white;
  padding:34px 0;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

.footer p,
.footer a{
  color:#d9d1e3;
  font-size:.92rem;
}
.project-overview {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
  padding: 120px 0;
}

.project-text span {
  color: #f59e0b;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.project-text h2 {
  margin-top: 16px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -2px;
  color: #0f172a;
}

.project-text p {
  margin-top: 22px;
  color: #64748b;
  font-size: 17px;
  max-width: 520px;
}

.project-text ul {
  margin-top: 30px;
  list-style: none;
  display: grid;
  gap: 14px;
}

.project-text li {
  color: #334155;
  font-weight: 700;
}

.project-text li::before {
  content: "✓";
  color: #f59e0b;
  font-weight: 900;
  margin-right: 10px;
}

.project-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-visual::before {
  content: "";
  position: absolute;
  width: 88%;
  height: 72%;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-radius: 42px;
  transform: rotate(-3deg);
  z-index: 0;
}

.desktop-mockup {
  position: relative;
  z-index: 2;
  width: 88%;
  border-radius: 26px;
  overflow: hidden;
  background: white;
  padding: 10px;
  box-shadow: 0 35px 90px rgba(15, 23, 42, .22);
}

.desktop-mockup img {
  width: 100%;
  display: block;
  border-radius: 18px;
}

.mobile-mockup {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 10px;
  width: 170px;
  padding: 9px;
  border-radius: 30px;
  background: #020617;
  box-shadow: 0 30px 70px rgba(15, 23, 42, .35);
}

.mobile-mockup img {
  width: 100%;
  display: block;
  border-radius: 22px;
}
/* FIX GLOBAL */
html, body {
  width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

/* RESPONSIVE */
@media(max-width:980px){

  .container {
    width: 90%;
  }

  .main-nav {
    display:none;
  }

  .main-header {
    top:12px;
  }

  .hero {
    padding:130px 0 70px;
  }

  .hero-grid,
  .intro-grid,
  .mission-grid,
  .mobile-grid,
  .showcase-grid,
  .result-grid {
    grid-template-columns:1fr;
    gap:50px;
  }

  .hero-visual,
  .angled-image {
    transform:none;
  }

  .hero-visual img,
  .angled-image img,
  .image-band img {
    border-radius:22px;
    border-width:5px;
  }

  .project-meta {
    gap:22px;
  }

  .phones {
    display:flex;
    overflow-x:auto;
    justify-content:flex-start;
    gap:18px;
    padding-bottom:20px;
  }

  .phones img {
    min-width:210px;
    max-width:210px;
  }

  .phones img:nth-child(2) {
    margin-top:35px;
  }

  .gallery {
    grid-template-columns:1fr;
  }

  .gallery .large,
  .gallery .wide,
  .gallery img {
    grid-column:auto;
    grid-row:auto;
    height:auto;
  }

  h1 {
    font-size:3.4rem;
  }

  h2 {
    font-size:2.5rem;
  }
}

@media(max-width:620px){

  .main-header {
    width:94%;
    border-radius:24px;
  }

  .main-nav-btn {
    display:none;
  }

  h1 {
    font-size:2.6rem;
    line-height:1;
  }

  h2 {
    font-size:2rem;
  }

  p {
    font-size:1rem;
    line-height:1.7;
  }

  .hero-actions {
    flex-direction:column;
  }

  .btn-main,
  .btn-soft {
    width:100%;
  }

  .project-meta {
    flex-direction:column;
    gap:16px;
  }

  .line-list div {
    grid-template-columns:1fr;
    gap:8px;
  }

  .line-list p {
    font-size:1.15rem;
  }

  .small-stats {
    flex-direction:column;
    gap:22px;
  }

  .floating-note,
  .note-yellow,
  .note-green {
    display:none;
  }

  .intro,
  .image-band,
  .objectives,
  .mission,
  .mobile-section,
  .feature-flow,
  .split-showcase,
  .gallery-section,
  .full-page-preview,
  .final-result,
  .cta {
    padding:70px 0;
  }

  .vertical-preview,
  .page-scroll {
    width:100%;
    overflow-x:hidden;
  }

  .page-scroll img {
    width:100%;
    max-width:100%;
  }
}