/* ==========================================================================
   Breach AI - homepage styles
   Palette: ink #1a1a17 · lime #d8f84a · logo-lime #d8f94a · paper #f4f4f1
   ========================================================================== */

/* ---- Reset & base -------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #f4f4f1;
  color: #1a1a17;
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Space Mono', 'JetBrains Mono', ui-monospace, monospace;
  margin: 0;
}

p { margin: 0; }

img { max-width: 100%; }

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

::selection { background: #1a1a17; color: #d8f84a; }

:focus-visible {
  outline: 2px solid #1a1a17;
  outline-offset: 3px;
  border-radius: 4px;
}


.shell {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

/* ---- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: none;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.btn .arrow { opacity: .6; }

.btn-dark { background: #1a1a17; color: #d8f94a; }
.btn-dark:hover { transform: translateY(-2px); }

.btn-lime { background: #d8f94a; color: #1a1a17; }
.btn-lime:hover { transform: translateY(-2px); }


/* Exact per-instance sizes, matching the source design */
.btn-sm   { padding: 11px 22px; font-size: 15px; }   /* nav CTA            */
.btn-md   { padding: 16px 28px; font-size: 16px; }   /* hero primary       */
.btn-nis2 { padding: 15px 26px; font-size: 15px; }   /* NIS2 lime CTA      */
.btn-lg   { padding: 18px 34px; font-size: 17px; }   /* final CTA          */

/* ---- Eyebrow / kicker ---------------------------------------------------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.kicker .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1a1a17;
}

/* ==========================================================================
   Top gradient wrap
   ========================================================================== */
