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

body {
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: #050505;
  color: #ffffff;
}

.hero{
    position:relative;
    min-height:100vh;
    overflow:hidden;

    background-image:url("obyteraz.png");
    background-size:74% auto;
    background-position:right top;
    background-repeat:no-repeat;

    background-color:#050505;

    margin-bottom:0;
}

/* DELIKATNE PRZEJŚCIE HERO DO KOLEJNEJ SEKCJI */

.hero::after{
  content:"";
  
  position:absolute;
  left:0;
  right:0;
  bottom:0;

  width:100%;
  height:105px;

  pointer-events:none;

  background:linear-gradient(
    to bottom,
    rgba(5,5,5,0) 0%,
    rgba(5,5,5,.06) 30%,
    rgba(5,5,5,.22) 65%,
    rgba(5,5,5,.72) 100%
  );

  z-index:5;
}

.proof-title{

position:relative;

background:#050505;

text-align:center;

/* BYŁO np. 90 / 120 / 145 */
padding:180px 20px 52px;

/* było -90 albo 0 */
margin-top:-20px;

overflow:hidden;

}

.proof-title::before{

content:"";

position:absolute;

left:50%;
top:-110px;

transform:translateX(-50%);

width:1800px;

height:340px;

pointer-events:none;

z-index:0;

background:

radial-gradient(
ellipse at center,
rgba(60,120,255,.08) 0%,
rgba(40,90,255,.05) 22%,
rgba(255,255,255,.02) 40%,
transparent 72%
),

radial-gradient(
ellipse at 35% 55%,
rgba(120,170,255,.06),
transparent 38%
),

radial-gradient(
ellipse at 70% 60%,
rgba(90,130,255,.05),
transparent 44%
);

filter:
blur(52px);

opacity:.85;

}

.proof-title > *{

position:relative;

z-index:2;

}

.overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 36%, rgba(0,88,255,.16), transparent 30%),
    linear-gradient(90deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.76) 30%, rgba(0,0,0,.10) 58%, rgba(0,0,0,0) 100%);
  z-index: 2;
}

.nav {
  position: fixed;

  top: 34px;
  left: 56px;

  z-index: 999;

  display: flex;
  align-items: center;

  background: transparent;
}

.brand {
  display: flex;
  align-items: center;

gap: 18px;

padding: 9px 20px 9px 10px;

border-radius: 20px;

background:
linear-gradient(
180deg,
rgba(10,12,20,.62),
rgba(6,8,14,.48)
);

backdrop-filter: blur(24px);
-webkit-backdrop-filter: blur(24px);

box-shadow:
0 16px 60px rgba(0,0,0,.38),
inset 0 1px rgba(255,255,255,.04);
}

.logo-mark {
  width: 76px;
  height: 76px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 20px;

  background:
    linear-gradient(
      180deg,
      #14234f 0%,
      #091325 100%
    );

  border: 1px solid rgba(125,170,255,.45);

  color: #ffffff;

  font-size: 26px;
  font-weight: 900;

  letter-spacing: -.08em;

  box-shadow:
    0 0 45px rgba(70,120,255,.24),
    inset 0 1px rgba(255,255,255,.12);
}

.brand-name {
  display: flex;
  align-items: center;
}

.brand-name strong {

  color: #ffffff;

  font-size: 38px;

  font-weight: 900;

  line-height: 1;

  letter-spacing: -.08em;

  text-decoration: none !important;

  text-shadow: none;

  border-bottom: none;

  background: none;
}

.nav-links {
  display: none;
}

.hero-content {
  position: relative;

  z-index: 2;

  padding: 158px 0 0 72px;
}

.left {
  max-width: 690px;
}

.eyebrow {
  width: fit-content;
  padding: 8px 15px;
  margin-bottom: 30px;
  border: 1px solid rgba(64,132,255,.45);
  border-radius: 999px;
  background: rgba(7,92,255,.08);
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  box-shadow: 0 0 30px rgba(7,92,255,.18);
}

h1 {
  font-size: clamp(58px, 5vw, 88px);
  line-height: .94;
  letter-spacing: -4px;
  font-weight: 850;
  margin-bottom: 34px;
}

h1 span {
  background: linear-gradient(90deg, #ffffff 0%, #d7e7ff 18%, #8ab8ff 48%, #156bff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtext{
  margin-top: 34px;

  max-width: 760px;

  display: flex;
  flex-direction: column;

  gap: 22px;

  font-size: clamp(22px, 1.55vw, 28px);

  line-height: 1.42;

  font-weight: 500;

  color: rgba(255,255,255,.84);
}

.subtext p{
  margin: 0;
}

.network-main{
  font: inherit;

  line-height: inherit;

  color: inherit;
}

.network-footer{

  width: fit-content;

  margin-top: 10px;

  display: inline-flex;

  align-items: center;

  gap: 16px;

  padding: 18px 28px;

  border-radius: 999px;

  background:
    linear-gradient(
      180deg,
      rgba(18,22,34,.88),
      rgba(8,10,18,.78)
    );

  border:
    1px solid rgba(120,170,255,.18);

  box-shadow:
    0 0 0 1px rgba(255,255,255,.03),
    0 14px 45px rgba(0,0,0,.42),
    inset 0 1px rgba(255,255,255,.05);

  color:
    rgba(255,255,255,.82);

  font-size: 16px;

  font-weight: 800;

  letter-spacing: -.01em;

  backdrop-filter: blur(18px);

  -webkit-backdrop-filter: blur(18px);
}

.network-footer span{

  color: #6d9eff;

  font-size: 18px;

  font-weight: 900;

  text-shadow:
    0 0 18px rgba(80,130,255,.8);
}
.buttons {
  display: flex;
  gap: 24px;
  margin-bottom: 76px;
}

.btn {
  height: 62px;
  min-width: 215px;
  padding: 0 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  font-weight: 650;
}

.btn.primary {
  background: linear-gradient(135deg, #075cff 0%, #1674ff 100%);
  color: #ffffff;
  box-shadow: 0 18px 50px rgba(0,80,255,.34);
}

.btn.primary span {
  margin-left: 14px;
  font-size: 24px;
}

.btn.secondary {
  color: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.025);
}

.brands p {
  font-size: 13px;
  letter-spacing: 5px;
  color: rgba(255,255,255,.55);
  margin-bottom: 28px;
}

.brand-logos {
  display: flex;
  gap: 38px;
  font-size: 25px;
  font-weight: 850;
}


/* MUG */

.hero-mug {
  position: absolute;
  right: 255px;
  bottom: -6px;
  z-index: 50;
  width: 390px;
  pointer-events: none;
}

.hero-mug img {
  display: block;
  width: 100%;
  opacity: .98;
  filter:
    drop-shadow(0 34px 56px rgba(0,0,0,.72))
    drop-shadow(0 0 22px rgba(255,255,255,.04));
}

.mug-text {
  position: absolute;
  left: 50%;
  top: 45%;
  width: 42%;
  transform: translate(-50%, -50%) perspective(900px) rotateX(2deg) rotateY(-8deg);
  text-align: center;
  opacity: .96;
}

.mug-role {
  display: block;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 2px;
  font-weight: 850;
  color: rgba(255,255,255,.82);
  margin-bottom: 9px;
  text-transform: uppercase;
  transform: scaleX(.96);
}

.mug-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  transform: perspective(800px) rotateX(6deg) scaleX(.96);
}

.mug-line {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  white-space: nowrap;
  font-size: 18px;
  line-height: .9;
  font-weight: 900;
  letter-spacing: 1px;
  color: rgba(255,255,255,.86);
}

.mug-line span {
  display: inline-block;
}

.mug-arc-word:first-child span:nth-child(1) { transform: translateY(4px) rotate(-6deg); }
.mug-arc-word:first-child span:nth-child(2) { transform: translateY(2px) rotate(-4deg); }
.mug-arc-word:first-child span:nth-child(3) { transform: translateY(1px) rotate(-2deg); }
.mug-arc-word:first-child span:nth-child(4) { transform: translateY(0) rotate(0deg); }
.mug-arc-word:first-child span:nth-child(5) { transform: translateY(1px) rotate(2deg); }
.mug-arc-word:first-child span:nth-child(6) { transform: translateY(2px) rotate(4deg); }
.mug-arc-word:first-child span:nth-child(7) { transform: translateY(4px) rotate(6deg); }

.mug-arc-word:last-child {
  margin-top: -1px;
  letter-spacing: 1.2px;
}

.mug-arc-word:last-child span:nth-child(1) { transform: translateY(2px) rotate(-4deg); }
.mug-arc-word:last-child span:nth-child(2) { transform: translateY(1px) rotate(-2deg); }
.mug-arc-word:last-child span:nth-child(3) { transform: translateY(0) rotate(0deg); }
.mug-arc-word:last-child span:nth-child(4) { transform: translateY(1px) rotate(2deg); }
.mug-arc-word:last-child span:nth-child(5) { transform: translateY(2px) rotate(4deg); }


/* RESPONSIVE */

@media (max-width: 1400px) {
  .hero {
    background-size: 86% auto;
  }

  .nav,
  .hero-content {
    padding-left: 52px;
  }

  h1 {
    font-size: clamp(50px, 4.6vw, 74px);
  }

  .hero-mug {
    right: 245px;
    width: 360px;
  }

  .mug-role {
    font-size: 9px;
  }

  .mug-line {
    font-size: 15px;
  }
}

