@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;650;700;750;800&display=swap");
:root {
  color-scheme: light;
  --ink: #101a30;
  --muted: #5d687b;
  --blue: #335cfa;
  --border: #e3e8f1;
  --paper: #f7f9fc;
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: #fff;
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 28px;
}
body {
  margin: 0;
}
a {
  color: inherit;
}
button,
input {
  font: inherit;
}
button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #335cfa;
  outline-offset: 4px;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
}
p,
h1,
h2,
h3 {
  margin: 0;
}
[hidden] {
  display: none !important;
}
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 36px;
}
.site-header {
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.header-inner {
  height: 88px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand img {
  width: 106px;
  height: 36px;
  object-fit: contain;
}
.header-program {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--muted);
  padding-left: 24px;
  border-left: 1px solid var(--border);
  font-weight: 600;
}
.language-switch {
  margin-left: auto;
  display: flex;
  padding: 4px;
  gap: 3px;
  background: #f2f4f8;
  border: 1px solid var(--border);
  border-radius: 9px;
}
.language-switch a {
  font-size: 12px;
  font-weight: 650;
  padding: 8px 12px;
  text-decoration: none;
  border-radius: 6px;
  color: var(--muted);
}
.language-switch a[aria-current="true"] {
  color: var(--blue);
  background: #fff;
  box-shadow: 0 1px 4px #142a5120;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: 12px;
  background: #fff;
  z-index: 10;
}
.skip-link:focus {
  transform: none;
}
.hero {
  position: relative;
  background: radial-gradient(ellipse at 5% 35%, #eaf0ff 0, transparent 60%),
    linear-gradient(180deg, #f8faff, #f5f7fc);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(#3050a005 1px, transparent 1px),
    linear-gradient(90deg, #3050a005 1px, transparent 1px);
  background-size: 56px 56px;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
  gap: 76px;
  padding-top: 64px;
  padding-bottom: 72px;
  align-items: start;
}
.partnership {
  display: flex;
  align-items: center;
  gap: 23px;
  margin-bottom: 42px;
}
.partner-logo {
  display: block;
  width: auto;
  object-fit: contain;
}
.gitme-partner-logo {
  height: 43px;
}
.terminal-partner-logo {
  height: 50px;
}
.times {
  color: #9ca8bc;
  font-size: 23px;
  font-weight: 400;
}
.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.7;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 8px;
}
.live-dot {
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  background: var(--blue);
  border-radius: 100%;
  box-shadow: 0 0 0 4px #335cfa10;
}
h1 {
  font-size: clamp(34px, 3.5vw, 48px);
  line-height: 1.14;
  letter-spacing: -2px;
  margin: 20px 0 22px;
  font-weight: 750;
}
.accent {
  color: var(--blue);
}
.hero-description {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 470px;
}
.credit-card {
  margin-top: 32px;
  padding: 25px 28px;
  border: 1px solid #cbd8f6;
  background: linear-gradient(120deg, #fff, #f4f7ff);
  border-radius: 16px;
  box-shadow: 0 8px 24px #23408405;
}
.credit-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #52658b;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
}
.credit-icon {
  font-size: 21px;
  color: var(--blue);
  font-weight: 400;
  line-height: 1;
}
.credit-amount {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 14px 0 3px;
}
.credit-amount strong {
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: -3px;
  font-weight: 750;
}
.credit-amount > span {
  font-size: 17px;
  color: var(--muted);
}
.credit-name {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.3px;
}
.credit-divider {
  height: 1px;
  background: #dce3f0;
  margin: 22px 0 16px;
}
.credit-card > p:last-child {
  font-size: 12px;
  line-height: 1.7;
  color: #586885;
}
.offer-note {
  font-size: 11px;
  line-height: 1.8;
  color: var(--muted);
  margin: 15px 3px 0;
  max-width: 460px;
}
.integration-strip {
  margin-top: 32px;
  color: var(--muted);
  font-size: 11px;
}
.integration-strip > div {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 13px;
  font-size: 12px;
  font-weight: 600;
  color: #46536c;
}
.integration-strip img {
  width: 26px;
  height: 26px;
}
.integration-strip img:first-child {
  filter: brightness(0) saturate(100%);
  opacity: 0.82;
}
.integration-strip > div > span {
  color: #a7b1c4;
  margin: 0 5px;
}
.application-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 16px 50px #142a5109;
  scroll-margin-top: 24px;
}
.form-eyebrow {
  display: block;
  font-size: 10px;
  letter-spacing: 0.13em;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 13px;
}
.form-heading h2 {
  font-size: 27px;
  letter-spacing: -1px;
  font-weight: 700;
  line-height: 1.2;
}
.form-heading p {
  font-size: 13px;
  line-height: 1.75;
  color: var(--muted);
  margin-top: 12px;
}
.required-note {
  margin: 23px 0 17px;
  font-size: 11px;
  color: var(--muted);
}
.field {
  margin-bottom: 17px;
}
.field label {
  display: block;
  font-weight: 600;
  font-size: 12px;
  margin-bottom: 8px;
}
.field input {
  display: block;
  border: 1px solid #d7deea;
  border-radius: 8px;
  height: 45px;
  width: 100%;
  padding: 0 13px;
  font-size: 13px;
  color: var(--ink);
  background: #fff;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}
.field input::placeholder {
  color: #8993a5;
  opacity: 1;
}
.field input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px #335cfa0d;
}
.field input[aria-invalid="true"] {
  border-color: #b42335;
}
.field-hint {
  font-size: 10px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 6px;
}
.field-error {
  font-size: 11px;
  line-height: 1.6;
  color: #a51c30;
  margin-top: 5px;
}
.field-error:empty {
  display: none;
}
.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.submit-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-radius: 8px;
  padding: 15px 17px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 8px #335cfa18;
  transition: background 0.15s;
}
.submit-button:hover {
  background: #2448d7;
}
.submit-button:disabled {
  cursor: default;
  opacity: 0.65;
}
.submit-button > span:last-child {
  font-size: 19px;
  line-height: 1;
}
.privacy-note {
  font-size: 10px;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 14px;
}
.privacy-note a {
  white-space: nowrap;
  text-underline-offset: 2px;
}
.form-error {
  color: #a51c30;
  background: #fff3f4;
  border-radius: 8px;
  padding: 12px;
  font-size: 12px;
  line-height: 1.65;
  margin-top: 12px;
}
.success-panel {
  padding: 42px 0;
  line-height: 1.8;
}
.success-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 100%;
  background: #eaf6ee;
  color: #258044;
  font-size: 25px;
  margin-bottom: 22px;
}
.success-panel h3 {
  font-size: 25px;
  letter-spacing: -0.7px;
}
.success-panel p {
  font-size: 14px;
  color: var(--muted);
  margin: 14px 0 24px;
}
.success-panel a {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
}
.benefits {
  padding-top: 80px;
  padding-bottom: 80px;
}
.section-heading h2 {
  font-size: 32px;
  letter-spacing: -1.2px;
  line-height: 1.25;
  margin-top: 13px;
  font-weight: 700;
}
.section-heading > p:last-child:not(.eyebrow) {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 15px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}
.benefits-grid article {
  padding: 27px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(160deg, #fff, #fafbfe);
  display: flex;
  flex-direction: column;
  align-items: start;
}
.feature-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: #ecf1ff;
  color: var(--blue);
  border: 1px solid #e1e8ff;
  border-radius: 10px;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 24px;
}
.benefits-grid h3,
.process-grid h3 {
  font-size: 17px;
  letter-spacing: -0.4px;
  line-height: 1.4;
}
.benefits-grid p,
.process-grid p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--muted);
  margin-top: 12px;
}
.feature-tag {
  font-size: 9px;
  letter-spacing: 0.11em;
  font-weight: 650;
  color: #687896;
  margin-top: auto;
  padding-top: 26px;
}
.process-section {
  background: #f8faff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 65px 0;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin: 38px 0 34px;
  padding: 0;
  list-style: none;
}
.process-grid li {
  border-top: 1px solid #dce3f0;
  padding-top: 20px;
}
.step-number {
  display: block;
  font-size: 12px;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 19px;
  letter-spacing: 0.08em;
}
.apply-link {
  display: inline-flex;
  gap: 22px;
  align-items: center;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid #bbcafa;
  padding-bottom: 6px;
}
.site-footer {
  padding: 30px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 11px;
  color: var(--muted);
}
.footer-inner > p {
  font-weight: 600;
  color: #3e4c65;
}
.footer-inner > p > span {
  margin: 0 7px;
  color: #9ca8bc;
}
.footer-inner > div {
  display: flex;
  gap: 24px;
}
.footer-inner a {
  text-decoration: none;
}
.footer-inner a:hover {
  text-decoration: underline;
}
html[lang="en"] .credit-amount > span {
  order: -1;
}
@media (min-width: 1440px) {
  .hero-grid {
    gap: 88px;
  }
}
@media (max-width: 960px) {
  .hero-grid {
    gap: 32px;
  }
  .container {
    padding-left: 26px;
    padding-right: 26px;
  }
  .application-card {
    padding: 25px;
  }
  .credit-amount strong {
    font-size: 56px;
  }
  .credit-card {
    padding: 23px;
  }
  .eyebrow {
    letter-spacing: 0.09em;
    font-size: 9px;
  }
  h1 {
    font-size: 39px;
  }
  .benefits-grid {
    gap: 14px;
  }
  .benefits-grid article {
    padding: 22px;
  }
}
@media (max-width: 720px) {
  .container {
    padding-left: 22px;
    padding-right: 22px;
  }
  .header-inner {
    height: 72px;
  }
  .header-program {
    display: none;
  }
  .brand img {
    width: 94px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 36px;
    padding-bottom: 42px;
  }
  .partnership {
    margin-bottom: 30px;
  }
  h1 {
    font-size: 42px;
    max-width: 490px;
    letter-spacing: -1.8px;
  }
  .hero-description {
    font-size: 15px;
  }
  .credit-card {
    margin-top: 26px;
  }
  .credit-amount strong {
    font-size: 60px;
  }
  .integration-strip {
    margin-top: 24px;
  }
  .application-card {
    padding: 26px 23px;
    border-radius: 16px;
  }
  .form-heading h2 {
    font-size: 26px;
  }
  .field input {
    font-size: 16px;
    height: 48px;
  }
  .field label {
    font-size: 13px;
  }
  .field-hint,
  .required-note {
    font-size: 11px;
  }
  .privacy-note {
    font-size: 11px;
  }
  .submit-button {
    font-size: 14px;
  }
  .benefits {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .section-heading h2 {
    font-size: 29px;
  }
  .benefits-grid,
  .process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .benefits-grid article {
    padding: 25px;
  }
  .feature-icon {
    margin-bottom: 18px;
  }
  .process-section {
    padding: 46px 0;
  }
  .process-grid {
    gap: 26px;
  }
  .process-grid li {
    padding-top: 16px;
  }
  .step-number {
    margin-bottom: 12px;
  }
  .footer-inner {
    align-items: start;
    flex-direction: column;
    gap: 18px;
  }
  .footer-inner > div {
    gap: 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
