/* tag. — recruiting · brand identity (BRAND-GUIDE.md, 21/7/2026). Tema chiaro fisso. */
:root {
  --blue: #2b4dff;
  --blue-dark: #1f3ad1;
  --blue-soft: rgba(43, 77, 255, 0.09);
  --fucsia: #f71d74;
  --fucsia-dark: #d5145f;
  --fucsia-soft: rgba(247, 29, 116, 0.1);
  --ink: #142030;
  --mist: #eef1ff;
  --cream: #efe6d6;
  --eggplant: #732553;
  --strawberry: #ff5c8d;
  --ok: #0b7a4e;
  --err: #b8102a;
  --muted: #5c6880;
  --line: rgba(43, 77, 255, 0.14);
  --disabled-bg: #c3cbec;
  --disabled-fg: #5c6880;

  --font-display: "Baloo 2", system-ui, sans-serif;
  --font-body: "Archivo", system-ui, sans-serif;

  --radius: 20px;
  --radius-btn: 14px;
  --container: 1140px;
  --shadow: 0 6px 24px rgba(20, 32, 48, 0.07);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--mist);
  line-height: 1.6;
  font-size: 1.0625rem;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--font-display); line-height: 1.12; color: var(--ink); letter-spacing: -0.01em; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }
mark { background: transparent; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 800px; }

/* ---------- Wordmark inline ---------- */
.wm { height: 34px; width: auto; display: block; }
.wm-light { height: 30px; }
.about-logo { height: auto; width: 100%; max-width: 300px; margin: 0 auto; }