@media (max-width: 900px) {
  .hero {
    background-size: cover;
    background-position: center top;
  }

  .overlay {
    background: rgba(0,0,0,.84);
  }

  .nav {
    padding: 28px 24px 0;
  }

  .brand {
    font-size: 13px;
    letter-spacing: 5px;
  }

  .hero-content {
    padding: 52px 24px 36px;
  }

  h1 {
    font-size: 46px;
    letter-spacing: -2.2px;
  }

  .subtext {
    font-size: 20px;
  }

  .buttons {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
  }

  .btn {
    width: 100%;
  }

  .brand-logos {
    flex-wrap: wrap;
    gap: 24px;
  }

  .hero-mug {
    display: none;
  }
}

.proof-image-section {
  width: 100%;
  background: #050505;
  display: flex;
  justify-content: center;
  padding: 35px 32px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.025);
}

.proof-image-section img {
  width: 100%;
  max-width: 1450px;
  height: auto;
  display: block;
  border-radius: 28px;
}

.proof-wrapper{
position:relative;

width:fit-content;

margin:auto;
}

.proof-wrapper img{
display:block;

width:100%;
}

.proof-link{
position:absolute;

display:block;

z-index:20;

cursor:pointer;

border-radius:18px;

/* TEST */
background:transparent;
}

.proof-link.temu{

left:18.1%;

top:44.6%;

width:9.6%;

height:7.0%;

}

.proof-link:hover{

background:
rgba(0,120,255,.10);

box-shadow:
0 0 24px rgba(0,120,255,.28);

}

.campaign-showcase {
    display: flex;
    justify-content: center;

    margin-top: -40px;
    margin-bottom: 20px;
}

.campaign-card{

width:1200px;

max-width:95%;

height:auto;

display:block;

}

.campaign-wrapper{

position:relative;

width:fit-content;

margin:auto;

}

.campaign-wrapper .campaign-card{

width:1200px;

max-width:95%;

height:auto;

display:block;

}

/* TO DODAJ ↓↓↓ */

.campaign-link{

position:absolute;

display:block;

z-index:20;

cursor:pointer;

border-radius:18px;

background:transparent;

}

.campaign-link.war-top{

left:5.0%;

top:-10.0%;

width:12.0%;

height:9.0%;

}

.campaign-link.war-right{

left:78.1%;

top:58.6%;

width:12.0%;

height:11.0%;

}

.campaign-link:hover{

background:
rgba(0,120,255,.10);

box-shadow:
0 0 24px rgba(0,120,255,.28);

}

.proof-title {
  background:#050505;

  text-align:center;

  /* było 48px 20px 0 */
  padding:140px 20px 26px;

  position:relative;

  /* dodaj */
  margin-top:-60px;
}

.proof-title::after{
  content:"";

  position:absolute;

  left:50%;
  bottom:-1px;

  transform:translateX(-50%);

  width:min(1600px,96%);
  height:1px;

  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(255,255,255,.10) 20%,
      rgba(255,255,255,.16) 50%,
      rgba(255,255,255,.10) 80%,
      transparent 100%
    );
}
.proof-title h2 {
  margin: 0;

  font-size: clamp(38px, 4.4vw, 62px);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -0.045em;

  color: #ffffff;
  text-transform: uppercase;
}

.proof-title h2 .word {
  color: #a8b7ff;
  -webkit-text-fill-color: #a8b7ff;

  text-shadow:
    0 0 4px rgba(180,190,255,.85),
    0 0 10px rgba(120,140,255,.95),
    0 0 22px rgba(90,110,255,.85),
    0 0 42px rgba(70,80,255,.65),
    0 0 70px rgba(60,70,255,.35);

  filter:
    saturate(1.25)
    brightness(1.02);
}

.proof-title p {
  margin-top:18px;
  margin-bottom:8px;

  font-size:clamp(24px,1.6vw,32px);
  font-weight:700;

  color:rgba(255,255,255,.8);
}
.how-it-works-image{
  background:#050509;
  padding:60px 20px;
}

.how-it-works-image img{
  display:block;
  width:100%;
  max-width:1600px;
  margin:0 auto;
}

/* --- Creator Showcase (mniejsza i bliżej) --- */

.creator-showcase-image{

  background:#050505;

  padding:0 20px 60px;

  margin-top:-40px;

  display:flex;

  flex-direction:column;

  align-items:center;

  justify-content:center;
}

/* + 2,000 More */

.more-creators{

  width:100%;

  display:flex;

  justify-content:center;

  align-items:center;

  margin-top:42px;

  margin-bottom:20px;

  font-size:clamp(24px,2vw,34px);

  font-weight:800;

  letter-spacing:-.03em;

  color:rgba(255,255,255,.92);

  text-shadow:
    0 0 28px rgba(70,120,255,.22);
}

.more-creators::before{

  content:"";

  width:140px;

  height:1px;

  margin-right:22px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(90,140,255,.55)
    );
}

.more-creators::after{

  content:"";

  width:140px;

  height:1px;

  margin-left:22px;

  background:
    linear-gradient(
      90deg,
      rgba(90,140,255,.55),
      transparent
    );
}

.creator-showcase-image img{

  width:82%;

  max-width:1240px;

  height:auto;

  display:block;

  margin:0 auto;

  border-radius:22px;
}

.brand,
.brand:hover,
.brand:focus,
.brand:visited{

  text-decoration:none !important;
}

.brand *{

  text-decoration:none !important;
}

/* ========================= */
/* ABOUT */
/* ========================= */

.about-image-section{
  background:#050505;
  display:grid;
  grid-template-columns:minmax(580px,660px) minmax(650px,730px);
  align-items:center;
  justify-content:center;
  column-gap:50px;
  padding:130px 6% 150px;
  max-width:1480px;
  margin:0 auto;
  overflow:visible;
}

/* LEFT TEXT */

.about-content{
  order:1;
  max-width:620px;
  padding-right:0;
  color:#fff;
  text-align:left;
  position:relative;
  z-index:3;
}

/* RIGHT IMAGE */

.about-image-section > img{
  order:2;
  width:100%;
  max-width:760px;
  display:block;
  justify-self:start;
  border-radius:34px;
  object-fit:cover;
  transform:translateX(0) translateY(24px);
  border:1px solid rgba(70,130,255,.18);
  box-shadow:
    0 0 0 1px rgba(70,130,255,.10),
    0 0 55px rgba(0,110,255,.16),
    0 0 100px rgba(0,110,255,.08),
    0 50px 120px rgba(0,0,0,.55);
  transition:box-shadow .35s ease, transform .35s ease;
}

/* LABEL */

.about-label{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:14px;
  margin-bottom:22px;
  font-size:14px;
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#0b84ff;
}

.about-label::before,
.about-label::after{
  content:"";
  width:54px;
  height:1px;
  background:rgba(20,110,255,.55);
}

/* TITLE */

.about-content h2{
  margin:0 0 34px;
  font-size:clamp(64px,5.2vw,98px);
  line-height:.9;
  font-weight:900;
  letter-spacing:-.05em;
  color:#fff;
}

.about-content h2 span{
  background:linear-gradient(180deg,#8fb3ff 0%,#5e94ff 55%,#2f78ff 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  text-shadow:0 0 18px rgba(40,120,255,.08);
}

/* TEXT */

.about-content p{
  margin:0 0 30px;
  font-size:19px;
  line-height:1.7;
  color:rgba(255,255,255,.86);
}

/* ICONS */

.about-icons{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  margin-top:32px;
  padding-top:40px;
  border-top:1px solid rgba(255,255,255,.10);
}

.about-icon{
  text-align:center;
  padding:0 24px;
  border-right:1px solid rgba(255,255,255,.10);
}

.about-icon:last-child{
  border-right:0;
}

.icon-circle{
  display:flex;
  align-items:center;
  justify-content:center;
  width:88px;
  height:88px;
  margin:0 auto 18px;
  border:2px solid #0b84ff;
  border-radius:50%;
  color:#0b84ff;
  font-size:36px;
  font-weight:900;
  box-shadow:0 0 32px rgba(11,132,255,.24);
}

.about-icon strong{
  display:block;
  font-size:19px;
  line-height:1.1;
  font-weight:900;
  color:#fff;
}

.about-icon > span{
  display:block;
  margin-top:6px;
  font-size:14px;
  line-height:1.25;
  color:rgba(255,255,255,.72);
}

/* OLD BLOCKS OFF */

.about-points,
.about-ending{
  display:none;
}

/* MOBILE */

@media(max-width:1100px){
  .about-image-section{
    grid-template-columns:1fr;
    gap:54px;
    padding:90px 24px 100px;
  }

  .about-content{
    order:1;
    max-width:720px;
    margin:0 auto;
    text-align:center;
  }

  .about-label{
    justify-content:center;
  }

  .about-image-section > img{
    order:2;
    max-width:760px;
    justify-self:center;
    transform:none;
  }

  .about-icons{
    grid-template-columns:1fr;
    gap:28px;
  }

  .about-icon{
    border-right:0;
    padding:0;
  }

  .about-content h2{
    font-size:clamp(58px,15vw,96px);
  }
}
/* HOW IT WORKS */

.how-image-section{
  background:#050505;
  padding:40px 0 80px;
  margin-top:-80px;
  overflow:hidden;
}

.how-image{

  display:block;

  width:min(1400px,92vw);

  height:auto;

  margin:0 auto;

  transform:translateY(-40px);

  filter:
    drop-shadow(
      0 0 40px
      rgba(35,120,255,.08)
    );

  /* mocniejsze wygaszanie boków */

  -webkit-mask-image:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(0,0,0,.15) 8%,
      rgba(0,0,0,.55) 14%,
      black 28%,
      black 72%,
      rgba(0,0,0,.55) 86%,
      rgba(0,0,0,.15) 92%,
      transparent 100%
    );

  mask-image:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(0,0,0,.15) 8%,
      rgba(0,0,0,.55) 14%,
      black 28%,
      black 72%,
      rgba(0,0,0,.55) 86%,
      rgba(0,0,0,.15) 92%,
      transparent 100%
    );

}

