@import "https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@400;500;600;700&display=swap";

/* src/styles.scss */
:root {
  --et-navy: #0b1f4a;
  --et-navy-deep: #071533;
  --et-red: #e11d2e;
  --et-blue: #1a3a8a;
  --et-grad:
    linear-gradient(
      135deg,
      #e11d2e 0%,
      #1a3a8a 100%);
  --et-bg: #f4f6fb;
  --et-panel: #ffffff;
  --et-text: #0b1f4a;
  --et-muted: #5b6b8c;
  --et-border: #d7deef;
  --et-sidebar: #071533;
  --et-sidebar-text: #dce4f8;
  --et-font:
    "Source Sans 3",
    system-ui,
    sans-serif;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: var(--et-font);
  font-size: 15px;
  line-height: 1.45;
  background: var(--et-bg);
  color: var(--et-text);
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
.brand-title {
  font-family: var(--et-font);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--et-text);
}
h1 {
  font-size: 1.55rem;
}
h2 {
  font-size: 1.15rem;
}
h3 {
  font-size: 1rem;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}
a {
  font-family: inherit;
}
.mono {
  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    monospace;
  font-size: 0.85em;
}
.et-page {
  position: relative;
  isolation: isolate;
  padding-bottom: 2rem;
  font-family: var(--et-font);
  color: var(--et-text);
}
.et-ambient {
  pointer-events: none;
  position: absolute;
  inset: -1.5rem -1rem auto -1rem;
  height: 360px;
  z-index: -1;
  background:
    radial-gradient(
      ellipse 60% 50% at 10% 0%,
      rgba(225, 29, 46, 0.16),
      transparent 55%),
    radial-gradient(
      ellipse 50% 45% at 90% 10%,
      rgba(26, 58, 138, 0.2),
      transparent 50%),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.55),
      transparent 70%);
}
.et-hero {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
  padding: 1.25rem 1.35rem;
  border-radius: 22px;
  background:
    linear-gradient(
      135deg,
      rgba(7, 21, 51, 0.96),
      rgba(26, 58, 138, 0.88) 55%,
      rgba(225, 29, 46, 0.75));
  color: #fff;
  box-shadow: 0 24px 60px rgba(11, 31, 74, 0.28);
  overflow: hidden;
  position: relative;
}
.et-hero::after {
  content: "";
  position: absolute;
  inset: auto -20% -60% auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(255, 255, 255, 0.18),
      transparent 65%);
}
.et-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 560px;
}
.et-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.et-eyebrow img {
  width: 22px;
  height: auto;
}
.et-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.45rem, 2.2vw, 1.95rem);
  line-height: 1.15;
}
.et-hero .lead {
  margin: 0.4rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  max-width: 42rem;
}
.et-hero-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.et-btn {
  border: 0;
  border-radius: 10px;
  padding: 0.55rem 0.95rem;
  cursor: pointer;
  font-weight: 700;
  font-family: inherit;
  font-size: 0.9rem;
  transition:
    transform 0.15s ease,
    opacity 0.15s ease,
    box-shadow 0.15s ease;
}
.et-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.et-btn-primary {
  background: #fff;
  color: var(--et-navy);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}
.et-btn-primary:hover:not(:disabled) {
  transform: translateY(-1px);
}
.et-btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.et-btn-solid {
  background: var(--et-grad);
  color: #fff;
}
.et-btn-outline {
  background: #fff;
  color: var(--et-navy);
  border: 1px solid var(--et-border);
}
.et-panel {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--et-border);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(11, 31, 74, 0.08);
  overflow: hidden;
}
.et-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.95rem 1.1rem;
  border-bottom: 1px solid var(--et-border);
  background:
    linear-gradient(
      180deg,
      #fbfcff,
      #f4f7fd);
}
.et-panel-head h2 {
  margin: 0;
  font-size: 1rem;
}
.et-panel-head small {
  color: var(--et-muted);
  font-weight: 600;
}
.et-field {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--et-muted);
}
.et-field input,
.et-field select,
.et-input {
  border: 1px solid #c9d3ea;
  border-radius: 10px;
  padding: 0.55rem 0.65rem;
  color: var(--et-text);
  background: #f8faff;
  font-family: inherit;
  font-size: 0.92rem;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 500;
}
.et-field input:focus,
.et-field select:focus,
.et-input:focus {
  outline: 2px solid rgba(26, 58, 138, 0.25);
  border-color: #8fa3d4;
}
.et-error {
  color: #c62828;
  margin: 0.75rem 0;
  font-weight: 600;
}
.et-ok {
  color: #1a7f4b;
  margin: 0.75rem 0;
  font-weight: 600;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
