:root {
  --ink: #07142f;
  --ink-soft: #32415f;
  --muted: #68748b;
  --line: #dfe6f0;
  --surface: #ffffff;
  --surface-soft: #f5f8fc;
  --blue: #1277f3;
  --cyan: #10d6d4;
  --blue-deep: #0758d8;
  --success: #087b58;
  --success-bg: #eaf9f3;
  --danger: #b42318;
  --danger-bg: #fff0ef;
  --shadow-sm: 0 12px 35px rgba(7, 20, 47, 0.08);
  --shadow-lg: 0 28px 80px rgba(4, 16, 43, 0.18);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
input[type="submit"] {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(3.1rem, 7vw, 6.45rem);
  font-weight: 760;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 4.2vw, 4.25rem);
  font-weight: 730;
}

h3 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 700;
}

::selection {
  color: #fff;
  background: var(--blue);
}

.container {
  width: min(calc(100% - 44px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 116px 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  padding: 18px 0;
  transition: padding 180ms ease, background-color 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 35px rgba(7, 20, 47, 0.07);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
}

.brand {
  width: clamp(220px, 24vw, 310px);
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: #1c2a46;
  font-size: 0.94rem;
  font-weight: 650;
}

.site-nav > a:not(.button) {
  position: relative;
  padding: 10px 0;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] > span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] > span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] > span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.01em;
  background: linear-gradient(120deg, var(--blue-deep), var(--blue) 60%, #09bfcf);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(18, 119, 243, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 16px 36px rgba(18, 119, 243, 0.32);
  filter: saturate(1.08);
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding-inline: 20px;
  color: #fff;
}