.contact-section{

background:#050505;

padding:130px 6% 150px;

color:#fff;

position:relative;

margin-top:0;

}

.contact-left{
  width:min(860px,100%);
  margin:0 auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

.contact-label{

display:flex;

align-items:center;

justify-content:center;

gap:18px;

margin-bottom:18px;

font-size:14px;

font-weight:800;

letter-spacing:.14em;

text-transform:uppercase;

color:#0b84ff;

}

.contact-label::before,
.contact-label::after{

content:"";

width:90px;

height:1px;

background:

linear-gradient(
90deg,
transparent,
rgba(11,132,255,.55),
transparent
);

}

.contact-left h2{
  margin:0 0 26px;

  font-size:
  clamp(
  56px,
  5.6vw,
  92px
  );

  line-height:.92;

  font-weight:900;

  letter-spacing:-.05em;

  color:#fff;
}

.contact-text{
  max-width:620px;
  margin:0 auto 50px;
  font-size:18px;
  line-height:1.6;
  color:rgba(255,255,255,.72);
}

.contact-form{
  width:100%;
  max-width:760px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:24px;
}

.contact-field{
  display:flex;
  flex-direction:column;
  gap:10px;
  text-align:left;
}

.contact-field label{
  font-size:13px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(255,255,255,.72);
}

.contact-field input,
.contact-field select,
.contact-field textarea{
  width:100%;
  min-height:60px;
  padding:0 20px;
  border:1px solid rgba(0,132,255,.38);
  border-radius:14px;
  background:rgba(5,12,25,.82);
  color:#fff;
  font-size:16px;
  outline:none;
  box-shadow:
    inset 0 0 24px rgba(0,132,255,.05),
    0 0 24px rgba(0,132,255,.08);
}

.contact-field textarea{
  min-height:160px;
  padding:18px 20px;
  resize:vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder{
  color:rgba(255,255,255,.38);
}

.platform-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  margin-bottom:18px;
}

.add-platform{
  width:max-content;
  align-self:center;
  padding:14px 24px;
  border:1px solid rgba(0,132,255,.55);
  border-radius:12px;
  background:rgba(0,132,255,.08);
  color:#0b84ff;
  font-size:15px;
  font-weight:900;
  cursor:pointer;
}

.contact-submit{
  width:100%;
  min-height:66px;
  margin-top:10px;
  border:0;
  border-radius:14px;
  background:linear-gradient(90deg,#006dff,#168bff);
  color:#fff;
  font-size:17px;
  font-weight:900;
  letter-spacing:.04em;
  text-transform:uppercase;
  cursor:pointer;
  box-shadow:0 0 34px rgba(0,116,255,.42);
}

@media(max-width:760px){
  .contact-section{
    padding:120px 22px 120px;
  }

  .contact-left h2{
    font-size:clamp(58px,16vw,88px);
  }

  .platform-row{
    grid-template-columns:1fr;
  }
}

.how-section{
  background:#050505;
  padding:130px 6% 150px;
  color:#fff;
}

.how-inner{
  width:min(920px,100%);
  margin:0 auto;
  text-align:center;
}

.section-label{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  margin-bottom:22px;
  font-size:14px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#0b84ff;
}

.section-label::before,
.section-label::after{
  content:"";
  width:90px;
  height:1px;
  background:linear-gradient(
    90deg,
    transparent,
    rgba(11,132,255,.55),
    transparent
  );
}

.how-title{
  margin:0 0 44px;
  font-size:clamp(54px,5.8vw,92px);
  line-height:.92;
  font-weight:900;
  letter-spacing:-.055em;
  color:#fff;
}

.how-subtitle{

max-width:760px;

margin:18px auto 56px;

font-size:22px;

line-height:1.55;

font-weight:500;

text-align:center;

color:rgba(255,255,255,.68);

letter-spacing:-.02em;

}

.how-title span{
  color:#0b84ff;
}

.how-timeline{
  width:min(820px,100%);
  margin:0 auto;
  position:relative;
}

.how-timeline::before{
  content:"";
  position:absolute;
  left:150px;
  top:0;
  bottom:0;
  width:1px;
  background:linear-gradient(
    180deg,
    transparent,
    rgba(11,132,255,.22),
    transparent
  );
}

.how-step{
  display:grid;
  grid-template-columns:105px 26px 74px 1fr;
  align-items:center;
  gap:18px;
  padding:25px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
  text-align:left;
}

.how-step:last-child{
  border-bottom:0;
}

.how-number{
  font-size:58px;
  line-height:1;
  font-weight:900;
  letter-spacing:-.06em;
  color:rgba(45,82,150,.42);
}

.how-dot{
  width:12px;
  height:12px;
  border-radius:50%;
  background:#0b84ff;
  box-shadow:0 0 22px rgba(11,132,255,.65);
  z-index:2;
}

.how-icon{
  font-size:42px;
  line-height:1;
  color:#0b84ff;
  text-align:center;
  text-shadow:0 0 24px rgba(11,132,255,.35);
}

.how-copy h3{
  margin:0 0 8px;
  font-size:28px;
  line-height:1;
  font-weight:900;
  letter-spacing:-.03em;
  color:#fff;
}

.how-copy p{
  margin:0;
  max-width:620px;
  font-size:18px;
  line-height:1.35;
  color:rgba(255,255,255,.78);
}

.contact-section{
  background:#050505;
  padding:35px 6% 160px;
  color:#fff;
  position:relative;
  margin-top:0;
}

@media(max-width:760px){

  .how-section{
    padding:80px 22px 30px;
  }

  .how-title{
    font-size:clamp(48px,13vw,72px);
    margin-bottom:46px;
  }

  .how-timeline::before{
    left:77px;
  }

  .how-step{
    grid-template-columns:62px 18px 52px 1fr;
    gap:12px;
    padding:22px 0;
  }

  .how-number{
    font-size:40px;
  }

  .how-icon{
    font-size:30px;
  }

  .how-copy h3{
    font-size:22px;
  }

  .how-copy p{
    font-size:15px;
  }

}

.proof-title{

position:relative;

background:#050505;

text-align:center;

padding:60px 20px 42px;

margin-top:-35px;

overflow:hidden;

box-shadow:none;

border:0;

}

/* ========================= */
/* CREATOR TRANSPARENCY */
/* ========================= */

.transparency-section{
  background:#050505;
  padding:130px 6% 150px;
  color:#fff;
}

.transparency-header{
  max-width:980px;
  margin:0 auto 54px;
  text-align:center;
}

.transparency-label{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  margin-bottom:18px;
  font-size:14px;
  font-weight:900;
  letter-spacing:.16em;
  color:#0b84ff;
  text-transform:uppercase;
}

.transparency-label::before,
.transparency-label::after{
  content:"";
  width:70px;
  height:1px;
  background:rgba(11,132,255,.55);
}

.transparency-header h2{
  margin:0 0 22px;
  font-size:clamp(56px,6vw,96px);
  line-height:.92;
  font-weight:900;
  letter-spacing:-.055em;
}

.transparency-header h2 span{
  background:linear-gradient(180deg,#4da1ff,#006dff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.transparency-header p{
  max-width:760px;
  margin:0 auto;
  font-size:20px;
  line-height:1.55;
  color:rgba(255,255,255,.72);
}

.transparency-dashboard{
  max-width:1120px;
  margin:0 auto;
  padding:20px;
  border:1px solid rgba(70,130,255,.16);
  border-radius:32px;
  background:
    radial-gradient(circle at 50% 0%, rgba(0,110,255,.10), transparent 35%),
    rgba(6,10,18,.72);
  box-shadow:
    0 0 0 1px rgba(70,130,255,.06),
    0 0 80px rgba(0,110,255,.10),
    0 50px 120px rgba(0,0,0,.45);
}

.transparency-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-bottom:24px;
}

.transparency-stat{
  display:flex;
  align-items:center;
  gap:18px;
  padding:18px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;
  background:rgba(255,255,255,.035);
}

.transparency-stat span{
  width:58px;
  height:58px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  color:#0b84ff;
  background:rgba(0,110,255,.10);
  font-size:28px;
}

.transparency-stat strong{
  display:block;
  font-size:36px;
  line-height:1;
  font-weight:900;
}

.transparency-stat p{
  margin:4px 0 0;
  font-size:15px;
  color:rgba(255,255,255,.62);
}

.intro-table{
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  border-radius:22px;
  background:rgba(0,0,0,.28);
}

.intro-row{
  display:grid;
  grid-template-columns:1.2fr 1.4fr 1fr 1fr;
  gap:20px;
  align-items:center;
  padding:16px 20px;
  border-bottom:1px solid rgba(255,255,255,.07);
  font-size:16px;
  color:rgba(255,255,255,.82);
}

.intro-row:last-child{
  border-bottom:0;
}

.intro-head{
  color:rgba(255,255,255,.46);
  font-size:13px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.status{
  width:max-content;
  padding:9px 14px;
  border-radius:999px;
  font-size:14px;
  font-weight:900;
}

.status.green{
  color:#5dff9c;
  background:rgba(40,255,120,.10);
}

.status.blue{
  color:#62aaff;
  background:rgba(60,140,255,.12);
}

.status.purple{
  color:#9b7cff;
  background:rgba(120,80,255,.12);
}

.status.gold{
  color:#ffd36a;
  background:rgba(255,180,40,.12);
}

.certificate-box{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:24px;
  margin-top:24px;
  padding:18px 22px;
  border:1px solid rgba(120,90,255,.28);
  border-radius:22px;
  background:rgba(80,60,255,.08);
}

.certificate-icon{
  width:64px;
  height:64px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  color:#8a6cff;
  background:rgba(120,90,255,.14);
  font-size:30px;
}

.certificate-box h3{
  margin:0 0 6px;
  font-size:22px;
  font-weight:900;
}

.certificate-box p{
  margin:0;
  color:rgba(255,255,255,.66);
  line-height:1.45;
}

.certificate-box button{
  min-height:54px;
  padding:0 28px;
  border:0;
  border-radius:14px;
  background:linear-gradient(90deg,#5a32ff,#0b84ff);
  color:#fff;
  font-size:15px;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 0 34px rgba(70,110,255,.32);
}

.privacy-note{
  margin-top:26px;
  text-align:center;
  font-size:15px;
  color:rgba(255,255,255,.62);
}

@media(max-width:980px){
  .transparency-stats{
    grid-template-columns:1fr 1fr;
  }

  .intro-row{
    grid-template-columns:1fr;
    gap:8px;
  }

  .certificate-box{
    grid-template-columns:1fr;
    text-align:center;
  }

  .certificate-icon{
    margin:0 auto;
  }
}

@media(max-width:600px){
  .transparency-stats{
    grid-template-columns:1fr;
  }

  .transparency-header h2{
    font-size:clamp(46px,14vw,70px);
  }
}

/* FINAL OVERRIDE — PROOF TITLE POSITION */

.proof-title{
  padding-top:120px !important;
  padding-bottom:52px !important;
  margin-top:0 !important;
  background:#050505 !important;
  text-align:center !important;
  position:relative !important;
  overflow:hidden !important;
}

.proof-title p{
  margin-top:18px !important;
  margin-bottom:8px !important;
}

/* ===================================== */
/* EMAIL PROOF — GMAIL STYLE */
/* ===================================== */

.email-proof-box{
  width:min(1180px, 100%);
  margin:60px auto 0;

  display:grid;
  grid-template-columns:minmax(0, 630px) 90px 280px;
  align-items:center;
  justify-content:center;
  gap:18px;
}


/* ===================================== */
/* LEFT: INCOMING EMAIL CARD */
/* ===================================== */

.email-message-card{
  position:relative;
  width:100%;
  padding:22px 26px 28px;
  overflow:hidden;

  border:1px solid rgba(11,132,255,.42);
  border-radius:22px;

  background:
    radial-gradient(
      circle at 20% 0%,
      rgba(11,132,255,.12),
      transparent 38%
    ),
    linear-gradient(
      180deg,
      rgba(5,15,29,.98),
      rgba(2,8,16,.99)
    );

  box-shadow:
    0 24px 70px rgba(0,0,0,.42),
    0 0 34px rgba(11,132,255,.11),
    inset 0 1px 0 rgba(255,255,255,.025);

  text-align:left;
}

.email-message-card::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;

  background:
    linear-gradient(
      110deg,
      rgba(255,255,255,.018),
      transparent 34%
    );
}


/* ===================================== */
/* EMAIL TOP BAR */
/* ===================================== */

.email-head{
  position:relative;
  z-index:1;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;

  margin-bottom:24px;
}

.email-inbox{
  display:flex;
  align-items:center;
  gap:7px;

  color:#168bff;
  font-size:13px;
  line-height:1;
  font-weight:800;
}

.email-inbox-icon{
  font-size:13px;
}

.email-icons{
  display:flex;
  align-items:center;
  gap:9px;

  color:rgba(255,255,255,.43);
  font-size:11px;
  line-height:1;
  white-space:nowrap;
}


/* ===================================== */
/* EMAIL SUBJECT */
/* ===================================== */

.gmail-subject-row{
  position:relative;
  z-index:1;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;

  margin-bottom:22px;
  padding:0 2px;
}

.gmail-subject-row h3{
  margin:0;
  padding:0;
  border:0;

  color:#fff;
  font-size:28px;
  line-height:1.2;
  font-weight:800;
  letter-spacing:-.5px;
  text-align:left;
}

.gmail-subject-actions{
  display:flex;
  align-items:center;
  gap:12px;

  color:rgba(255,255,255,.38);
  font-size:13px;
  line-height:1;
}


/* ===================================== */
/* EMAIL SENDER */
/* ===================================== */

.email-brand{
  position:relative;
  z-index:1;

  display:flex;
  align-items:flex-start;
  gap:12px;

  margin-bottom:25px;
}

.brand-avatar{
  width:42px;
  height:42px;
  flex:0 0 42px;

  display:flex;
  align-items:center;
  justify-content:center;

  border:1px solid rgba(255,255,255,.27);
  border-radius:50%;

  background:
    linear-gradient(
      145deg,
      rgba(27,61,105,.95),
      rgba(7,18,34,.96)
    );

  color:#fff;
  font-size:15px;
  font-weight:900;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 8px 22px rgba(0,0,0,.23);
}

.email-sender{
  min-width:0;
  flex:1;
}

.email-sender-top{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:7px;
}

.email-sender-top strong{
  color:#fff;
  font-size:16px;
  line-height:1.3;
  font-weight:800;
}

.email-sender-top span{
  color:rgba(255,255,255,.52);
  font-size:13px;
  line-height:1.3;
}

.email-sender small{
  display:block;
  margin-top:4px;

  color:rgba(255,255,255,.48);
  font-size:12px;
  line-height:1.3;
}

.sender-arrow{
  margin-left:3px;
}

.email-sender-actions{
  display:flex;
  align-items:center;
  gap:10px;

  padding-top:2px;

  color:rgba(255,255,255,.4);
  font-size:13px;
  line-height:1;
}


/* ===================================== */
/* EMAIL BODY */
/* ===================================== */

.gmail-email-body{
  position:relative;
  z-index:1;

  padding-left:54px;
  padding-right:8px;
}

.gmail-email-body p{
  margin:0 0 22px;

  color:rgba(255,255,255,.84);
  font-size:16px;
  line-height:1.72;
  text-align:left;
}

.gmail-email-body strong{
  color:#fff;
  font-weight:750;
}


/* ===================================== */
/* EMAIL INFORMATION BOX */
/* ===================================== */

.gmail-details-box{
  width:100%;
  max-width:none;
  margin:28px 0;
  overflow:hidden;

  border:1px solid rgba(255,255,255,.12);
  border-radius:14px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.032),
      rgba(255,255,255,.018)
    );

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.025);
}

