/*
 * Grace marketing site.
 * The views keep the design's inline styles; responsive values the prototype
 * computed in JS (its `lay` object) are exposed here as CSS custom properties.
 */
/* line 8, /home/deploy/learn/app/assets/stylesheets/application.scss */
:root {
  --pad: 40px;
  --section-pad: 96px 40px 0;
  --pad-card: 46px;
  --preview: 1.6fr 1fr;
  --preview-pad: 20px;
  --hero-cards: block;
  --hero-stage-pad: 0 0 40px;
  --hero-pad: 76px 40px 0;
  --g2even: 1fr 1fr;
  --g2b: 0.85fr 1fr;
  --g3: repeat(3, 1fr);
  --g-footer: 1.4fr 1fr 1fr 1fr;
  --plat-cols: repeat(6, 1fr);
  --h1: 76px;
  --h2: 44px;
  --nav-links: flex;
}

@media (max-width: 1119px) {
  /* line 28, /home/deploy/learn/app/assets/stylesheets/application.scss */
  :root {
    --pad: 28px;
    --section-pad: 72px 28px 0;
    --pad-card: 34px;
    --hero-cards: none;
    --hero-stage-pad: 0;
    --hero-pad: 56px 28px 0;
    --g2even: 1fr;
    --g2b: 1fr;
    --g3: repeat(2, 1fr);
    --g-footer: repeat(2, 1fr);
    --plat-cols: repeat(3, 1fr);
    --h1: 56px;
    --h2: 36px;
  }
}
@media (max-width: 759px) {
  /* line 46, /home/deploy/learn/app/assets/stylesheets/application.scss */
  :root {
    --pad: 18px;
    --section-pad: 56px 18px 0;
    --pad-card: 24px;
    --preview: 1fr;
    --preview-pad: 14px;
    --hero-pad: 44px 18px 0;
    --g3: 1fr;
    --g-footer: 1fr 1fr;
    --plat-cols: repeat(2, 1fr);
    --h1: 40px;
    --h2: 28px;
    --nav-links: none;
  }
}
/* line 62, /home/deploy/learn/app/assets/stylesheets/application.scss */
html, body {
  margin: 0;
  padding: 0;
  background: #fbfbfd;
  max-width: 100vw;
}

/* line 64, /home/deploy/learn/app/assets/stylesheets/application.scss */
body {
  overflow-x: clip;
}

/* line 65, /home/deploy/learn/app/assets/stylesheets/application.scss */
html {
  scroll-behavior: smooth;
}

/* line 66, /home/deploy/learn/app/assets/stylesheets/application.scss */
* {
  box-sizing: border-box;
}

/* line 67, /home/deploy/learn/app/assets/stylesheets/application.scss */
img, svg {
  max-width: 100%;
}

/* line 68, /home/deploy/learn/app/assets/stylesheets/application.scss */
a {
  color: #7F65E0;
  text-decoration: none;
}

/* line 69, /home/deploy/learn/app/assets/stylesheets/application.scss */
a:hover {
  color: #6E55CC;
}

/* line 70, /home/deploy/learn/app/assets/stylesheets/application.scss */
::placeholder {
  color: #9a9cae;
}

/* line 72, /home/deploy/learn/app/assets/stylesheets/application.scss */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #1a1d27;
  -webkit-font-smoothing: antialiased;
}