.page { background: linear-gradient(180deg, #ffffff 0%, #ffffff 32%, #f4f4f1 70%); }

.lime-block { background: linear-gradient(180deg, #d8f84a 0%, #dcf66e 50%, #eef9b8 78%, #ffffff 100%); }

/* ---- Nav ----------------------------------------------------------------- */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: #d8f84a;
  transition: background .3s ease, backdrop-filter .3s ease;
}
.nav-wrap.is-scrolled {
  background: linear-gradient(180deg, rgba(216,248,74,1) 0%, rgba(216,248,74,0) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
/* Desktop: laat de header (logo + nav + knop) als transparante laag over de
   hero zweven, zodat de radar erachter zichtbaar blijft i.p.v. afgedekt door
   een dichte lime balk. Pas bij scrollen komt de lime-gradient + blur terug
   zodat de links leesbaar blijven boven de lichtere secties.
   Op mobiel (≤900px) houden we de bestaande balk; anders zou de radar de
   donkere navtekst onleesbaar maken en blijft de layout zoals 'ie was. */
@media (min-width: 901px) {
  .nav-wrap {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: transparent;
  }
  /* De fixed header staat buiten de flow, dus de hero schoof eronder. Geef het
     lime-blok de 80px (navhoogte) terug als ruimte, zodat de 'Bewezen op
     HackerOne'-pill weer onder de nav valt. De radar (inset:0) vult deze ruimte
     mee, dus die blijft achter de header doorlopen. */
  .lime-block { padding-top: 80px; }
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav__brand { display: flex; align-items: center; gap: 11px; }
.nav__brand img { height: 26px; width: auto; display: block; }

.nav__links { display: flex; gap: 34px; align-items: center; }
.nav__links a {
  font-size: 15px;
  color: #3a3d22;
  transition: color .15s ease;
}
.nav__links a:hover { color: #1a1a17; }

/* ---- Hamburger ---- */
.nav__burger{ display:none; background:none; border:none; cursor:pointer; padding:8px; flex-direction:column; gap:5px; }
.nav__burger span{ display:block; width:22px; height:2px; background:#1a1a17; border-radius:2px; transition:transform .3s ease, opacity .3s ease; }
.nav__burger[aria-expanded="true"] span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.nav__burger[aria-expanded="true"] span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* ---- Mobile menu overlay ---- */
.nav__mobile{
  display:none; position:fixed; top:80px; left:0; right:0; bottom:0; z-index:99;
  background:rgba(216,248,74,.97); backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px);
  flex-direction:column; align-items:center; justify-content:center; gap:28px;
}
.nav__mobile.is-open{ display:flex; }
.nav__mobile a{
  font-family:'Space Mono','JetBrains Mono',ui-monospace,monospace;
  font-size:22px; font-weight:500; color:#1a1a17; text-decoration:none;
}
.nav__mobile a:hover{ opacity:.7; }
.nav__mobile .btn{ margin-top:12px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 56px;
  align-items: center;
  padding: 48px 40px 72px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero .kicker { color: #3a3d22; animation: lFade .7s both; }

.hero__title {
  margin: 24px 0 0;
  font-weight: 500;
  font-size: 60px;
  line-height: 1.0;
  letter-spacing: -.045em;
  color: #1a1a17;
  animation: lFade .7s .05s both;
}
.hero__lead {
  margin: 28px 0 0;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.65;
  color: #33361e;
  max-width: 470px;
  animation: lFade .7s .1s both;
}
.hero__cta {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  animation: lFade .7s .15s both;
}
.hero__trust {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 11.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #3a3d22;
  background: rgba(26,26,23,.06);
  border: 1px solid rgba(26,26,23,.12);
  border-radius: 999px;
  padding: 9px 18px;
  animation: lFade .7s .2s both;
}
.hero__trust .sep { opacity: .3; }
.hero__trust span.item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-weight: 500;
}
.hero__trust .pip {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #1a1a17;
}

.hero__visual { animation: lFade .8s .15s both; }

/* ---- Live-attack scan card ---------------------------------------------- */
.scan {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #1a1a17;
}
.scan__inner {
  position: relative;
  z-index: 1;
  background: #1a1a17;
  border-radius: 24px;
  overflow: hidden;
}
.scan__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid #2a2a26;
}
.scan__title { font-size: 15px; font-weight: 500; color: #f4f4f1; }
.scan__agent {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: #9a9a90;
}
.scan__agent .live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d8f94a;
  animation: lPulse 1.5s infinite;
}
.scan__body { padding: 22px; font-size: 14px; color: #b6b6ac; }
.scan__target {
  color: #76766c;
  margin-bottom: 16px;
  font-size: 12.5px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.scan__rows {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.scan__step {
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.scan__step .bullet { color: #d8f94a; }
.scan__step .text { color: #e8e8e0; }

.scan__cmd {
  background: #26261f;
  border-radius: 13px;
  padding: 13px 15px;
  font-family: ui-monospace, monospace;
  font-size: 13px;
  word-break: break-word;
}
.scan__cmd .prompt { color: #d8f94a; font-weight: 600; }
.scan__cmd .payload { color: #fff; font-weight: 600; }

.scan__resp { color: #9a9a90; }

.scan__find {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px;
  background: #d8f94a;
  border-radius: 15px;
}
.scan__find .badge {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #1a1a17;
  color: #d8f94a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex: 0 0 auto;
}
.scan__find .ftitle { font-weight: 600; font-size: 14px; color: #1a1a17; }
.scan__find .fsub { color: #54591f; font-size: 12px; }

.scan__next {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #76766c;
}
.scan__cursor {
  display: inline-block;
  width: 7px;
  height: 13px;
  background: #d8f94a;
  margin-left: 3px;
  animation: lBlink 1s steps(1) infinite;
}

/* Step entrance animations - toggled per scenario via .is-playing */
.scan__rows.is-playing .scan__step { animation: lS1 5s ease-out both; }
.scan__rows.is-playing .scan__cmd  { animation: lS2 5s ease-out both; }
.scan__rows.is-playing .scan__resp { animation: lS3 5s ease-out both; }
.scan__rows.is-playing .scan__next { animation: lS5 5s ease-out both; }

/* ==========================================================================
   Client marquee
   ========================================================================== */
.clients { padding: 78px 0 16px; background: #ffffff; }
.clients__label {
  text-align: center;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #a3a399;
  margin-bottom: 30px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
}
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.marquee__track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: lMarquee 66s linear infinite;
}
/* Spacing is a per-item margin (not flex `gap`) so both duplicated halves are
   exactly equal width - the -50% loop then wraps seamlessly with no jump. */
.marquee__track img {
  height: 38px;
  width: auto;
  flex: 0 0 auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .6;
  mix-blend-mode: multiply;
  margin-right: 124px;
}

/* ==========================================================================
   NIS2 feature block
   ========================================================================== */
.section-pad { padding-top: 60px; }

.nis2 {
  background: #1a1a17;
  border-radius: 30px;
  padding: 66px 58px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 52px;
  align-items: center;
}
.nis2 .kicker { color: #d8f94a; }
.nis2 .kicker .dot { background: #d8f94a; }
.nis2__title {
  margin: 18px 0 0;
  color: #ffffff;
  font-weight: 500;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -.03em;
  line-height: 1.08;
}
.nis2__lead {
  margin: 20px 0 0;
  color: #b6b6ac;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.65;
  max-width: 430px;
}
.nis2__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 26px;
}
.nis2__list li {
  display: flex;
  gap: 13px;
  align-items: center;
  color: #eaeae2;
  font-size: clamp(15px, 1.5vw, 17px);
  list-style: none;
}
.nis2__list .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d8f94a;
  flex: 0 0 auto;
}
.nis2__list { padding: 0; margin-left: 0; }
.nis2 .btn { margin-top: 30px; }

/* readiness card */
.scorecard {
  background: #fbfbf9;
  border: 1px solid #e3e3dd;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 50px -34px rgba(26,26,23,.3);
}
.scorecard__head {
  padding: 22px 24px;
  border-bottom: 1px solid #efefe8;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.scorecard__name { font-weight: 600; font-size: 18px; }
.scorecard__meta { font-size: 12.5px; color: #8a8a80; margin-top: 5px; }
.scorecard__score { text-align: center; }
.scorecard__score .num { font-weight: 500; font-size: 28px; line-height: 1; }
.scorecard__score .lbl {
  font-size: 9.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #a3a399;
}
.scorecard__body {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.bar__head {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #56564e;
  margin-bottom: 7px;
}
.bar__rail {
  height: 8px;
  border-radius: 4px;
  background: #eeeee7;
  overflow: hidden;
}
.bar__fill { height: 100%; }
.scorecard__note {
  margin-top: 4px;
  padding: 14px 16px;
  background: #f4f4f1;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.55;
  color: #56564e;
}

/* ==========================================================================
   Value cards
   ========================================================================== */
.values {
  padding: 88px 40px 8px;
  max-width: 1200px;
  margin: 0 auto;
}
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: #fff;
  border: 1px solid #e3e3dd;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 24px -18px rgba(26,26,23,.3);
  transition: transform .15s ease;
}
.card:hover { transform: translateY(-4px); }
.card__title { font-weight: 500; font-size: clamp(20px, 2.4vw, 26px); letter-spacing: -.02em; }
.card__text {
  margin: 14px 0 0;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.65;
  color: #56564e;
}
.card__viz {
  height: 84px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 22px;
}

/* ==========================================================================
   Report section
   ========================================================================== */
.report {
  padding: 88px 40px 40px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.report .kicker { color: #8a8a80; }
.report .kicker .dot { background: #8a8a80; }
.report__title {
  margin: 18px 0 0;
  font-weight: 500;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -.03em;
  line-height: 1.08;
}
.report__lead {
  margin: 20px 0 0;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.65;
  color: #56564e;
  max-width: 440px;
}
.report__card {
  background: #1a1a17;
  border: 1px solid #2a2a26;
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 36px 70px -40px rgba(0,0,0,.4);
}
.report__card-title { font-size: 17px; font-weight: 500; margin-bottom: 16px; color: #ffffff; }
.report__file {
  display: flex;
  align-items: center;
  gap: 13px;
  height: 54px;
  border: 1px solid #2a2a26;
  border-radius: 14px;
  padding: 0 16px;
  margin-bottom: 13px;
}
.report__file .ico {
  width: 24px;
  height: 30px;
  border-radius: 5px;
  background: #2a2a26;
  flex: 0 0 auto;
}
.report__file .name { font-size: 14px; color: #9a9a90; }
.report__download {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  background: #d8f94a;
  color: #1a1a17;
  border-radius: 14px;
  font-weight: 600;
  font-size: 15.5px;
  transition: transform .15s ease;
}
.report__download:hover { transform: translateY(-1px); }
.report__hint {
  font-size: 12.5px;
  color: #56564e;
  margin-top: 13px;
  text-align: center;
}

/* ==========================================================================
   Final CTA
   ========================================================================== */
.final {
  background: #d8f84a;
  margin-top: 120px;
}
.final__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 40px;
  text-align: center;
}
.final__title {
  font-weight: 500;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -.045em;
  line-height: 1.04;
  color: #1a1a17;
}
.final__lead {
  margin: 26px auto 0;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.65;
  color: #33361e;
  max-width: 500px;
}
.final .btn { margin-top: 34px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: linear-gradient(180deg, #d8f84a 0%, #dcf66e 50%, #eef9b8 78%, #ffffff 100%);
  color: #1a1a17;
}
.footer__top {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding: 48px 40px;
}
.footer__brand { max-width: 300px; }
.footer__brand img { height: 26px; width: auto; display: block; }
.footer__tagline {
  margin: 14px 0 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: #33361e;
}
.footer__cols { display: flex; gap: 56px; font-size: 14.5px; }
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer__col-h {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #5a5d3a;
}
.footer__col a {
  color: #33361e;
  transition: color .15s ease;
}
.footer__col a:hover { color: #1a1a17; }
.footer__legal {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 44px;
  font-size: 12.5px;
  color: #5a5d3a;
}

/* ==========================================================================
   Keyframes
   ========================================================================== */
@keyframes lFade {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes lMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes lS1 {
  0%,4%   { opacity: 0; transform: translateY(7px); }
  9%,100% { opacity: 1; transform: translateY(0); }
}
@keyframes lS2 {
  0%,18%  { opacity: 0; transform: translateY(7px); }
  23%,100%{ opacity: 1; transform: translateY(0); }
}
@keyframes lS3 {
  0%,32%  { opacity: 0; transform: translateY(7px); }
  37%,100%{ opacity: 1; transform: translateY(0); }
}
@keyframes lS5 {
  0%,66%  { opacity: 0; transform: translateY(7px); }
  71%,100%{ opacity: 1; transform: translateY(0); }
}
@keyframes lBlink {
  0%,49%   { opacity: 1; }
  50%,100% { opacity: 0; }
}
@keyframes lPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: .4; transform: scale(.7); }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
/* Matches the source: everything stacks at 900px */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { order: -1; }
  .nis2 { grid-template-columns: 1fr; }
  .report { grid-template-columns: 1fr; gap: 36px; }
  .values__grid { grid-template-columns: 1fr; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .nav-wrap { background: #d8f84a; }
  .nav-wrap.is-scrolled { background: linear-gradient(180deg, rgba(216,248,74,1) 0%, rgba(216,248,74,0) 100%); }
  .footer__cols { gap: 40px; }
}

@media (max-width: 680px) {
  .shell { padding-left: 22px; padding-right: 22px; }
  .hero { padding: 32px 22px 56px; }
  .hero__title { font-size: 40px; }
  .values { padding: 56px 22px 8px; }
  .report { padding: 56px 22px 24px; }
  .nis2 { padding: 40px 22px; gap: 32px; }
  .card { padding: 24px; }
  .marquee__track img { margin-right: 64px; }
  .nav { height: 64px; }
  .nav__mobile { top: 64px; }
  .clients { padding: 48px 0 16px; }
  .final { margin-top: 80px; }
  .final__inner { padding: 56px 22px; }
  .final__title { font-size: clamp(28px, 7vw, 48px); }
  .footer__top { flex-direction: column; gap: 32px; padding: 36px 22px; }
  .footer__brand { max-width: 100%; }
  .footer__legal { padding: 0 22px 32px; }
  .footer__cols { gap: 32px; }
}

/* ---- Accessibility: respect reduced-motion ------------------------------ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .marquee__track { animation: none; transform: none; }
  /* The scan rows animate from/ to opacity:0; with motion reduced they must
     stay fully visible instead of collapsing to their end-frame. */
  .scan__step,
  .scan__cmd,
  .scan__resp,
  .scan__find,
  .scan__next { opacity: 1 !important; transform: none !important; }
}

/* ---- Contact modal ------------------------------------------------------- */
.modal-overlay{
  position:fixed; inset:0; z-index:200;
  background:rgba(26,26,23,.55); backdrop-filter:blur(6px);
  display:none; align-items:flex-start; justify-content:center;
  padding-top:0;
}
.modal-overlay.is-open{ display:flex; }

.modal{
  background:#fff; border-radius:0 0 20px 20px; width:100%; max-width:520px;
  padding:48px 40px 40px; position:relative;
  transform:translateY(-100%); transition:transform .4s cubic-bezier(.16,1,.3,1);
}
.modal-overlay.is-open .modal{ transform:translateY(0); }

.modal__close{
  position:absolute; top:16px; right:16px; background:none; border:none;
  cursor:pointer; font-size:22px; color:#8a8a80; line-height:1;
  padding:4px 8px; transition:color .2s;
}
.modal__close:hover{ color:#1a1a17; }

.modal__title{
  font-family:'Hanken Grotesk',sans-serif; font-weight:400;
  font-size:26px; letter-spacing:-.03em; color:#1a1a17; margin:0 0 8px;
}
.modal__sub{
  font-size:15px; font-weight:300; color:#56564e; line-height:1.5; margin:0 0 32px;
}

.modal__field{
  display:flex; flex-direction:column; gap:6px; margin-bottom:20px;
}
.modal__label{
  font-size:13px; font-weight:400; color:#8a8a80; letter-spacing:.02em;
}
.modal__input{
  font-family:'Hanken Grotesk',sans-serif; font-size:15px; font-weight:300;
  padding:12px 16px; border:1px solid #e3e3dd; border-radius:10px;
  background:#f7f7f5; color:#1a1a17; outline:none; transition:border-color .2s;
}
.modal__input:focus{ border-color:#1a1a17; }
.modal__input::placeholder{ color:#b4b4ac; }
textarea.modal__input{ resize:vertical; min-height:110px; }

.modal__submit{
  width:100%; margin-top:8px;
}

@media (max-width:600px){
  .modal{ max-width:100%; border-radius:0 0 16px 16px; padding:36px 22px 32px; }
}