.gmail-detail-section{
  padding:20px 22px;
}

.gmail-detail-label{
  display:block;
  margin-bottom:12px;

  color:rgba(255,255,255,.48);
  font-size:12px;
  line-height:1;
  font-weight:800;
  letter-spacing:.8px;
  text-transform:uppercase;
}
.gmail-subject-example{
  display:block;

  color:#fff;
  font-size:16px;
  line-height:1.5;
  font-weight:750;
}

.gmail-detail-divider{
  height:1px;
  background:rgba(255,255,255,.08);
}


/* ===================================== */
/* EMAIL REQUIREMENTS LIST */
/* ===================================== */

.gmail-requirements{
  margin:0;
  padding-left:18px;
}

.gmail-requirements li{
  margin:0 0 14px;
  padding-left:5px;

  color:rgba(255,255,255,.8);
  font-size:15px;
  line-height:1.6;
}

.gmail-requirements li:last-child{
  margin-bottom:0;
}

.gmail-requirements li::marker{
  color:#168bff;
}

.gmail-requirements li span{
  display:block;
  margin-top:3px;

  color:rgba(255,255,255,.48);
  font-size:13px;
  line-height:1.45;
}


/* ===================================== */
/* INLINE BRAND EMAIL */
/* ===================================== */

.gmail-inline-mail{
  color:#2998ff;
  font-weight:800;
  text-decoration:none;
}

.gmail-inline-mail:hover{
  text-decoration:underline;
}


/* ===================================== */
/* EMAIL SIGNATURE */
/* ===================================== */

.gmail-signature{
  margin-top:26px !important;
  margin-bottom:0 !important;
}


/* ===================================== */
/* REPLY / FORWARD BUTTONS */
/* ===================================== */