/* ---------- Icons (lucide, inline) ---------- */
.ico { width: 22px; height: 22px; flex: none; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ico-box {
  width: 48px; height: 48px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--blue-soft); color: var(--blue); margin-bottom: 16px;
}
.ico-box .ico { width: 24px; height: 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; text-decoration: none;
  border: none; border-radius: var(--radius-btn);
  transition: background 0.2s ease, transform 0.15s ease, border-color 0.15s ease;
  line-height: 1.2; text-align: center;
}
.btn-primary { background: var(--fucsia); color: #fff; }
.btn-primary:hover { background: var(--fucsia-dark); transform: translateY(-2px); }
.btn-secondary { background: #fff; color: var(--blue); border: 2px solid rgba(43, 77, 255, 0.3); }
.btn-secondary:hover { border-color: var(--blue); transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 0.95rem; }
.btn-lg { padding: 15px 34px; font-size: 1.1rem; }
.btn[disabled] { background: var(--disabled-bg); color: var(--disabled-fg); cursor: wait; transform: none; }
.cta-row { text-align: center; margin-top: 44px; }
.cta-row-tight { margin-top: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
}
.site-header::after {
  /* hairline 3px: unico gradiente ammesso in-app oltre alla hero */
  content: ""; display: block; height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, #6a35e8 35%, var(--fucsia) 70%, var(--strawberry) 100%);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 24px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.header-nav { display: flex; align-items: center; gap: 22px; }
.header-nav a:not(.btn) { font-family: var(--font-display); font-weight: 600; font-size: 0.98rem; color: var(--muted); text-decoration: none; }
.header-nav a:not(.btn):hover { color: var(--ink); }

/* ---------- Hero (gradiente firma: ammesso solo qui) ---------- */
.hero {
  background: linear-gradient(180deg, var(--blue) 0%, #6a35e8 34%, var(--fucsia) 62%, var(--strawberry) 80%, var(--cream) 100%);
  color: #fff; padding: 80px 0 0; position: relative;
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: 0.2; pointer-events: none; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-inner { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: end; position: relative; z-index: 1; }
.hero-copy {
  /* scrim: testo sempre leggibile anche sulla banda fucsia/strawberry */
  position: relative; z-index: 2; align-self: center;
  background: rgba(20, 32, 48, 0.35); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border-radius: var(--radius); padding: 28px; margin-bottom: 88px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: #fff; background: rgba(20, 32, 48, 0.35);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.eyebrow .dot-live { width: 8px; height: 8px; border-radius: 50%; background: var(--fucsia); box-shadow: 0 0 0 0 rgba(247, 29, 116, 0.7); animation: pulse 1.8s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(247,29,116,.7);} 70% { box-shadow: 0 0 0 10px rgba(247,29,116,0);} 100% { box-shadow: 0 0 0 0 rgba(247,29,116,0);} }
.hero h1 { color: #fff; font-size: clamp(2.1rem, 4.6vw, 3.4rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 20px; }
.hero h1 .accent { color: var(--cream); }
.hero .lead { font-size: 1.2rem; margin-bottom: 30px; max-width: 560px; color: rgba(255, 255, 255, 0.96); }
.hero-facts { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 26px; font-size: 0.95rem; font-weight: 700; font-family: var(--font-display); }
.hero-facts span { display: inline-flex; align-items: center; gap: 8px; }
.hero-facts .ico { width: 18px; height: 18px; }
.hero-media { position: relative; z-index: 1; align-self: end; }
.hero-photo { max-width: 560px; width: 100%; margin: 0 auto; }

/* ---------- Numeri ---------- */
.numbers { background: #fff; border-bottom: 1px solid var(--line); }
.numbers-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-top: 28px; padding-bottom: 28px; }
.num { display: flex; flex-direction: column; gap: 2px; padding-left: 16px; border-left: 3px solid var(--fucsia); }
.num strong { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--blue); line-height: 1.1; }
.num span { font-size: 0.92rem; color: var(--muted); }

/* ---------- Sections ---------- */
.section { padding: 84px 0; position: relative; z-index: 1; }
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; letter-spacing: -0.02em; text-align: center; margin-bottom: 16px; color: var(--blue); }
.section-title .dot, h1 .dot { color: var(--fucsia); }
.section-title-left { text-align: left; margin-bottom: 8px; }
.section-intro { text-align: center; max-width: 720px; margin: 0 auto 48px; font-size: 1.1rem; color: var(--muted); }
.section-dark { background: var(--ink); color: rgba(255, 255, 255, 0.92); }
.section-dark .section-title { color: #fff; }
.section-dark h3, .section-dark strong { color: #fff; }
.section-dark .section-intro { color: rgba(255, 255, 255, 0.8); }
.section-form { background: var(--cream); }
.section-tight { padding-top: 0; }

/* ---------- Grid & cards ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.card { background: #fff; border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow); }
.card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.card p { color: var(--muted); }
.card p strong { color: var(--ink); }
.card-soft { background: #fff; box-shadow: none; border: 1px solid var(--line); }
.req-list { max-width: 820px; margin: 0 auto; display: grid; gap: 18px; }
.req { display: flex; gap: 20px; align-items: flex-start; }
.req .ico-box { margin: 0; flex: none; }

/* ---------- Per chi è ---------- */
.fit h3 { font-size: 1.3rem; margin-bottom: 14px; }
.fit-yes h3 { color: var(--ok); }
.fit-no h3 { color: var(--err); }
.fit-list { list-style: none; display: grid; gap: 12px; }
.fit-list li { display: flex; gap: 12px; align-items: flex-start; }
.fit-list .ico { width: 22px; height: 22px; margin-top: 2px; }
.fit-yes .ico { color: var(--ok); }
.fit-no .ico { color: var(--err); }

/* ---------- KPI ---------- */
.kpi-list { list-style: none; display: grid; gap: 14px; margin-bottom: 8px; }
.kpi-list li { background: #fff; border-radius: var(--radius); padding: 18px 22px; box-shadow: var(--shadow); border-left: 4px solid var(--blue); }
.kpi-list strong { font-family: var(--font-display); font-size: 1.1rem; display: block; color: var(--blue); }
.kpi-list span { color: var(--muted); }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 12px; }
.faq { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 0 22px; }
.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; padding: 18px 0;
}
.faq summary::-webkit-details-marker { display: none; }
.faq-ico { width: 20px; height: 20px; color: var(--blue); transition: transform 0.2s ease; }
.faq[open] .faq-ico { transform: rotate(180deg); }
.faq-a { padding: 0 0 18px; color: var(--muted); }

/* ---------- Ruoli (hub) ---------- */
.roles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.role-card {
  display: flex; flex-direction: column; gap: 10px; text-decoration: none; color: inherit;
  background: #fff; border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow);
  border: 1.5px solid transparent; transition: transform 0.15s ease, border-color 0.15s ease;
}
.role-card:hover { transform: translateY(-3px); border-color: var(--blue); }
.role-card .ico-box { margin-bottom: 6px; }
.role-card h3 { font-size: 1.3rem; }
.role-card p { color: var(--muted); flex: 1; }
.role-card .apply { font-family: var(--font-display); font-weight: 700; color: var(--fucsia-dark); display: inline-flex; align-items: center; gap: 6px; margin-top: 6px; }
.role-card .apply .ico { width: 18px; height: 18px; transition: transform 0.15s ease; }
.role-card:hover .apply .ico { transform: translateX(4px); }
.role-meta { display: flex; flex-wrap: wrap; gap: 6px; }
.pill { font-family: var(--font-display); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; background: var(--blue-soft); color: var(--blue); }
.pill-fucsia { background: #fff; border: 1px solid var(--fucsia-soft); color: var(--fucsia-dark); }

/* ---------- Video grid ---------- */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; }
.video-frame { aspect-ratio: 9 / 16; border-radius: var(--radius); overflow: hidden; background: rgba(255, 255, 255, 0.06); }
.video-frame iframe { width: 100%; height: 100%; display: block; border: 0; }

/* ---------- Split (chi siamo / founder) ---------- */
.split { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.split-reverse { grid-template-columns: 0.85fr 1.15fr; }
.split-copy p { margin-bottom: 16px; }
.check-list { list-style: none; margin: 0 0 18px; }
.check-list li { padding-left: 34px; position: relative; margin-bottom: 12px; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--fucsia) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.hl { background: var(--fucsia-dark); color: #fff; border-radius: 4px; padding: 0 6px; }
.founder-role { font-family: var(--font-display); font-weight: 600; color: var(--fucsia-dark); margin-bottom: 18px; }
.founder-photo { max-width: 420px; width: 100%; margin: 0 auto; }
#founder .container-narrow { margin: 0 auto; }

/* ---------- Steps ---------- */
.steps { list-style: none; display: grid; gap: 18px; margin-bottom: 32px; }
.step { display: flex; gap: 22px; align-items: flex-start; background: #fff; border-radius: var(--radius); padding: 24px 28px; box-shadow: var(--shadow); }
.step-num { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; background: var(--blue); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; }
.step h3 { font-size: 1.15rem; margin-bottom: 4px; }
.step p { color: var(--muted); }
.note { text-align: center; color: var(--muted); }

/* ---------- Form ---------- */
.apply-form { display: flex; flex-direction: column; gap: 24px; }
.form-section { background: #fff; border-radius: var(--radius); padding: 34px 32px; box-shadow: var(--shadow); }
.form-field { border: none; margin-bottom: 24px; }
.form-field:last-child { margin-bottom: 0; }
.form-field legend, .form-field > label:not(.choice) { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; margin-bottom: 12px; }
.form-field legend:focus, .form-field > label:focus, .form-final-title:focus { outline: none; }
.form-final-title { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--blue); }
.optional { font-weight: 400; color: var(--muted); }
.field-hint { font-size: 0.92rem; color: var(--muted); margin-bottom: 10px; }
.field-hint-right { text-align: right; margin: 6px 0 0; }
.choice {
  display: flex; align-items: flex-start; gap: 10px; font-weight: 400; font-family: var(--font-body);
  padding: 11px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-btn); margin-bottom: 10px; cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.choice:hover { border-color: var(--blue); }
.choice:has(input:checked) { border-color: var(--blue); background: var(--blue-soft); }
.choice:has(input:focus-visible) { outline: 2px solid var(--blue); outline-offset: 1px; }
.choice input { accent-color: var(--blue); margin-top: 4px; }
.choice-consent { font-size: 0.95rem; }
.choice-consent a { color: var(--fucsia-dark); font-weight: 600; }
.apply-form input[type="text"], .apply-form input[type="email"], .apply-form input[type="tel"], .apply-form input[type="number"], .apply-form input[type="url"], .apply-form textarea {
  width: 100%; font: inherit; color: var(--ink); padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-btn); background: #fff; resize: vertical;
}
.apply-form input:focus-visible, .apply-form textarea:focus-visible { outline: 2px solid var(--blue); outline-offset: 1px; border-color: var(--blue); }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
.form-submit-row { text-align: center; }
.progress-track { height: 8px; border-radius: 999px; background: rgba(43, 77, 255, 0.15); overflow: hidden; margin-bottom: 4px; }
.progress-fill { height: 100%; border-radius: 999px; background: var(--blue); width: 0; transition: width 0.3s ease; }
.progress-label { font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; color: var(--ink); text-align: right; }
.form-nav { display: flex; justify-content: center; gap: 14px; }
.form-message { margin-top: 16px; font-family: var(--font-display); font-weight: 700; }
.form-message.ok { color: var(--ok); }
.form-message.err { color: var(--err); }
[hidden] { display: none !important; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, 0.8); padding: 40px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-legal { text-align: right; font-size: 0.88rem; }
.footer-legal a { color: #fff; text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.footer-roles { display: flex; flex-wrap: wrap; gap: 6px 16px; margin: 6px 0 10px; justify-content: flex-end; font-size: 0.9rem; }
.footer-roles a { font-family: var(--font-display); font-weight: 600; color: rgba(255, 255, 255, 0.85); text-decoration: none; }
.footer-roles a:hover { color: #fff; }

/* ---------- Thank-you ---------- */
.thanks-main { min-height: 70vh; display: grid; place-items: center; padding: 64px 0; }
.thanks-card { max-width: 640px; width: 100%; background: #fff; border-radius: var(--radius); padding: 44px 40px; box-shadow: var(--shadow); text-align: center; }
.thanks-card .ico-box { width: 64px; height: 64px; background: var(--ok); color: #fff; margin: 0 auto 18px; }
.thanks-card .ico-box .ico { width: 30px; height: 30px; }
.thanks-card h1 { font-size: 2rem; margin-bottom: 12px; color: var(--blue); }
.thanks-card p { color: var(--muted); }
.thanks-card .steps { text-align: left; margin: 28px 0; }
.thanks-card .step { box-shadow: none; border: 1px solid var(--line); padding: 16px 18px; }
.thanks-card .step-num { width: 34px; height: 34px; font-size: 1rem; }

/* iubenda: bottone preferenze lontano dai bottoni del form (config bottom-left) */
.iubenda-tp-btn[data-tp-float] { background-color: var(--ink) !important; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid-3, .roles, .numbers-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-inner, .split, .split-reverse { grid-template-columns: 1fr; }
  .hero-copy { margin-bottom: 32px; }
  .hero-photo { max-width: 420px; }
  .split-reverse .split-media { order: 2; }
  .header-nav a:not(.btn) { display: none; }
}
@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .header-inner { padding: 12px 16px; }
  .section { padding: 60px 0; }
  .hero { padding: 40px 0 0; }
  .hero-copy { padding: 22px 18px; margin-bottom: 24px; }
  .hero-photo { max-width: 320px; }
  .grid-2, .grid-3, .roles, .numbers-inner { grid-template-columns: 1fr; }
  .numbers-inner { gap: 16px; }
  .video-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 16px; max-width: none; padding-bottom: 8px; }
  .video-frame { flex: 0 0 78%; scroll-snap-align: start; }
  .step { flex-direction: column; }
  .req { flex-direction: column; gap: 12px; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .form-section { padding: 26px 18px; }
  .form-nav { flex-direction: column-reverse; padding-bottom: 56px; }
  .form-nav .btn { width: 100%; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-legal, .footer-roles { text-align: center; justify-content: center; }
  .cta-row .btn-lg { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .role-card, .progress-fill, .faq-ico { transition: none; }
  .eyebrow .dot-live { animation: none; }
}

/* ---------- coaching (aggiunte, prefisso co-) ---------- */
.co-hero-card { display: flex; align-items: center; }
.co-week { color: var(--ink); background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 26px 24px; width: 100%; max-width: 440px; margin: 0 auto; }
.co-week-head { color: var(--ink); font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; margin-bottom: 14px; }
.co-week-head .dot { color: var(--fucsia); }
.co-week ul { list-style: none; display: grid; gap: 12px; }
.co-week li { color: var(--ink); display: grid; grid-template-columns: 64px 1fr; gap: 12px; align-items: start; font-size: 0.98rem; line-height: 1.45; }
.co-week li b { font-family: var(--font-display); color: var(--blue); font-weight: 800; background: var(--blue-soft); border-radius: 10px; padding: 3px 8px; text-align: center; font-size: 0.9rem; }
.co-cases .card { background: rgba(255,255,255,0.06); box-shadow: none; border: 1px solid rgba(255,255,255,0.12); }
.co-cases .card h3 { color: #fff; margin: 12px 0 8px; }
.co-cases .card p { color: rgba(255,255,255,0.85); }
.co-cases .card p strong { color: #fff; }
.co-note-dark { color: rgba(255,255,255,0.6); margin-top: 22px; text-align: center; font-size: 0.85rem; }
.co-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.co-form .form-field label:not(.choice) { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; margin-bottom: 8px; }
.co-form .form-field { margin-bottom: 8px; }
.co-form .form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
.co-form fieldset.form-field { display: grid; gap: 8px; }
.co-form fieldset.form-field legend { margin-bottom: 4px; }
.co-form .form-submit-row { margin-top: 8px; }
.co-next { color: var(--ink); margin: 26px 0 22px; text-align: left; }
.co-next h3 { margin-bottom: 10px; }
@media (max-width: 720px) {
  .co-form .form-grid-2 { grid-template-columns: 1fr; }
  .co-week li { grid-template-columns: 56px 1fr; }
}

.co-sticky { position: fixed; left: 0; right: 0; bottom: 0; z-index: 30; padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); background: rgba(255,255,255,0.96); border-top: 1px solid var(--line); transform: translateY(110%); transition: transform 0.25s; display: none; }
.co-sticky.on { transform: none; }
.co-sticky .btn { width: 100%; }
@media (max-width: 720px) { .co-sticky { display: block; } }
.co-form legend small.optional { display: block; font-family: var(--font-body); font-weight: 400; font-size: 0.88rem; color: var(--muted); margin-top: 2px; }