.button-light {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.button-submit {
  min-width: 190px;
}

.hero {
  position: relative;
  min-height: 840px;
  padding: 190px 0 110px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 22%, rgba(16, 214, 212, 0.16), transparent 25%),
    radial-gradient(circle at 48% 50%, rgba(18, 119, 243, 0.09), transparent 34%),
    linear-gradient(180deg, #f7fbff 0%, #fff 78%);
}

.hero::before {
  position: absolute;
  top: -260px;
  right: -160px;
  width: 650px;
  height: 650px;
  content: "";
  border: 1px solid rgba(18, 119, 243, 0.14);
  border-radius: 50%;
}

.hero::after {
  position: absolute;
  right: 8%;
  bottom: 0;
  width: 280px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--cyan));
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.52;
  background-image:
    linear-gradient(rgba(7, 20, 47, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 20, 47, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 76%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: 84px;
}

.hero-copy {
  max-width: 730px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--blue-deep);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 38px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.hero h1 em {
  color: transparent;
  font-style: normal;
  background: linear-gradient(110deg, var(--blue) 15%, var(--cyan));
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: clamp(1.1rem, 1.7vw, 1.3rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 42px;
}

.text-link,
.product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 750;
}

.text-link span,
.product-link span {
  color: var(--blue);
  transition: transform 180ms ease;
}

.text-link:hover span,
.product-link:hover span {
  transform: translateX(4px);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-points span::before {
  width: 7px;
  height: 7px;
  content: "";
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 50%;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-mark {
  position: absolute;
  top: 45px;
  left: 50%;
  width: 310px;
  opacity: 0.12;
  transform: translateX(-50%);
  filter: drop-shadow(0 24px 40px rgba(18, 119, 243, 0.24));
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(18, 119, 243, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit::after {
  position: absolute;
  top: 12%;
  right: 12%;
  width: 12px;
  height: 12px;
  content: "";
  background: var(--cyan);
  border: 5px solid #fff;
  border-radius: 50%;
  box-shadow: 0 5px 16px rgba(18, 119, 243, 0.2);
}

.orbit-one {
  width: 470px;
  height: 470px;
}

.orbit-two {
  width: 330px;
  height: 330px;
}

.orbit-two::after {
  top: auto;
  right: auto;
  bottom: 4%;
  left: 18%;
  background: var(--blue);
}

.floating-card {
  position: absolute;
  z-index: 2;
  width: 350px;
  padding: 26px 28px 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.floating-card::before {
  position: absolute;
  top: 0;
  right: 26px;
  left: 26px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 0 0 999px 999px;
}

.floating-card img {
  width: 100%;
  max-height: 62px;
  margin: 20px 0 16px;
  object-fit: contain;
  object-position: left center;
}

.floating-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.floating-card-teachflow {
  top: 70px;
  right: 0;
  transform: rotate(2deg);
}

.floating-card-timeflow {
  bottom: 70px;
  left: 0;
  transform: rotate(-2.5deg);
}

.floating-label {
  display: inline-flex;
  padding: 6px 10px;
  color: var(--blue-deep);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: #edf6ff;
  border-radius: 999px;
}

.intro-section {
  position: relative;
  padding-top: 88px;
}

.intro-section::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(calc(100% - 44px), var(--container));
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--line) 15%, var(--line) 85%, transparent);
  transform: translateX(-50%);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 110px;
}

.intro-grid h2 {
  margin-bottom: 0;
}

.intro-copy {
  padding-top: 40px;
  color: var(--ink-soft);
  font-size: 1.16rem;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.apps-section {
  background: var(--surface-soft);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 58px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 1.08rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 690px;
  padding: 38px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e7edf5;
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 55px rgba(7, 20, 47, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-card::after {
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 280px;
  height: 280px;
  content: "";
  background: radial-gradient(circle, rgba(16, 214, 212, 0.14), transparent 68%);
  border-radius: 50%;
}

.product-card:hover {
  box-shadow: 0 30px 75px rgba(7, 20, 47, 0.11);
  transform: translateY(-6px);
}

.product-card-timeflow::after {
  background: radial-gradient(circle, rgba(18, 119, 243, 0.15), transparent 68%);
}

.product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 42px;
}

.product-number {
  color: #a1adbf;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.status-badge {
  padding: 7px 11px;
  color: #155d9f;
  font-size: 0.72rem;
  font-weight: 750;
  background: #edf7ff;
  border: 1px solid #d8ecff;
  border-radius: 999px;
}

.product-logo-wrap {
  display: flex;
  align-items: center;
  height: 76px;
  margin-bottom: 30px;
}

.product-logo-wrap img {
  max-width: 390px;
  max-height: 72px;
  object-fit: contain;
  object-position: left center;
}

.product-logo-timeflow img {
  max-width: 430px;
}

.product-audience {
  margin-bottom: 12px;
  color: var(--blue-deep);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-card h3 {
  max-width: 480px;
  margin-bottom: 20px;
}

.product-description {
  margin-bottom: 24px;
  color: var(--ink-soft);
}

.feature-list {
  display: grid;
  gap: 12px;
  padding: 24px 0 0;
  margin: 0 0 32px;
  list-style: none;
  border-top: 1px solid var(--line);
}

.feature-list li {
  position: relative;
  padding-left: 26px;
  color: #263651;
  font-size: 0.94rem;
}

.feature-list li::before {
  position: absolute;
  top: 0.63em;
  left: 0;
  width: 14px;
  height: 8px;
  content: "";
  border-bottom: 2px solid var(--blue);
  border-left: 2px solid var(--blue);
  transform: rotate(-45deg);
}

.product-link {
  position: relative;
  z-index: 2;
  margin-top: auto;
  color: var(--blue-deep);
}

.values-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 83% 18%, rgba(16, 214, 212, 0.18), transparent 26%),
    radial-gradient(circle at 2% 95%, rgba(18, 119, 243, 0.23), transparent 32%),
    #07142f;
}

.values-section::before {
  position: absolute;
  top: -250px;
  right: -120px;
  width: 600px;
  height: 600px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.values-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}

.section-kicker-light {
  color: #58e0e1;
}

.values-intro h2 {
  max-width: 620px;
}

.values-intro > p {
  max-width: 560px;
  margin-bottom: 34px;
  color: #b9c6da;
  font-size: 1.08rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.values-grid article {
  min-height: 230px;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.value-index {
  display: block;
  margin-bottom: 34px;
  color: #5fe0e3;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.values-grid h3 {
  margin-bottom: 13px;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.values-grid p {
  margin-bottom: 0;
  color: #aebcd0;
  font-size: 0.94rem;
}

.contact-section {
  background: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  align-items: start;
  gap: 90px;
}

.contact-copy {
  position: sticky;
  top: 120px;
}

.contact-copy > p:not(.section-kicker) {
  max-width: 470px;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-card {
  display: grid;
  gap: 4px;
  margin-top: 40px;
  padding: 26px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.contact-card-label {
  margin-bottom: 12px;
  color: var(--blue-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-card strong {
  font-size: 1.08rem;
}

.contact-card a {
  width: fit-content;
  color: var(--blue-deep);
  font-weight: 700;
}

.contact-card > span:last-child {
  color: var(--muted);
  font-size: 0.9rem;
}

.form-panel {
  padding: 42px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field {
  margin-bottom: 22px;
}

.field > label,
.label-row label {
  display: block;
  margin-bottom: 8px;
  color: #1b2b48;
  font-size: 0.88rem;
  font-weight: 750;
}

.label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.label-row > span {
  color: #8994a7;
  font-size: 0.75rem;
}

.field input:not([type="checkbox"]),
.field select,
.field textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  background: #fbfcfe;
  border: 1px solid #d8e0ec;
  border-radius: 11px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.field textarea {
  min-height: 170px;
  line-height: 1.55;
  resize: vertical;
}

.field input:not([type="checkbox"]):focus,
.field select:focus,
.field textarea:focus {
  background: #fff;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(18, 119, 243, 0.1);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #a1abbb;
}

.field .is-invalid {
  border-color: #e66f67;
}

.field-error {
  display: block;
  margin-top: 6px;
  color: var(--danger);
  font-size: 0.78rem;
  font-weight: 650;
}

.checkbox-field {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 11px;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin: 4px 0 0;
  accent-color: var(--blue);
}

.checkbox-field label {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 550;
  line-height: 1.5;
  cursor: pointer;
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 6px;
}

.form-footer p {
  margin-bottom: 0;
  color: #8994a7;
  font-size: 0.78rem;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.flash-stack {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.flash {
  padding: 14px 16px;
  font-size: 0.9rem;
  font-weight: 650;
  border-radius: 10px;
}

.flash-success {
  color: var(--success);
  background: var(--success-bg);
  border: 1px solid #bcead8;
}

.flash-error {
  color: var(--danger);
  background: var(--danger-bg);
  border: 1px solid #f2c4c0;
}

.site-footer {
  padding: 46px 0;
  color: #b7c3d5;
  background: #040c1d;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 42px;
}

.footer-brand {
  width: 220px;
}

.footer-brand img {
  width: 100%;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.92;
}

.footer-inner > p {
  margin-bottom: 0;
  color: #75849b;
  font-size: 0.9rem;
}

.footer-meta {
  display: grid;
  justify-items: end;
  gap: 2px;
  color: #7d8aa0;
  font-size: 0.78rem;
}

@media (max-width: 1050px) {
  .hero-layout {
    grid-template-columns: 1fr 420px;
    gap: 40px;
  }

  .floating-card {
    width: 320px;
  }

  .values-layout {
    gap: 60px;
  }

  .contact-layout {
    gap: 56px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 88px 0;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 99;
    top: 76px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 4px;
    padding: 18px;
    visibility: hidden;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav > a:not(.button) {
    padding: 11px 12px;
  }

  .site-nav .button {
    margin-top: 8px;
  }

  .hero {
    min-height: auto;
    padding-top: 150px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    min-height: 530px;
    max-width: 600px;
    width: 100%;
    margin-inline: auto;
  }

  .intro-grid,
  .section-heading,
  .values-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    gap: 18px;
  }

  .intro-copy {
    padding-top: 0;
  }

  .section-heading {
    gap: 18px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: auto;
  }

  .values-layout {
    gap: 58px;
  }

  .contact-layout {
    gap: 52px;
  }

  .contact-copy {
    position: static;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-meta {
    justify-items: start;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .site-header {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
  }

  .brand {
    width: 206px;
  }

  .hero {
    padding: 130px 0 72px;
  }

  h1 {
    font-size: clamp(2.65rem, 14vw, 4.3rem);
  }

  h2 {
    font-size: clamp(2rem, 10.5vw, 3.2rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 19px;
  }

  .hero-points {
    display: grid;
  }

  .hero-visual {
    min-height: 570px;
  }

  .hero-mark {
    top: 112px;
    width: 240px;
  }

  .orbit-one {
    width: 340px;
    height: 340px;
  }

  .orbit-two {
    width: 240px;
    height: 240px;
  }

  .floating-card {
    width: calc(100% - 30px);
    padding: 22px;
  }

  .floating-card-teachflow {
    top: 20px;
    right: 0;
  }

  .floating-card-timeflow {
    bottom: 18px;
    left: 0;
  }

  .product-card {
    padding: 28px 24px;
    border-radius: 24px;
  }

  .product-logo-wrap img,
  .product-logo-timeflow img {
    max-width: 100%;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .values-grid article {
    min-height: auto;
  }

  .form-panel {
    padding: 27px 20px;
    border-radius: 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button-submit {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.nav-external {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.contact-card-copy {
  color: var(--muted);
  font-size: 0.9rem;
}

.linkedin-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #0a66c2;
  color: #ffffff;
  flex: 0 0 auto;
  line-height: 1;
}

.linkedin-badge > span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  transform: translateY(-0.02em);
}

.contact-card .contact-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 16px;
  padding-top: 16px;
  color: var(--blue-deep);
  font-weight: 750;
  border-top: 1px solid var(--line);
  transition: color 180ms ease, transform 180ms ease;
}

.contact-card .contact-social:hover,
.contact-card .contact-social:focus-visible {
  color: var(--blue);
  transform: translateX(3px);
}

.footer-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #aebbd0;
  transition: color 180ms ease;
}

.footer-linkedin:hover,
.footer-linkedin:focus-visible {
  color: #ffffff;
}

@media (max-width: 900px) {
  .nav-external {
    justify-content: flex-start;
  }
}