.email-buttons{
  position:relative;
  z-index:1;

  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;

  margin-top:27px;
  padding-left:54px;
}

.gmail-reply-button,
.gmail-forward-button{
  min-height:40px;

  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;

  padding:0 19px;

  border:1px solid rgba(255,255,255,.16);
  border-radius:20px;

  background:transparent;
  color:rgba(255,255,255,.82);

  font-family:inherit;
  font-size:12px;
  line-height:1;
  font-weight:700;

  text-decoration:none;
  cursor:pointer;

  transition:
    transform .2s ease,
    background .2s ease,
    border-color .2s ease,
    color .2s ease;
}

button.gmail-forward-button{
  appearance:none;
}

.gmail-reply-button:hover,
.gmail-forward-button:hover{
  transform:translateY(-1px);
  border-color:rgba(255,255,255,.27);
  background:rgba(255,255,255,.055);
  color:#fff;
}


/* ===================================== */
/* CONNECTING ARROW */
/* ===================================== */

.email-arrow{
  position:relative;
  width:90px;
  height:330px;
}

.email-arrow::before{
  content:"";
  position:absolute;

  top:168px;
  left:-9px;

  width:125px;
  height:125px;

  background:
    url("data:image/svg+xml,%3Csvg width='130' height='130' viewBox='0 0 130 130' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 105C54 105 47 55 72 40C88 30 101 30 115 30' stroke='%230B84FF' stroke-width='4' stroke-linecap='round' stroke-dasharray='4 10'/%3E%3Cpath d='M115 30L98 20' stroke='%230B84FF' stroke-width='4' stroke-linecap='round'/%3E%3Cpath d='M115 30L99 41' stroke='%230B84FF' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E")
    center / contain no-repeat;

  filter:
    drop-shadow(0 0 8px rgba(11,132,255,.85))
    drop-shadow(0 0 18px rgba(11,132,255,.4));
}

.email-arrow-dot{
  position:absolute;

  left:-4px;
  top:266px;

  width:14px;
  height:14px;

  border-radius:50%;
  background:#0b84ff;

  box-shadow:
    0 0 16px rgba(11,132,255,.95),
    0 0 34px rgba(11,132,255,.52);
}


/* ===================================== */
/* RIGHT PANEL — HOW BRANDS CONNECT */
/* ===================================== */

.email-side-panel{
  width:100%;
  min-width:340px;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;

  padding:10px 0;
  text-align:center;
}


/* MAIN TITLE */

.email-side-title{
  margin:0 0 32px !important;
  color:#ff0000 !important;
  font-size:30px !important;
  line-height:1 !important;
  font-weight:900 !important;
  letter-spacing:3px !important;
  text-transform:uppercase !important;
}

/* CONNECTION CARD */

.side-step{
  width:100%;
  max-width:340px;

  display:flex;
  flex-direction:column;
  align-items:center;

  padding:23px 20px 21px;

  border:1px solid rgba(255,255,255,.09);
  border-radius:18px;

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(11,132,255,.09),
      transparent 48%
    ),
    rgba(255,255,255,.022);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.025),
    0 16px 40px rgba(0,0,0,.18);
}


/* SECOND CARD — CONNECTED TO EXAMPLE EMAIL */

.side-step.creator-starts{
  position:relative;

  border-color:rgba(11,132,255,.34);

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(11,132,255,.15),
      transparent 52%
    ),
    linear-gradient(
      180deg,
      rgba(11,132,255,.055),
      rgba(255,255,255,.018)
    );

  box-shadow:
    0 0 30px rgba(11,132,255,.08),
    inset 0 1px 0 rgba(255,255,255,.03);
}


/* ICON */

.side-icon{
  width:58px;
  height:58px;
  flex:0 0 58px;

  display:flex;
  align-items:center;
  justify-content:center;

  margin-bottom:15px;

  border:1px solid rgba(11,132,255,.52);
  border-radius:16px;

  background:rgba(11,132,255,.09);

  color:#168bff;
  font-size:23px;
  line-height:1;

  box-shadow:
    0 0 24px rgba(11,132,255,.14),
    inset 0 1px 0 rgba(255,255,255,.025);
}


/* HEADINGS */

.email-side-panel h3{
  margin:0 0 9px;

  color:#fff;
  font-size:21px;
  line-height:1.18;
  font-weight:900;
  letter-spacing:-.35px;
}


/* DESCRIPTION */

.email-side-panel p{
  width:100%;
  max-width:245px;
  margin:0;

  color:rgba(255,255,255,.62);
  font-size:13px;
  line-height:1.55;
}


/* ===================================== */
/* OR DIVIDER */
/* ===================================== */

.or-line{
  width:230px;

  display:flex;
  align-items:center;
  justify-content:center;
  gap:13px;

  margin:18px 0;
}

.or-line span{
  flex:1;
  height:1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(11,132,255,.4)
    );
}

.or-line span:last-child{
  background:
    linear-gradient(
      90deg,
      rgba(11,132,255,.4),
      transparent
    );
}

.or-line strong{
  color:rgba(255,255,255,.42);
  font-size:10px;
  line-height:1;
  font-weight:900;
  letter-spacing:1.2px;
}


/* ===================================== */
/* EMAIL → YOU CONTACT THE BRAND */
/* ===================================== */

.creator-email-connection{
  position:absolute;

  left:-145px;
  top:50%;

  width:150px;
  height:120px;

  transform:translateY(-50%);

  pointer-events:none;
  z-index:3;
}

.creator-email-connection svg{
  position:absolute;
  inset:0;

  width:100%;
  height:100%;

  overflow:visible;
}

.creator-email-path{
  fill:none;
  stroke:#0b84ff;
  stroke-width:3;
  stroke-linecap:round;
  stroke-dasharray:6 8;

  filter:drop-shadow(0 0 6px rgba(11,132,255,.45));
}

.creator-email-arrowhead{
  fill:none;
  stroke:#0b84ff;
  stroke-width:3;
  stroke-linecap:round;
  stroke-linejoin:round;

  filter:drop-shadow(0 0 6px rgba(11,132,255,.45));
}

.creator-email-dot{
  position:absolute;

  left:4px;
  bottom:9px;

  width:12px;
  height:12px;

  border-radius:50%;
  background:#0b84ff;

  box-shadow:
    0 0 8px rgba(11,132,255,.9),
    0 0 18px rgba(11,132,255,.5);

  z-index:2;
}


/* ===================================== */
/* PRIVACY BOX */
/* ===================================== */

.privacy-box{
  width:100%;
  max-width:320px;

  display:flex;
  align-items:flex-start;
  gap:12px;

  margin-top:24px;
  padding:17px 18px;

  border:1px solid rgba(255,255,255,.1);
  border-radius:16px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.035),
      rgba(255,255,255,.018)
    );

  text-align:left;
}

.privacy-icon{
  width:29px;
  height:29px;
  flex:0 0 29px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:9px;
  background:rgba(20,180,90,.13);

  color:#4dff96;
  font-size:14px;
  font-weight:900;
}

.privacy-box strong{
  display:block;
  margin-bottom:6px;

  color:#fff;
  font-size:15px;
  line-height:1.3;
  font-weight:850;
}

.privacy-box p{
  max-width:none;
  margin:0;

  color:rgba(255,255,255,.56);
  font-size:12px;
  line-height:1.5;
}


/* ===================================== */
/* TABLET */
/* ===================================== */

@media(max-width:1150px){

  .email-proof-box{
    width:min(720px, 100%);
    grid-template-columns:1fr;
    gap:0;
  }

  .email-arrow,
  .creator-email-connection{
    display:none;
  }

  .email-side-panel{
    min-width:0;
    margin-top:38px;
    padding:32px 24px;

    border:1px solid rgba(255,255,255,.07);
    border-radius:20px;

    background:rgba(255,255,255,.02);
  }

  .privacy-box{
    max-width:360px;
  }
}


/* ===================================== */
/* MOBILE */
/* ===================================== */

@media(max-width:700px){

  .email-proof-box{
    margin-top:42px;
  }

  .email-message-card{
    padding:18px 16px 22px;
    border-radius:18px;
  }

  .email-head{
    align-items:flex-start;
    margin-bottom:21px;
  }

  .email-icons{
    gap:6px;
  }

  .email-icons span:first-child{
    display:none;
  }

  .gmail-subject-row{
    align-items:flex-start;
    margin-bottom:20px;
  }

  .gmail-subject-row h3{
    font-size:19px;
  }

  .email-brand{
    margin-bottom:22px;
  }

  .email-sender-top{
    align-items:flex-start;
    flex-direction:column;
    gap:2px;
  }

  .email-sender-actions{
    display:none;
  }

  .gmail-email-body{
    padding-left:0;
    padding-right:0;
  }

  .gmail-details-box{
    max-width:none;
  }

  .email-buttons{
    padding-left:0;
  }

  .email-side-panel{
    padding:28px 18px;
  }

  .side-icon{
    width:62px;
    height:62px;
    flex-basis:62px;
    font-size:24px;
  }

  .email-side-panel h3{
    font-size:20px;
  }

  .email-side-panel p{
    font-size:13px;
  }

  .privacy-box{
    max-width:100%;
  }
}


/* ===================================== */
/* SMALL MOBILE */
/* ===================================== */

