@import url(https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@500&display=swap);
/* ============================================
   UBITS NOM-035 — Code Component Styles
   ============================================ */

:host {
  --ed-canvas: #F4F8FF;
  --ed-canvas-2: #E6EEFB;
  --ink: #0A1B33;
  --ink-soft: #43566E;
  --ink-mute: #586C88;
  --brand-blue: #0C5BEF;
  --brand-blue-light: #0C5BEF;
  --ed-border: #16307A1A;
  --ed-border-strong: #16307A2E;
  --ed-sky: #DEE8FC;
  --ed-pink: #F0F4FE;
  --ed-sage: #E8EFFE;
  --ed-sand: #DFE8FA;
  --ed-yellow: #CCEDFF;
  --ed-surface: #FFFFFF;
  --ed-block: #04101F;
  --on-sage-strong: #0A1B33;
  --on-pink-mute: #41567F;
  --on-sky-mute: #41567F;
  --on-sand-soft: #2A3E63;
  --sage-1: #0C5BEF;
  --sage-2: #A9C4F2;
  --sage-3: #D3E1F8;
  --chip-soft: #16307A0A;
  --track-idle: #00000014;
  --shadow-sm: 0 4px 12px rgba(10, 27, 51, 0.08);
  --shadow-md: 0 16px 38px rgba(10, 27, 51, 0.25);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 9999px;
  --btn-a: #0B4FD6;
  --btn-b: #2E7CFF;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

.linkind-section {
  font-family: var(--font-sans);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.linkind-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.linkind-eyebrow-dot {
  width: 7px;
  height: 7px;
  background-color: var(--brand-blue);
  border-radius: 50%;
}

.linkind-eyebrow-text {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.6px;
  color: var(--ink-soft);
  text-transform: uppercase;
}

.linkind-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-blue);
  text-decoration: none;
  transition: color 0.2s;
}

.linkind-link-arrow svg {
  transition: transform 0.2s;
}

.linkind-link-arrow:hover svg {
  transform: translateX(4px);
}

.linkind-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--btn-a), var(--btn-b));
  color: #fff;
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.linkind-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.linkind-dark {
  --ed-canvas: #04101F;
  --ed-canvas-2: #07172B;
  --ink: #FFFFFF;
  --ink-soft: #9CB0C8;
  --ink-mute: #8FA5BC;
  --ed-border: #FFFFFF14;
  --ed-border-strong: #FFFFFF29;
  --ed-surface: #08182B;
  --chip-soft: #FFFFFF0F;
  --brand-blue: #0C5BEF;
  --brand-blue-light: #5B8FFF;
  --ed-pink: #101A2C;
  --ed-sky: #12203A;
  --ed-sage: #0D1E36;
  --on-pink-mute: #93B0E4;
  --on-sky-mute: #93B0E4;
  background-color: var(--ed-canvas-2);
  color: var(--ink);
}

.linkind-dark .linkind-eyebrow-text { color: var(--ink-mute); }
.linkind-dark .linkind-link-arrow { color: var(--brand-blue-light); }

.confianza-section {
  padding: 24px 64px 92px 64px;
  background-color: var(--ed-canvas);
}

.confianza-container {
  max-width: 1200px;
  margin: 0 auto;
}

.confianza-block {
  width: 100%;
  height: 568px;
  background:
    radial-gradient(ellipse 105% 115% at 14% 88%, rgba(12, 91, 239, 0.55) 0%, transparent 100%),
    radial-gradient(ellipse 62% 85% at 94% 6%, rgba(46, 198, 255, 0.22) 0%, transparent 100%),
    var(--ed-block);
  border-radius: 32px;
  position: relative;
  overflow: hidden;
}

.confianza-body {
  width: 100%;
  height: 100%;
  position: relative;
}

.confianza-photo-wrapper {
  position: absolute;
  right: 0;
  top: 0;
  width: 652px;
  height: 100%;
  overflow: hidden;
  border-radius: 32px 0 0 32px;
}

.confianza-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.confianza-photo-wrapper::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 340px;
  height: 100%;
  background: linear-gradient(90deg, var(--ed-block) 0%, transparent 100%);
  z-index: 1;
}

.confianza-copy {
  position: absolute;
  left: 56px;
  top: 64px;
  width: 540px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  z-index: 2;
}

.confianza-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.confianza-eyebrow-dot {
  width: 7px;
  height: 7px;
  background: #2EC6FF;
  border-radius: 50%;
}

.confianza-eyebrow-text {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.4px;
  color: #9CB0C8;
}

.confianza-title {
  font-size: 27px;
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -1px;
  color: #FFFFFF;
}

.confianza-desc {
  font-size: 15px;
  line-height: 1.62;
  color: #B9C6D8;
}

.confianza-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(180deg, var(--btn-a) 0%, var(--btn-b) 100%);
  color: #ffffff;
  padding: 16px 26px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(12, 91, 239, 0.4);
  width: fit-content;
}

.confianza-features {
  position: absolute;
  left: 56px;
  top: 412px;
  display: flex;
  gap: 14px;
  z-index: 2;
}

.confianza-feature-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #FFFFFFF7;
  border-radius: 20px;
  padding: 20px;
  width: 268px;
}

.confianza-feature-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.confianza-feature-icon.sky { background: #DEE8FC; color: #0A1B33; }
.confianza-feature-icon.pink { background: #F0F4FE; color: #0A1B33; }
.confianza-feature-icon.yellow { background: #CCEDFF; color: #0A1B33; }

.confianza-feature-icon svg { width: 16px; height: 16px; }

.confianza-feature-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.confianza-feature-title {
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: #0A1B33;
}

.confianza-feature-desc {
  font-size: 12.5px;
  line-height: 1.45;
  color: #5C6C85;
}

@media (max-width: 992px) {
  .confianza-block { height: auto; min-height: 568px; }
  .confianza-photo-wrapper { width: 100%; height: 100%; position: relative; border-radius: 32px; }
  .confianza-photo-wrapper::before { width: 100%; height: 120px; background: linear-gradient(180deg, var(--ed-block) 0%, transparent 100%); top: auto; bottom: 0; left: 0; }
  .confianza-copy { position: relative; left: auto; top: auto; width: 100%; padding: 32px; }
  .confianza-features { position: relative; left: auto; top: auto; padding: 0 32px 32px; flex-wrap: wrap; }
  .confianza-feature-card { width: 100%; }
}

@media (max-width: 768px) {
  .confianza-section { padding: 24px; }
  .confianza-block { height: auto; min-height: auto; border-radius: 24px; }
  .confianza-photo-wrapper { position: relative; width: 100%; height: 260px; border-radius: 24px 24px 0 0; }
  .confianza-photo-wrapper::before { width: 100%; height: 100%; background: linear-gradient(180deg, transparent 0%, var(--ed-block) 100%); left: 0; top: 0; }
  .confianza-copy { position: relative; left: auto; top: auto; width: 100%; padding: 24px; }
  .confianza-features { position: relative; left: auto; top: auto; padding: 0 24px 24px; flex-wrap: wrap; }
  .confianza-feature-card { width: 100%; }
  .confianza-title { font-size: 24px; }
}

