*{box-sizing:border-box;}

body{
margin:0;
font-family:system-ui, Arial;
background:white;
color:#222;
}

/* Header */
header{
position:sticky;
top:0;
display:flex;
align-items:center;
justify-content:space-between;
padding:12px 16px;
background:white;
box-shadow:0 2px 8px rgba(0,0,0,0.06);
z-index:10;
}

.logo img{height:34px;}

.comingSoon{
font-weight:600;
font-size:14px;
flex:1;
text-align:center;
}

header button{
background:#ff6f61;
color:white;
border:none;
padding:10px 14px;
border-radius:20px;
}

/* Sections */
section{
padding:60px 18px;
text-align:center;
}

h1{font-size:28px;}
h2{font-size:22px;margin-bottom:20px;}

.sectionText{
max-width:650px;
margin:auto;
line-height:1.6;
}

/* Buttons */
.buttons{
display:flex;
flex-direction:column;
gap:12px;
align-items:center;
}

.buttons button{
width:100%;
max-width:320px;
padding:14px;
border-radius:25px;
border:none;
font-size:16px;
}

.buttons button:first-child{
background:#ff6f61;
color:white;
}

.secondary{background:#f1f1f1;}

/* Cards */
.grid{
display:grid;
grid-template-columns:1fr;
gap:16px;
margin-top:20px;
}

.card{
background:white;
padding:22px;
border-radius:16px;
box-shadow:0 6px 18px rgba(0,0,0,0.05);
}

.cream{background:#fff4ec;}

/* Field connections */

.fieldFlow{
display:flex;
flex-direction:column;
gap:18px;
margin-top:25px;
align-items:center;
}

.fieldPair{
background:#fff4ec;
padding:16px 20px;
border-radius:14px;
display:grid;
grid-template-columns:1fr 60px 1fr;
align-items:center;
max-width:650px;
width:100%;
box-shadow:0 6px 18px rgba(0,0,0,0.05);
}

.fieldPair span{
display:flex;
align-items:center;
gap:8px;
}

.fieldPair span:first-child{
justify-content:flex-start;
}

.fieldPair span:last-child{
justify-content:flex-end;
}

.connect{
text-align:center;
font-size:20px;
color:#ff6f61;
font-weight:bold;
}

/* Collaboration feed */

.feed{
display:flex;
flex-direction:column;
gap:14px;
margin-top:25px;
align-items:center;
}

.feedItem{
background:white;
padding:14px 18px;
border-radius:30px;
box-shadow:0 4px 12px rgba(0,0,0,0.08);
text-align:left;
max-width:700px;
width:100%;
display:flex;
flex-direction:column;
gap:4px;
border-left:5px solid #ff6f61;
}

.feedItem small{color:#666;}

/* Flow steps */

.steps{
display:flex;
flex-direction:column;
align-items:center;
gap:12px;
margin-top:20px;
}

.step{
background:white;
padding:16px 20px;
border-radius:14px;
box-shadow:0 6px 18px rgba(0,0,0,0.06);
max-width:420px;
width:100%;
}

.arrow-down{
font-size:26px;
color:#ff6f61;
}

/* Signup */

.signup input,
.signup select{
width:100%;
max-width:320px;
padding:14px;
margin:8px auto;
display:block;
border-radius:12px;
border:1px solid #ddd;
}

.signup button{
width:100%;
max-width:320px;
background:#ff6f61;
color:white;
padding:14px;
border:none;
border-radius:25px;
margin-top:10px;
}

/* Desktop */

@media(min-width:768px){
h1{font-size:40px;}

.grid{
grid-template-columns:repeat(2,1fr);
}

.buttons{
flex-direction:row;
justify-content:center;
}
}