@media(max-width:420px){

  .email-message-card{
    padding-left:13px;
    padding-right:13px;
  }

  .brand-avatar{
    width:39px;
    height:39px;
    flex-basis:39px;
    font-size:14px;
  }

  .gmail-subject-row h3{
    font-size:18px;
  }

  .gmail-detail-section{
    padding:14px;
  }

  .gmail-reply-button,
  .gmail-forward-button{
    padding:0 15px;
  }

  .email-buttons{
    gap:8px;
  }

  .or-line{
    width:210px;
  }
}
/* ========================= */
/* SMOKE BAND — FINAL POSITION */
/* ========================= */

.proof-title{
  position:relative !important;
  overflow:visible !important;
  background:#050505 !important;
  z-index:5 !important;
}

.proof-title::before{
  content:"" !important;
  position:absolute !important;

  left:50% !important;
  top:25% !important;

  transform:translate(-50%,-50%) !important;
width:100vw !important;
height:380px !important;

background:url("./smoke.png") center center / 120% auto no-repeat !important;

  opacity:.50 !important;

  filter:
    brightness(.82)
    contrast(1.28)
    blur(1px) !important;

  mix-blend-mode:screen !important;

  pointer-events:none !important;
  z-index:1 !important;

  /* wygaszenie boków i góry/dół */
  -webkit-mask-image:
    radial-gradient(
      ellipse at center,
      black 0%,
      black 48%,
      transparent 78%
    );
  mask-image:
    radial-gradient(
      ellipse at center,
      black 0%,
      black 48%,
      transparent 78%
    );
}

.proof-title > *{
  position:relative !important;
  z-index:5 !important;
  transform:translateY(-55px);
}

/* FINAL SPACING FIX */

.contact-section{
  padding:130px 6% 150px !important;
  margin-top:0 !important;
}

.transparency-section{
  padding:130px 6% 150px !important;
}

/* ===================================== */
/* ALTERNATIVE CONTRACT PROCESS */
/* ===================================== */

.contract-alternative{
  width:100%;
  max-width:1180px;

  margin:90px auto 0;
  padding:0 20px;

  text-align:center;
  box-sizing:border-box;
}

/* SMALL LABEL */

.contract-eyebrow{
  display:inline-block;
  margin-bottom:18px;

  color:#0b84ff;
  font-size:12px;
  line-height:1;
  font-weight:900;
  letter-spacing:1.6px;
  text-transform:uppercase;
}


/* LARGE HEADING */

.contract-alternative-heading h3{
  margin:0;

  color:#fff;
  font-size:clamp(38px, 5vw, 64px);
  line-height:1.02;
  font-weight:900;
  letter-spacing:-2px;
}

.contract-alternative-heading h3 span{
  color:#0b84ff;
}


/* ===================================== */
/* MAIN CARD */
/* ===================================== */

.contract-alternative-card{
  position:relative;

  width:100%;
  max-width:1100px;

  margin:42px auto 0;
  padding:34px 38px;

  display:grid;
  grid-template-columns:72px minmax(0, 1fr);
  align-items:start;
  column-gap:28px;

  overflow:hidden;
  box-sizing:border-box;

  border:1px solid rgba(11,132,255,.34);
  border-radius:22px;

  background:
    radial-gradient(
      circle at 8% 10%,
      rgba(11,132,255,.13),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      rgba(5,15,29,.96),
      rgba(2,8,16,.98)
    );

  box-shadow:
    0 24px 70px rgba(0,0,0,.3),
    0 0 35px rgba(11,132,255,.08);

  text-align:left;
}


/* TOP GLOWING LINE */

.contract-alternative-card::before{
  content:"";

  position:absolute;
  top:0;
  left:0;

  width:100%;
  height:1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(11,132,255,.75),
      transparent
    );
}


/* ===================================== */
/* SHIELD ICON */
/* ===================================== */

.contract-alternative-icon{
  width:70px;
  height:70px;

  display:flex;
  align-items:center;
  justify-content:center;

  border:1px solid rgba(11,132,255,.45);
  border-radius:20px;

  background:rgba(11,132,255,.09);
  color:#168bff;

  box-shadow:
    0 0 25px rgba(11,132,255,.15),
    inset 0 1px 0 rgba(255,255,255,.03);
}

.contract-alternative-icon svg{
  width:34px;
  height:34px;
}


/* ===================================== */
/* TEXT CONTENT */
/* ===================================== */

.contract-alternative-content{
  min-width:0;
}

.contract-alternative-content > p{
  margin:0 0 16px;

  color:rgba(255,255,255,.7);
  font-size:16px;
  line-height:1.7;
}

.contract-alternative-content > p:last-of-type{
  margin-bottom:0;
}

.contract-alternative-content .contract-alternative-intro{
  color:#fff;
  font-size:20px;
  line-height:1.5;
  font-weight:800;
}


/* ===================================== */
/* TRANSPARENCY NOTE */
/* ===================================== */

.contract-transparency-note{
  grid-column:2 / 3;

  width:100%;

  display:flex;
  align-items:flex-start;
  gap:12px;

  margin-top:25px;
  padding:17px 18px;

  box-sizing:border-box;

  border:1px solid rgba(76,255,151,.16);
  border-radius:14px;

  background:rgba(24,180,90,.075);
}

.contract-note-icon{
  width:27px;
  height:27px;
  flex:0 0 27px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:8px;
  background:rgba(76,255,151,.12);

  color:#4dff97;
  font-size:13px;
  font-weight:900;
}

.contract-transparency-note p{
  margin:0;

  color:rgba(255,255,255,.68);
  font-size:14px;
  line-height:1.55;
  font-weight:500;
}

.contract-transparency-note p strong{
  color:#fff;
  font-size:15px;
  font-weight:900;
}

.contract-transparency-note p span{
  color:rgba(255,255,255,.68);
  font-weight:500;
}


/* ===================================== */
/* TABLET */
/* ===================================== */

@media(max-width:800px){

  .contract-alternative{
    margin-top:70px;
  }

  .contract-alternative-heading h3{
    letter-spacing:-1.2px;
  }

  .contract-alternative-card{
    padding:27px 24px;

    grid-template-columns:58px minmax(0, 1fr);
    column-gap:18px;
  }

  .contract-alternative-icon{
    width:58px;
    height:58px;
    border-radius:16px;
  }

  .contract-alternative-icon svg{
    width:29px;
    height:29px;
  }

  .contract-alternative-content .contract-alternative-intro{
    font-size:18px;
  }

  .contract-alternative-content > p{
    font-size:15px;
  }

  .contract-transparency-note{
    grid-column:2 / 3;
  }
}


/* ===================================== */
/* MOBILE */
/* ===================================== */

@media(max-width:560px){

  .contract-alternative{
    margin-top:58px;
    padding:0 14px;
  }

  .contract-eyebrow{
    margin-bottom:14px;
    font-size:10px;
  }

  .contract-alternative-heading h3{
    font-size:36px;
    letter-spacing:-1px;
  }

  .contract-alternative-card{
    margin-top:30px;
    padding:24px 18px;

    grid-template-columns:1fr;
    row-gap:18px;
  }

  .contract-alternative-icon{
    width:54px;
    height:54px;
  }

  .contract-alternative-content .contract-alternative-intro{
    font-size:17px;
  }

  .contract-alternative-content > p{
    font-size:14px;
    line-height:1.65;
  }

  .contract-transparency-note{
    grid-column:1 / -1;

    margin-top:2px;
    padding:15px;
  }

  .contract-transparency-note p{
    font-size:13px;
  }
}

.contract-alternative-section{
  width:100%;
  padding:70px 6% 120px;
  background:#050505;
  color:#fff;
  box-sizing:border-box;
}

/* ===================================== */
/* FINAL SECTION SPACING */
/* ===================================== */

.how-section{
  padding-bottom:30px;
}

.contract-alternative-section{
  padding-top:45px;
}

/* ===================================== */
/* REMOVE GAP BETWEEN SECTIONS */
/* ===================================== */

.email-proof-box{
  margin-bottom:0 !important;
  padding-bottom:0 !important;
  min-height:0 !important;
  height:auto !important;
}

.how-section{
  padding-bottom:30px !important;
}

.contract-alternative-section{
  margin-top:0 !important;
  padding-top:35px !important;
}

.contract-alternative{
  margin-top:0 !important;
  padding-top:0 !important;
}

.contract-alternative-heading{
  margin-top:0 !important;
}

/* ===================================================== */
/* HOW BRANDS CONNECT - CLEAN FINAL */
/* ===================================================== */

.email-side-panel{
  width:370px !important;
}

/* TITLE */

.email-side-title{
  position:relative;
  margin:0 0 30px;
  text-align:center;
  font-size:28px !important;
  font-weight:900;
  line-height:1;
  letter-spacing:-.025em;
  color:#fff !important;
  text-transform:none !important;
}

.email-side-title span{
  display:block;
  margin-bottom:8px;
  font-size:13px !important;
  font-weight:800;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:#0b84ff !important;
}

.email-side-title::before,
.email-side-title::after{
  content:"";
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  width:76px;
  height:1px;
  background:linear-gradient(
    90deg,
    transparent,
    rgba(11,132,255,.55),
    transparent
  );
}

.email-side-title::before{
  top:-14px;
}

.email-side-title::after{
  bottom:-14px;
}

/* CARDS */