/* line 79, /home/deploy/learn/app/assets/stylesheets/application.scss */
[id] {
  scroll-margin-top: 72px;
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.94);
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ---------- Legal pages ---------- */
/* line 86, /home/deploy/learn/app/assets/stylesheets/application.scss */
.legal {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 16px;
  line-height: 1.7;
  color: #3c3c46;
}
/* line 94, /home/deploy/learn/app/assets/stylesheets/application.scss */
.legal h2 {
  font-size: 20px;
  letter-spacing: -0.02em;
  margin: 22px 0 0;
  color: #2B2439;
  line-height: 1.3;
}
/* line 95, /home/deploy/learn/app/assets/stylesheets/application.scss */
.legal p, .legal ul {
  margin: 0;
}
/* line 96, /home/deploy/learn/app/assets/stylesheets/application.scss */
.legal ul {
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
/* line 97, /home/deploy/learn/app/assets/stylesheets/application.scss */
.legal ul ul {
  margin-top: 8px;
}
/* line 98, /home/deploy/learn/app/assets/stylesheets/application.scss */
.legal a {
  text-decoration: underline;
}

/* line 101, /home/deploy/learn/app/assets/stylesheets/application.scss */
.legal-table {
  overflow-x: auto;
  border: 1px solid #e8e8ef;
  border-radius: 12px;
}
/* line 106, /home/deploy/learn/app/assets/stylesheets/application.scss */
.legal-table table {
  border-collapse: collapse;
  width: 100%;
  min-width: 640px;
  font-size: 14px;
  line-height: 1.5;
}
/* line 107, /home/deploy/learn/app/assets/stylesheets/application.scss */
.legal-table th, .legal-table td {
  text-align: left;
  vertical-align: top;
  padding: 10px 12px;
  border-bottom: 1px solid #eeeef3;
}
/* line 108, /home/deploy/learn/app/assets/stylesheets/application.scss */
.legal-table th {
  background: #F4F1FE;
  color: #2B2439;
  font-weight: 600;
}
/* line 109, /home/deploy/learn/app/assets/stylesheets/application.scss */
.legal-table tr:last-child td {
  border-bottom: none;
}

/* ---------- Demo request form ---------- */
/* line 114, /home/deploy/learn/app/assets/stylesheets/application.scss */
.demo-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
/* line 119, /home/deploy/learn/app/assets/stylesheets/application.scss */
.demo-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 759px) {
  /* line 120, /home/deploy/learn/app/assets/stylesheets/application.scss */
  .demo-form .row {
    grid-template-columns: 1fr;
  }
}
/* line 122, /home/deploy/learn/app/assets/stylesheets/application.scss */
.demo-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #2B2439;
}
/* line 123, /home/deploy/learn/app/assets/stylesheets/application.scss */
.demo-form .optional {
  font-weight: 400;
  color: #8a8a95;
}
/* line 125, /home/deploy/learn/app/assets/stylesheets/application.scss */
.demo-form input:not([type=submit]), .demo-form select, .demo-form textarea {
  border: 1px solid #e4e5ef;
  border-radius: 9px;
  padding: 12px 14px;
  font: inherit;
  font-size: 14px;
  font-weight: 400;
  color: #1a1d27;
  background: #fff;
  outline: none;
  width: 100%;
}
/* line 136, /home/deploy/learn/app/assets/stylesheets/application.scss */
.demo-form input:not([type=submit]):focus, .demo-form select:focus, .demo-form textarea:focus {
  border-color: #7F65E0;
  box-shadow: 0 0 0 3px rgba(127, 101, 224, 0.15);
}
/* line 138, /home/deploy/learn/app/assets/stylesheets/application.scss */
.demo-form textarea {
  min-height: 110px;
  resize: vertical;
}
/* line 140, /home/deploy/learn/app/assets/stylesheets/application.scss */
.demo-form .field_with_errors {
  display: contents;
}
/* line 141, /home/deploy/learn/app/assets/stylesheets/application.scss */
.demo-form .field_with_errors input, .demo-form .field_with_errors select, .demo-form .field_with_errors textarea {
  border-color: #e5484d;
}

/* line 144, /home/deploy/learn/app/assets/stylesheets/application.scss */
.form-errors {
  background: #fdebec;
  border: 1px solid #f5c2c4;
  color: #a4262c;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 13.5px;
  line-height: 1.5;
}
/* line 153, /home/deploy/learn/app/assets/stylesheets/application.scss */
.form-errors ul {
  margin: 6px 0 0;
  padding-left: 18px;
}

/* line 156, /home/deploy/learn/app/assets/stylesheets/application.scss */
.btn-primary {
  background: #7F65E0;
  color: #fff;
  border: none;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  padding: 14px 28px;
  font-size: 15px;
  box-shadow: 0 10px 28px rgba(127, 101, 224, 0.3);
  display: inline-block;
  text-align: center;
}
/* line 169, /home/deploy/learn/app/assets/stylesheets/application.scss */
.btn-primary:hover {
  background: #6E55CC;
  color: #fff;
}