.side-step{
  padding:23px 22px !important;
  border-radius:20px !important;
}

.side-icon{
  width:56px !important;
  height:56px !important;
  margin:0 auto 17px !important;
}

.side-icon span{
  font-size:22px !important;
}

.side-step h3{
  margin:0 0 8px !important;
  font-size:18px !important;
  line-height:1.2;
}

.side-step p{
  margin:0 !important;
  font-size:14px !important;
  line-height:1.5;
}

/* OR */

.or-line{
  margin:18px 0 !important;
}

.or-line strong{
  font-size:14px !important;
  font-weight:900;
  letter-spacing:.16em;
  color:rgba(255,255,255,.9) !important;
}

.or-line span{
  flex:1;
  max-width:82px;
  height:1px;
  background:linear-gradient(
    90deg,
    transparent,
    rgba(11,132,255,.38),
    transparent
  );
}

/* PRIVACY BOX */

.privacy-box{
  padding:17px 18px !important;
}

.privacy-box strong{
  font-size:16px !important;
}

.privacy-box p{
  margin-top:5px !important;
  font-size:13px !important;
  line-height:1.45;
}

/* ===================================== */
/* LIFT SMOKE SECTION OVER HERO */
/* ===================================== */

.proof-title{
  position:relative !important;
  overflow:visible !important;
  background:#050505 !important;
  z-index:5 !important;
}

.proof-title::before{
  content:"" !important;
  position:absolute !important;

  left:50% !important;
  top:25% !important;

  transform:translate(-50%,-50%) !important;

  width:100vw !important;
  height:380px !important;

  background:url("./smoke.png") center center / 120% auto no-repeat !important;

  opacity:.50 !important;

  filter:
    brightness(.82)
    contrast(1.28)
    blur(1px) !important;

  mix-blend-mode:screen !important;

  pointer-events:none !important;
  z-index:1 !important;

  -webkit-mask-image:
    radial-gradient(
      ellipse at center,
      black 0%,
      black 48%,
      transparent 78%
    );

  mask-image:
    radial-gradient(
      ellipse at center,
      black 0%,
      black 48%,
      transparent 78%
    );
}

.proof-title > *{
  position:relative !important;
  z-index:5 !important;
  transform:translateY(-55px);
}

/* ===================================== */
/* ALTERNATIVE SECTION SPACING */
/* ===================================== */

.contract-alternative-section{
    padding-top:165px !important;
}

/* ===================================== */
/* ALTERNATIVE LABEL */
/* ===================================== */

.contract-eyebrow{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;

  margin:0 auto 24px;

  font-size:15px;
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;

  color:#0b84ff;
}

.contract-eyebrow::before,
.contract-eyebrow::after{
  content:"";

  width:72px;
  height:1px;

  background:linear-gradient(
      90deg,
      transparent,
      rgba(11,132,255,.55),
      transparent
  );
}

/* ===================================== */
/* CREATOR APPLICATION FORM STATUS */
/* ===================================== */

.contact-form-status{
  display:none;
  margin-top:22px;
  padding:16px 20px;

  border:1px solid transparent;
  border-radius:12px;

  font-size:15px;
  font-weight:600;
  line-height:1.6;
  text-align:center;
}

.contact-form-status.is-success{
  display:block;

  color:#8ff0ba;
  background:rgba(31, 199, 116, .08);
  border-color:rgba(31, 199, 116, .35);
}

.contact-form-status.is-error{
  display:block;

  color:#ff9a9a;
  background:rgba(255, 70, 70, .08);
  border-color:rgba(255, 70, 70, .35);
}

.contact-submit:disabled{
  cursor:not-allowed;
  opacity:.65;
}


/* =========================================================
   PRODUCTION RESPONSIVE OVERRIDES — 2026-07-22
   These rules intentionally sit at the end of the original
   stylesheet so the established desktop design is preserved.
   ========================================================= */

html{
  scroll-behavior:smooth;
  overflow-x:hidden;
  background:#050505;
}

body{
  width:100%;
  min-width:0;
  overflow-x:hidden;
  -webkit-text-size-adjust:100%;
  text-rendering:optimizeLegibility;
}

img,svg{
  max-width:100%;
}

button,input,select,textarea{
  font:inherit;
}

button,a,select{
  -webkit-tap-highlight-color:transparent;
}

#proofs,
#how-it-works,
#contact{
  scroll-margin-top:32px;
}

.contact-field input,
.contact-field select,
.contact-field textarea{
  max-width:100%;
  transition:border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus{
  border-color:rgba(41,152,255,.9);
  box-shadow:0 0 0 4px rgba(11,132,255,.12), 0 0 28px rgba(11,132,255,.12);
}

.brand:focus-visible,
.proof-link:focus-visible,
.campaign-link:focus-visible,
.gmail-inline-mail:focus-visible,
.gmail-reply-button:focus-visible,
.add-platform:focus-visible,
.contact-submit:focus-visible,
.gmail-forward-button:focus-visible{
  outline:3px solid rgba(79,159,255,.95);
  outline-offset:4px;
}

.contact-submit,
.add-platform,
.gmail-forward-button,
.gmail-reply-button{
  touch-action:manipulation;
}

/* Very large monitors: keep the composition intentional, not stretched. */
@media (min-width:1921px){
  .hero-content{
    width:min(1760px,100%);
    margin:0 auto;
    padding-left:clamp(72px,5vw,110px);
  }

  .hero{
    background-size:min(74%,1500px) auto;
  }

  .proof-wrapper,
  .campaign-wrapper{
    max-width:1500px;
  }
}

/* Laptops and smaller desktop screens. */
@media (max-width:1440px){
  .hero{
    min-height:clamp(760px,100svh,980px);
    background-size:88% auto;
  }

  .hero-content{
    padding-top:150px;
    padding-left:clamp(38px,4.2vw,64px);
  }

  .left{
    max-width:620px;
  }

  .nav{
    left:clamp(24px,3.5vw,50px);
    top:clamp(20px,2.4vw,34px);
  }

  .hero-mug{
    right:clamp(120px,15vw,230px);
    width:clamp(300px,25vw,360px);
  }

  .about-image-section{
    grid-template-columns:minmax(500px,620px) minmax(500px,650px);
    column-gap:clamp(34px,4vw,64px);
    padding-left:4.5%;
    padding-right:4.5%;
  }
}

/* Compact desktops and landscape tablets. */
@media (max-width:1200px){
  .hero{
    background-size:cover;
    background-position:center top;
  }

  .overlay{
    background:
      radial-gradient(circle at 18% 35%,rgba(0,88,255,.18),transparent 34%),
      linear-gradient(90deg,rgba(0,0,0,.95) 0%,rgba(0,0,0,.84) 44%,rgba(0,0,0,.46) 72%,rgba(0,0,0,.22) 100%);
  }

  .hero-mug{
    right:5vw;
    width:300px;
  }

  .email-proof-box{
    width:min(760px,100%) !important;
    grid-template-columns:minmax(0,1fr) !important;
    gap:42px !important;
    margin-top:54px !important;
  }

  .email-arrow{
    display:none !important;
  }

  .email-side-panel{
    width:100% !important;
    min-width:0 !important;
    padding:0 !important;
  }

  .side-step{
    max-width:520px !important;
  }

  .email-side-panel p{
    max-width:390px !important;
  }

  .privacy-box{
    width:min(520px,100%) !important;
  }

  .contract-alternative-section{
    padding-left:4% !important;
    padding-right:4% !important;
  }
}

/* Tablets and narrow laptops. */
@media (max-width:1024px){
  .hero{
    min-height:auto;
    padding-bottom:80px;
    background-position:62% top;
  }

  .hero-content{
    min-height:760px;
    display:flex;
    align-items:center;
    padding:150px 42px 72px !important;
  }

  .left{
    max-width:650px;
  }

  .hero-mug{
    display:none !important;
  }

  .proof-title{
    padding-left:24px !important;
    padding-right:24px !important;
  }

  .proof-image-section{
    padding-left:22px;
    padding-right:22px;
  }

  .campaign-showcase{
    padding:0 18px;
    margin-top:-18px;
  }

  .creator-showcase-image img{
    width:94%;
  }

  .about-image-section{
    grid-template-columns:1fr !important;
    gap:58px !important;
    padding:100px 36px 115px !important;
  }

  .about-content{
    max-width:760px !important;
    margin:0 auto;
    text-align:center !important;
  }

  .about-label{
    justify-content:center !important;
  }

  .about-image-section > img{
    width:min(760px,100%) !important;
    justify-self:center !important;
    transform:none !important;
  }

  .about-icons{
    grid-template-columns:repeat(3,minmax(0,1fr)) !important;
    gap:0 !important;
  }

  .how-section{
    padding-left:36px !important;
    padding-right:36px !important;
  }

  .contact-section{
    padding-left:36px !important;
    padding-right:36px !important;
  }
}

/* Phones and portrait tablets. */
@media (max-width:760px){
  .nav{
    position:absolute !important;
    top:20px !important;
    left:20px !important;
    padding:0 !important;
  }

  .brand{
    gap:11px !important;
    padding:7px 14px 7px 7px !important;
    border-radius:15px !important;
  }

  .logo-mark{
    width:50px !important;
    height:50px !important;
    border-radius:14px !important;
    font-size:18px !important;
  }

  .brand-name strong{
    font-size:26px !important;
  }

  .hero{
    min-height:auto !important;
    padding-bottom:32px;
    background-size:auto 720px !important;
    background-position:58% top !important;
  }

  .hero::after{
    height:150px;
  }

  .overlay{
    background:
      radial-gradient(circle at 18% 30%,rgba(0,88,255,.18),transparent 40%),
      linear-gradient(180deg,rgba(0,0,0,.42) 0%,rgba(0,0,0,.72) 34%,rgba(0,0,0,.93) 72%,#050505 100%) !important;
  }

  .hero-content{
    min-height:760px;
    align-items:flex-end;
    padding:120px 22px 78px !important;
  }

  .left{
    width:100%;
    max-width:620px;
  }

  .eyebrow{
    max-width:100%;
    margin-bottom:22px;
    padding:8px 12px;
    font-size:10px;
    line-height:1.35;
    letter-spacing:2.4px;
  }

  h1{
    margin-bottom:26px;
    font-size:clamp(43px,13.4vw,68px) !important;
    line-height:.95;
    letter-spacing:-.055em !important;
  }

  .subtext{
    margin-top:26px;
    gap:18px;
    font-size:clamp(17px,4.7vw,21px) !important;
    line-height:1.48;
  }

  .subtext br{
    display:none;
  }

  .network-footer{
    width:100%;
    justify-content:center;
    gap:10px;
    padding:15px 18px;
    font-size:13px;
    text-align:center;
  }

  .proof-title{
    margin-top:-1px !important;
    padding:145px 18px 38px !important;
  }

  .proof-title > *{
    transform:translateY(-32px) !important;
  }

  .proof-title::before{
    width:145vw !important;
    height:270px !important;
    top:28% !important;
    background-size:cover !important;
  }

  .proof-title h2{
    font-size:clamp(34px,10.6vw,54px) !important;
    line-height:1;
  }

  .proof-title p{
    margin-top:14px !important;
    font-size:clamp(17px,4.7vw,23px) !important;
    line-height:1.4;
  }

  .proof-image-section{
    padding:18px 12px 0 !important;
  }

  .proof-image-section img{
    border-radius:16px !important;
  }

  .proof-link,
  .campaign-link{
    border-radius:10px;
  }

  .campaign-showcase{
    padding:0 8px;
    margin-top:-5px !important;
    margin-bottom:8px;
  }

  .campaign-wrapper .campaign-card{
    max-width:100% !important;
  }

  .creator-showcase-image{
    margin-top:-8px !important;
    padding:0 10px 64px !important;
  }

  .creator-showcase-image img{
    width:100% !important;
    border-radius:14px !important;
  }

  .more-creators{
    margin-top:30px;
    font-size:clamp(21px,6vw,28px);
  }

  .more-creators::before,
  .more-creators::after{
    width:min(18vw,70px);
    margin-left:12px;
    margin-right:12px;
  }

  .about-image-section{
    gap:40px !important;
    padding:82px 20px 92px !important;
  }

  .about-content h2{
    margin-bottom:26px;
    font-size:clamp(56px,17vw,82px) !important;
  }

  .about-content p{
    margin-bottom:24px;
    font-size:16px !important;
    line-height:1.68;
  }

  .about-icons{
    grid-template-columns:1fr !important;
    gap:28px !important;
    margin-top:28px;
    padding-top:34px;
  }

  .about-icon{
    border-right:0 !important;
    padding:0 !important;
  }

  .icon-circle{
    width:72px;
    height:72px;
    font-size:29px;
  }

  .about-image-section > img{
    border-radius:22px !important;
  }

  .how-section{
    padding:88px 20px 24px !important;
  }

  .section-label,
  .contact-label{
    gap:10px;
    font-size:11px;
    letter-spacing:.12em;
  }

  .section-label::before,
  .section-label::after,
  .contact-label::before,
  .contact-label::after{
    width:42px;
  }

  .how-title{
    margin-bottom:30px;
    font-size:clamp(46px,14vw,70px) !important;
    line-height:.94;
  }

  .how-subtitle{
    margin:14px auto 38px;
    font-size:17px !important;
    line-height:1.55;
  }

  .how-timeline::before{
    left:10px !important;
  }

  .how-step{
    grid-template-columns:32px 1fr !important;
    grid-template-areas:
      "dot number"
      "icon copy";
    align-items:start !important;
    gap:12px 14px !important;
    padding:24px 0 !important;
  }

  .how-number{
    grid-area:number;
    font-size:36px !important;
  }

  .how-dot{
    grid-area:dot;
    align-self:center;
    justify-self:center;
    width:11px;
    height:11px;
  }

  .how-icon{
    grid-area:icon;
    width:32px;
    font-size:27px !important;
  }

  .how-copy{
    grid-area:copy;
    min-width:0;
  }

  .how-copy h3{
    font-size:21px !important;
    line-height:1.18;
  }

  .how-copy p{
    max-width:none;
    font-size:15px !important;
    line-height:1.55;
  }

  .email-proof-box{
    gap:34px !important;
    margin-top:42px !important;
  }

  .email-message-card{
    padding:18px 16px 22px !important;
    border-radius:18px !important;
  }

  .email-head{
    gap:10px;
    margin-bottom:20px;
  }

  .email-icons span:first-child{
    display:none;
  }

  .gmail-subject-row{
    margin-bottom:18px;
  }

  .gmail-subject-row h3{
    font-size:22px !important;
  }

  .email-brand{
    gap:10px;
  }

  .brand-avatar{
    width:38px;
    height:38px;
    flex-basis:38px;
    font-size:13px;
  }

  .email-sender-top{
    display:block;
  }

  .email-sender-top span{
    display:block;
    margin-top:2px;
    overflow-wrap:anywhere;
  }

  .email-sender-actions{
    display:none;
  }

  .gmail-email-body{
    padding-left:0 !important;
    padding-right:0 !important;
  }

  .gmail-email-body p{
    font-size:14px !important;
    line-height:1.65;
  }

  .gmail-details-box{
    margin:22px 0;
  }

  .gmail-detail-section{
    padding:17px 16px;
  }

  .gmail-subject-example{
    font-size:14px;
    overflow-wrap:anywhere;
  }

  .gmail-requirements li{
    font-size:14px;
  }

  .email-buttons{
    padding-left:0 !important;
  }

  .email-side-title{
    margin-bottom:24px !important;
    font-size:26px !important;
  }

  .side-step{
    max-width:100% !important;
    padding:21px 18px !important;
  }

  .or-line{
    width:min(230px,80%) !important;
  }

  .privacy-box{
    max-width:100% !important;
  }

  .contract-alternative-section{
    padding:92px 16px 92px !important;
  }

  .contract-alternative{
    padding:0 !important;
  }

  .contract-eyebrow{
    gap:9px !important;
    font-size:10px !important;
    letter-spacing:.13em !important;
    white-space:normal;
  }

  .contract-eyebrow::before,
  .contract-eyebrow::after{
    width:34px !important;
  }

  .contract-alternative-heading h3{
    font-size:clamp(36px,11vw,52px) !important;
    line-height:1.04;
  }

  .contract-alternative-card{
    padding:23px 18px !important;
    border-radius:18px !important;
  }

  .contact-section{
    padding:92px 20px 100px !important;
  }

  .contact-left h2{
    font-size:clamp(54px,17vw,82px) !important;
  }

  .contact-text{
    margin-bottom:38px;
    font-size:16px;
    line-height:1.6;
  }

  .contact-form{
    gap:20px;
  }

  .platform-row{
    grid-template-columns:minmax(0,1fr) !important;
    gap:18px;
  }

  .contact-field input,
  .contact-field select,
  .contact-field textarea{
    min-height:56px;
    padding-left:16px;
    padding-right:16px;
    border-radius:12px;
    font-size:16px;
  }

  .contact-field textarea{
    min-height:145px;
    padding-top:16px;
    padding-bottom:16px;
  }

  .add-platform{
    width:100%;
    min-height:52px;
  }

  .contact-submit{
    min-height:60px;
    font-size:15px;
  }
}

/* Very small phones. */
@media (max-width:390px){
  .nav{
    top:14px !important;
    left:14px !important;
  }

  .brand-name strong{
    font-size:23px !important;
  }

  .logo-mark{
    width:46px !important;
    height:46px !important;
  }

  .hero-content{
    min-height:720px;
    padding-left:16px !important;
    padding-right:16px !important;
  }

  h1{
    font-size:clamp(40px,13vw,50px) !important;
  }

  .network-footer{
    padding:14px 12px;
    gap:7px;
    font-size:12px;
  }

  .proof-title{
    padding-left:14px !important;
    padding-right:14px !important;
  }

  .how-section,
  .about-image-section,
  .contact-section{
    padding-left:16px !important;
    padding-right:16px !important;
  }

  .gmail-subject-row h3{
    font-size:20px !important;
  }

  .email-icons{
    gap:7px;
  }

  .email-side-title{
    font-size:24px !important;
  }

  .contract-alternative-heading h3{
    font-size:34px !important;
  }
}

/* Avoid motion discomfort and unnecessary battery use. */
@media (prefers-reduced-motion:reduce){
  html{
    scroll-behavior:auto;
  }

  *,*::before,*::after{
    scroll-behavior:auto !important;
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
  }
}
